/* ============================================
   ARCHITECT STUDIO — Dark Luxury Theme
   ============================================ */

/* === VARIABLES === */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --gold-dark: #a88a52;
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-primary);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--white-80);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* === CUSTOM CURSOR === */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--transition-smooth), height 0.4s var(--transition-smooth), border-color 0.3s;
}

body:hover .cursor-dot { opacity: 1; }

.cursor-hover .cursor-dot {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, 0.15);
}

.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

#intro-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.preloader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.preloader-line {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.3em;
    opacity: 0;
    transform: translateY(40px);
    animation: preloaderReveal 1s var(--transition-smooth) forwards;
}

.line-2 {
    color: var(--gold);
    animation-delay: 0.3s;
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: var(--white-10);
    margin-top: 30px;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: preloaderReveal 0.6s var(--transition-smooth) 0.6s forwards;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    animation: preloaderProgress 3s var(--transition-smooth) 0.8s forwards;
}

.preloader-hint {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--white-40);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0;
    animation: preloaderReveal 0.6s var(--transition-smooth) 1s forwards;
}

.skip-intro {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--white-40);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--white-10);
    border-radius: 30px;
    transition: all 0.3s;
    opacity: 0;
    animation: preloaderReveal 0.6s var(--transition-smooth) 1.5s forwards;
}

.skip-intro:hover {
    color: var(--gold);
    border-color: var(--gold);
}

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

@keyframes preloaderProgress {
    to { width: 100%; }
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s var(--transition-smooth);
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--transition-smooth);
}

.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--white-05);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.25em;
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-60);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

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

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 999;
    transition: right 0.6s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active { right: 0; }

.mobile-menu-inner { text-align: center; }

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-link:hover { color: var(--gold); }

.mobile-footer {
    margin-top: 60px;
    color: var(--white-40);
    font-size: 0.85rem;
}

.mobile-footer p { margin-top: 5px; }

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

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 60px;
    padding-top: 120px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-tag span:last-child,
.section-tag span:last-child {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.title-line { display: block; }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--white-60);
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    border: 1px solid var(--white-20);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* === HERO SCROLL INDICATOR === */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
    writing-mode: vertical-lr;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-40);
}

/* === HERO STATS === */
.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 40px;
    display: flex;
    gap: 50px;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-suffix {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-top: 5px;
}

/* === MARQUEE === */
.marquee-section {
    padding: 25px 0;
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white-40);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.marquee-dot {
    color: var(--gold) !important;
    font-size: 0.6rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === SECTION HEADER === */
.section-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--white-60);
    max-width: 600px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin-top: 10px;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 140px 0;
    background: var(--bg-primary);
}

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

.about-text {
    font-size: 0.95rem;
    color: var(--white-60);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--white-40);
    font-weight: 300;
}

/* About Images */
.about-image-stack {
    position: relative;
    height: 600px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
}

.img-overlay-text span:first-child {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.img-overlay-text span:last-child {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--bg-primary);
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--bg-primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.65rem;
    color: var(--bg-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    margin-top: 3px;
}

/* === VIDEO SHOWCASE === */
.video-showcase {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-parallax {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
}

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

.video-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
}

.video-showcase-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
}

.video-showcase-content h2 {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    font-style: italic;
}

.video-showcase-content h2 em {
    color: var(--gold);
    font-style: italic;
}

.video-showcase-content p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold);
    margin-top: 15px;
    letter-spacing: 0.1em;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    margin-top: 30px;
    transition: all 0.4s;
}

.play-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

/* === SERVICES SECTION === */
.services-section {
    padding: 140px 0;
    background: var(--bg-secondary);
}

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

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--white-05);
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s;
}

.service-card:hover .service-video-bg { opacity: 0.15; }

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

.service-content {
    position: relative;
    z-index: 2;
    padding: 40px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white-05);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.5s;
}

.service-card:hover .service-number { color: var(--white-10); }

.service-icon {
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--white-60);
    font-weight: 300;
    line-height: 1.7;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.service-features span {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white-40);
    transition: color 0.3s;
}

.service-link:hover { color: var(--gold); }

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg { transform: translateX(5px); }

/* === PROCESS SECTION === */
.process-section {
    padding: 140px 0;
    background: var(--bg-primary);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--white-10);
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.process-dot {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s;
}

.process-dot span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
}

.process-step:hover .process-dot {
    background: var(--gold);
}

.process-step:hover .process-dot span {
    color: var(--bg-primary);
}

.process-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}

.process-info p {
    font-size: 0.9rem;
    color: var(--white-60);
    font-weight: 300;
}

/* === PROJECTS SECTION === */
.projects-section {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.projects-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--white-10);
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    color: var(--bg-primary);
    background: var(--gold);
    border-color: var(--gold);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-flow: dense;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s var(--transition-smooth);
}

.project-card-tall {
    grid-row: span 2;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.project-card-tall .project-image { min-height: 100%; }

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s var(--transition-smooth);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.project-overlay p {
    color: var(--white-60);
    font-size: 0.85rem;
    font-weight: 300;
}

.project-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: all 0.3s;
}

.project-link:hover { padding-left: 10px; }

.project-card.hidden {
    display: none;
}

/* === TEAM SECTION === */
.team-section {
    padding: 140px 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
    filter: grayscale(30%);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-socials {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s;
}

.team-card:hover .team-socials {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.team-socials a:hover { transform: scale(1.1); }

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 5px;
}

.team-card p {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 300;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s var(--transition-smooth);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white-80);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold);
    font-family: var(--font-display);
    display: block;
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
}

.testimonial-author p {
    font-size: 0.8rem;
    color: var(--white-40);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.test-prev, .test-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--white-20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    transition: all 0.3s;
}

.test-prev:hover, .test-next:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-20);
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 140px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--white-60);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: var(--gold);
}

.contact-info-item h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--white-60);
    font-weight: 300;
}

/* === CONTACT FORM === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--white-40);
    pointer-events: none;
    transition: all 0.3s;
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 15px;
    font-size: 0.7rem;
    color: var(--gold);
    background: var(--bg-primary);
    padding: 0 5px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--white);
}

.full-width {
    grid-column: 1 / -1;
}

/* === FOOTER === */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--white-05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--white-40);
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-links h4, .footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--white-40);
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--white-40);
    margin-bottom: 20px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--white-10);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid var(--white-05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-40);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--white-40);
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal-up.revealed, .reveal-scale.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .nav-inner { padding: 0 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 40px; max-width: 100%; }
    .hero-stats { display: none; }
    .hero-scroll-indicator { left: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image-stack { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card-tall { grid-row: span 1; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .about-section, .services-section, .projects-section,
    .team-section, .testimonials-section, .contact-section,
    .process-section { padding: 80px 0; }

    /* Disable custom cursor on touch */
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.4rem; }
    .hero-content { padding: 0 20px; padding-top: 100px; }
    .about-image-stack { height: 300px; }
    .about-img-2 { display: none; }
    .about-experience-badge { left: auto; right: 20px; top: auto; bottom: 20px; transform: none; }
    .team-grid { grid-template-columns: 1fr; }
}
