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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --text-primary: #f5f0eb;
    --text-secondary: #a09a93;
    --text-muted: #5a5650;
    --accent: #c9a96e;
    --accent-light: #dfc08a;
    --accent-dark: #a88b4a;
    --border: rgba(201, 169, 110, 0.15);
    --border-light: rgba(245, 240, 235, 0.08);
    --glass: rgba(10, 10, 10, 0.7);
    --glass-light: rgba(255, 255, 255, 0.03);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    caret-color: var(--accent);
}

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

img {
    max-width: 100%;
    display: block;
}

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

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

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    animation: preloaderLine 1.5s var(--transition) infinite;
    transform-origin: left;
}

@keyframes preloaderLine {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        opacity: 0;
        transform-origin: right;
    }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    letter-spacing: 8px;
    color: var(--text-primary);
}

.preloader-sub {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--accent);
}

/* Cursor elements hidden */
#cursor-light,
#cursor-dot {
    display: none;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    transition: all 0.5s var(--transition);
}

#navbar.scrolled {
    padding: 12px 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

.logo-k,
.logo-a {
    color: var(--text-primary);
}

.logo-dot {
    color: var(--accent);
    font-size: 28px;
    margin: 0 1px;
}

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

.nav-link {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-primary);
    transition: color 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s var(--transition), opacity 0.6s ease;
}

.mobile-menu.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-link:nth-child(4) {
    transition-delay: 0.4s;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px clamp(20px, 4vw, 80px) 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-left {
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 32px;
}

.tag-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    font-size: clamp(48px, 7vw, 90px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-word.accent {
    color: var(--accent);
    font-style: italic;
}

.hero-desc {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition);
}

@media (max-width: 768px) {
    .btn-primary {
        cursor: pointer;
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-dark);
    transform: translateX(-100%);
    transition: transform 0.4s var(--transition);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
    transition: transform 0.3s ease;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 169, 110, 0.05);
}

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.hero-scroll-indicator span {
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.hero-stats {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px clamp(20px, 4vw, 80px) 50px;
    display: flex;
    justify-content: center;
    gap: clamp(40px, 8vw, 120px);
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.95) 40%);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    color: var(--accent);
}

.stat-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-right {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 32px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.marquee-separator {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: clamp(80px, 10vw, 160px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--accent);
    z-index: -1;
    transition: all 0.5s var(--transition);
}

.about-image-wrapper:hover .about-image-frame {
    top: 10px;
    left: 10px;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 600;
}

.about-content-col {
    padding: 20px 0;
}

.about-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 40px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.skill-icon {
    color: var(--accent);
    font-size: 8px;
}

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

    .about-experience-badge {
        right: 0;
        bottom: -20px;
    }
}

/* ===== PROJECTS ===== */
.projects {
    padding: clamp(80px, 10vw, 160px) 0;
    background: var(--bg-secondary);
}

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

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px);
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    transition: transform 0.5s var(--transition);
}

.project-card:nth-child(2) {
    transform: translateY(40px);
}

.project-card:nth-child(5) {
    transform: translateY(40px);
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card:nth-child(2):hover,
.project-card:nth-child(5):hover {
    transform: translateY(32px);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transform: scale(0.5) rotate(-45deg);
    transition: transform 0.4s var(--transition-fast);
}

.project-card:hover .project-view {
    transform: scale(1) rotate(0deg);
}

.project-info {
    padding: 24px;
}

.project-category {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 4px;
}

.project-location {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .project-card:nth-child(2),
    .project-card:nth-child(5) {
        transform: none;
    }

    .project-card:nth-child(2):hover,
    .project-card:nth-child(5):hover {
        transform: translateY(-8px);
    }
}

/* ===== SERVICES ===== */
.services {
    padding: clamp(80px, 10vw, 160px) 0;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
}

.service-card {
    background: var(--bg-primary);
    padding: clamp(32px, 3vw, 48px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition);
}

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

.service-card:hover {
    background: var(--bg-tertiary);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--border);
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color 0.4s ease;
}

.service-card:hover .service-number {
    color: rgba(201, 169, 110, 0.3);
}

.service-icon {
    color: var(--accent);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-line {
    width: 30px;
    height: 1px;
    background: var(--accent);
    margin-top: 24px;
    transition: width 0.4s var(--transition);
}

.service-card:hover .service-line {
    width: 60px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== PROCESS ===== */
.process-section {
    padding: clamp(80px, 10vw, 160px) 0;
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.process-step:hover {
    padding-left: 16px;
    border-bottom-color: var(--accent);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--accent);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ===== STUDIO IMAGE ===== */
.studio-section {
    padding: 0 clamp(20px, 4vw, 80px);
}

.studio-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 21/9;
    overflow: hidden;
}

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

.studio-image-wrapper:hover .studio-img {
    transform: scale(1.03);
}

.studio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    padding: 0 20px;
}

/* ===== CONTACT ===== */
.contact {
    padding: clamp(80px, 10vw, 160px) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
}

.contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.contact-value {
    font-size: 16px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1.6;
}

a.contact-value:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 169, 110, 0.05);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {

    .form-group input,
    .form-group textarea,
    .form-group select {
        cursor: text;
    }
}

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

.form-group label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: 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;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23a09a93' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}

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

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

.btn-submit {
    align-self: flex-start;
    cursor: pointer;
}

@media (max-width: 768px) {
    .btn-submit {
        cursor: pointer;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-up.visible,
.reveal-left.visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger delays for children */
.reveal-up:nth-child(1) {
    transition-delay: 0s;
}

.reveal-up:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-up:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-up:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-up:nth-child(5) {
    transition-delay: 0.4s;
}

.reveal-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ===== GRAIN TEXTURE OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}