/* ==========================================================================
   VISIONLAB AI STUDIO — PRODUCTION STYLESHEET
   ========================================================================== */

:root {
    --warm-ivory: #F7F6F2;
    --soft-cream: #EFEEE9;
    --pure-white: #FFFFFF;
    --deep-charcoal: #171717;
    --graphite-gray: #626262;
    --muted-gold: #B39A6B;
    
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --gutter: clamp(1.25rem, 4vw, 5rem);
    --section-padding-y: clamp(4.5rem, 10vw, 11rem);
    --container-max: 1800px;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background-color: var(--deep-charcoal);
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--warm-ivory);
    color: var(--deep-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo);
}

body.loaded { opacity: 1; }
body.nav-open { overflow: hidden; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img, video { display: block; max-width: 100%; height: auto; object-fit: cover; }

.title-global { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw + 0.5rem, 5rem); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; color: var(--deep-charcoal); line-height: 1.02; }
.title-global span { color: var(--muted-gold); }

.section-header-global { margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-header-center { text-align: center; margin-bottom: clamp(3rem, 6vw, 6rem); }

.site-container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.btn-primary, .btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
    padding: 0.9rem 2.2rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; touch-action: manipulation;
    border-radius: 0; transition: transform 0.4s var(--ease-out-expo), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-primary { background-color: var(--deep-charcoal); color: var(--pure-white); border: 1px solid var(--deep-charcoal); }
.btn-primary:hover { background-color: var(--pure-white); color: var(--deep-charcoal); transform: translateY(-2px); }

.btn-secondary { gap: 0.75rem; background-color: rgba(255, 255, 255, 0.12); color: var(--pure-white); border: 1px solid rgba(255, 255, 255, 0.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.25); border-color: var(--pure-white); transform: translateY(-2px); }

/* Animation Core */
.reveal-up { opacity: 0; transform: translateY(35px); transition: opacity 1.1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo); will-change: opacity, transform; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

.img-zoom-wrapper { overflow: hidden; position: relative; width: 100%; }
.img-zoom-wrapper img { transition: transform 1.6s var(--ease-out-expo); will-change: transform; width: 100%; height: 100%; object-fit: cover; }
.img-zoom-wrapper:hover img { transform: scale(1.04); }

/* Navigation */
header.main-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem var(--gutter); display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(247, 246, 242, 0); transition: background 0.5s ease, padding 0.5s var(--ease-out-expo), border-color 0.5s ease; border-bottom: 1px solid rgba(23, 23, 23, 0); }
header.main-nav.scrolled { background: rgba(247, 246, 242, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 1rem var(--gutter); border-bottom: 1px solid rgba(23, 23, 23, 0.08); }

.logo { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pure-white); transition: color 0.4s ease; z-index: 1002; }
header.main-nav.scrolled .logo { color: var(--deep-charcoal); }

.nav-links { display: flex; gap: clamp(1.5rem, 2.5vw, 3rem); align-items: center; }
.nav-links a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pure-white); padding: 0.5rem 0; transition: color 0.3s ease; }
header.main-nav.scrolled .nav-links a { color: var(--deep-charcoal); }
.nav-links a:hover { color: var(--muted-gold) !important; }

.hamburger { display: none; cursor: pointer; width: 44px; height: 44px; position: relative; z-index: 1002; align-items: center; justify-content: center; background: none; border: none; }
.hamburger-box { width: 24px; height: 14px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger-line { width: 100%; height: 2px; background-color: var(--pure-white); transition: transform 0.4s var(--ease-out-expo), background-color 0.4s ease, opacity 0.3s ease; }
header.main-nav.scrolled .hamburger-line { background-color: var(--deep-charcoal); }

@media (max-width: 992px) {
    .desktop-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh; background-color: var(--deep-charcoal); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 1001; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease-out-expo); padding: 2rem; }
    .nav-links.active { opacity: 1; pointer-events: auto; }
    .nav-links a { font-size: clamp(1.4rem, 5vw, 2.2rem); font-family: var(--font-heading); font-weight: 800; color: var(--pure-white) !important; }
    body.nav-open .hamburger-line { background-color: var(--pure-white) !important; }
    body.nav-open .hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .hamburger-line:nth-child(2) { opacity: 0; }
    body.nav-open .hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    body.nav-open .logo { color: var(--pure-white) !important; }
}

/* Hero */
.hero-container { position: relative; width: 100%; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; padding-top: clamp(6rem, 15vh, 10rem); padding-bottom: clamp(3rem, 8vh, 6rem); overflow: hidden; background-color: var(--deep-charcoal); }
.hero-media-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) contrast(1.1); transform: scale(1.05); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(23,23,23,0.4) 0%, rgba(23,23,23,0.15) 50%, var(--warm-ivory) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1200px; }
.brand-label { display: inline-flex; align-items: center; gap: 0.75rem; font-size: clamp(0.7rem, 1.2vw, 0.85rem); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pure-white); margin-bottom: clamp(1rem, 3vw, 2rem); }
.brand-label::before { content: ''; width: 8px; height: 8px; background-color: var(--muted-gold); border-radius: 50%; flex-shrink: 0; }
.hero-headline { font-family: var(--font-heading); font-size: clamp(2.5rem, 8.5vw, 6.8rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; color: var(--pure-white); text-transform: uppercase; margin-bottom: clamp(1.2rem, 3vw, 2.2rem); }
.hero-headline span { display: block; }
.hero-subtext { font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 300; line-height: 1.55; color: rgba(255, 255, 255, 0.88); max-width: 620px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.hero-cta-group { display: flex; gap: 1.25rem; flex-wrap: wrap; }

@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn-primary, .hero-cta-group .btn-secondary { width: 100%; }
}

/* Showreel */
.showreel-section { background-color: var(--warm-ivory); padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.showreel-header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: flex-end; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.showreel-desc { font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 300; line-height: 1.55; color: var(--graphite-gray); }
.player-wrapper { position: relative; width: 100%; aspect-ratio: 2.39 / 1; background-color: var(--deep-charcoal); overflow: hidden; cursor: pointer; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12); }
.play-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(23, 23, 23, 0.25); display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.4s ease; }
.player-wrapper:hover .play-overlay { background: rgba(23, 23, 23, 0.45); }
.play-btn-large { width: clamp(64px, 8vw, 96px); height: clamp(64px, 8vw, 96px); border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; transition: transform 0.5s var(--ease-out-expo), border-color 0.3s ease; }
.player-wrapper:hover .play-btn-large { transform: scale(1.1); border-color: var(--pure-white); }
.play-icon-triangle { width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent var(--pure-white); margin-left: 4px; }
.capability-statement { margin-top: clamp(2.5rem, 5vw, 4.5rem); padding: clamp(1.5rem, 3vw, 2.5rem) 0; border-top: 1px solid rgba(23, 23, 23, 0.1); border-bottom: 1px solid rgba(23, 23, 23, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.capability-item { font-family: var(--font-heading); font-size: clamp(0.75rem, 1.2vw, 0.85rem); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--deep-charcoal); }
.capability-dot { width: 4px; height: 4px; background-color: var(--muted-gold); border-radius: 50%; }

@media (max-width: 860px) {
    .showreel-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .player-wrapper { aspect-ratio: 16 / 9; }
    .capability-statement { flex-direction: column; text-align: center; justify-content: center; }
    .capability-dot { display: none; }
}

/* Portfolio (Preview Grid on Home) */
.portfolio-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2.5rem, 4vw, 5rem) clamp(1rem, 2vw, 2.5rem); }
.card-portrait-left { grid-column: 1 / 6; } .card-landscape-right { grid-column: 7 / 13; margin-top: clamp(3rem, 8vw, 8rem); } .card-cinema-full { grid-column: 1 / 13; margin-top: clamp(2rem, 4vw, 4rem); } .card-landscape-left { grid-column: 1 / 8; margin-top: clamp(2rem, 4vw, 4rem); } .card-portrait-right { grid-column: 9 / 13; margin-top: clamp(-2rem, -4vw, -4rem); }
.aspect-4-5 { aspect-ratio: 4 / 5; } .aspect-3-2 { aspect-ratio: 3 / 2; } .aspect-16-9 { aspect-ratio: 16 / 9; } .aspect-cinema { aspect-ratio: 2.39 / 1; }
.project-card { display: block; cursor: pointer; }
.project-image-wrapper { position: relative; background-color: var(--soft-cream); margin-bottom: 1.25rem; width: 100%; }
.spec-tag { position: absolute; top: 1.2rem; right: 1.2rem; background: rgba(23, 23, 23, 0.65); backdrop-filter: blur(8px); color: var(--pure-white); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.35rem 0.75rem; z-index: 2; border: 1px solid rgba(255, 255, 255, 0.2); }
.project-category { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-gold); margin-bottom: 0.4rem; display: block; }
.project-title { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.project-desc { font-size: clamp(0.88rem, 1.2vw, 1rem); color: var(--graphite-gray); font-weight: 300; line-height: 1.55; max-width: 90%; }
.project-card:hover .project-title { color: var(--muted-gold); }

@media (max-width: 1024px) {
    .card-portrait-left, .card-landscape-right, .card-landscape-left, .card-portrait-right, .card-cinema-full { grid-column: 1 / 13; margin-top: 0 !important; }
    .aspect-cinema { aspect-ratio: 16 / 9; }
}

/* Services */
.services-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); background-color: var(--soft-cream); }
.catalogue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 5vw, 5rem) clamp(1.2rem, 2.5vw, 3rem); }
.service-card { display: flex; flex-direction: column; cursor: pointer; height: 100%; }
.service-image-container { width: 100%; aspect-ratio: 3 / 4; margin-bottom: 1.5rem; background-color: var(--warm-ivory); position: relative; }
.service-meta { border-top: 1px solid rgba(23, 23, 23, 0.15); padding-top: 1.25rem; flex-grow: 1; display: flex; flex-direction: column; }
.service-number { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; color: var(--muted-gold); margin-bottom: 0.4rem; display: block; }
.service-title { font-family: var(--font-heading); font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 800; text-transform: uppercase; margin-bottom: 0.75rem; transition: color 0.3s ease; }
.service-desc { font-size: clamp(0.88rem, 1.1vw, 0.98rem); font-weight: 300; color: var(--graphite-gray); line-height: 1.55; }
.service-card:hover .service-title { color: var(--muted-gold); }

@media (max-width: 1024px) { .catalogue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catalogue-grid { grid-template-columns: 1fr; } .service-image-container { aspect-ratio: 4 / 5; } }

/* Process */
.process-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); background-color: var(--pure-white); overflow: hidden; }
.process-statement { font-size: clamp(1.1rem, 2.2vw, 1.75rem); font-weight: 400; color: var(--muted-gold); font-family: var(--font-heading); line-height: 1.35; }
.timeline { position: relative; display: flex; justify-content: space-between; width: 100%; margin-top: clamp(2.5rem, 5vw, 5rem); }
.timeline-track { position: absolute; top: 24px; left: 0; width: 100%; height: 1px; background-color: rgba(23, 23, 23, 0.15); z-index: 1; }
.timeline-track-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background-color: var(--muted-gold); transition: width 1.5s var(--ease-in-out) 0.3s; }
.timeline.is-visible .timeline-track-fill { width: 100%; }
.timeline-item { position: relative; z-index: 2; flex: 1; padding-right: 1.5rem; display: flex; flex-direction: column; }
.timeline-marker { width: 48px; height: 48px; background-color: var(--pure-white); border: 1px solid rgba(23, 23, 23, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; margin-bottom: 2rem; transition: all 0.4s ease; }
.timeline-item:hover .timeline-marker { border-color: var(--muted-gold); color: var(--muted-gold); transform: scale(1.08); }
.stage-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.75rem; }

@media (max-width: 992px) {
    .timeline { flex-direction: column; gap: 3rem; }
    .timeline-track { top: 0; left: 24px; width: 1px; height: 100%; }
    .timeline-track-fill { width: 100%; height: 0%; transition: height 1.5s var(--ease-in-out) 0.3s; }
    .timeline.is-visible .timeline-track-fill { width: 100%; height: 100%; }
    .timeline-item { flex-direction: row; align-items: flex-start; padding-right: 0; }
    .timeline-marker { margin-bottom: 0; margin-right: 2rem; flex-shrink: 0; }
    .stage-title { margin-top: 8px; }
}

/* Why */
.why-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.why-container { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.why-header { position: sticky; top: 120px; }
.why-subtitle { font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 300; color: var(--graphite-gray); margin-top: 1rem; }
.why-principles { display: flex; flex-direction: column; gap: clamp(4rem, 8vw, 8rem); }
.principle-image { width: 100%; aspect-ratio: 16 / 10; margin-bottom: 2rem; background-color: var(--soft-cream); }
.principle-title { font-family: var(--font-heading); font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 800; text-transform: uppercase; margin-bottom: 0.75rem; }

@media (max-width: 992px) {
    .why-container { grid-template-columns: 1fr; gap: 3.5rem; }
    .why-header { position: relative; top: 0; border-bottom: 1px solid rgba(23, 23, 23, 0.1); padding-bottom: 2rem; }
    .why-principles { gap: 3.5rem; }
}

/* Case Studies */
.case-studies-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); background-color: var(--warm-ivory); }
.case-study { margin-bottom: clamp(5rem, 10vw, 10rem); display: flex; flex-direction: column; }
.cs-media-wrapper { position: relative; width: 100%; aspect-ratio: 21 / 9; background-color: var(--deep-charcoal); margin-bottom: 2.5rem; }
.concept-label { position: absolute; top: 1.5rem; left: clamp(1.25rem, 4vw, 3rem); background: rgba(23, 23, 23, 0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--pure-white); font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.5rem 1rem; z-index: 2; border: 1px solid rgba(255, 255, 255, 0.2); }
.cs-content { display: grid; grid-template-columns: 1fr 2.5fr; gap: clamp(2rem, 5vw, 5rem); }
.cs-title-group h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 0.4rem; }
.cs-subtitle { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-gold); }
.cs-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
.cs-detail-block h4 { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; border-bottom: 1px solid rgba(23, 23, 23, 0.1); padding-bottom: 0.4rem; }
.cs-detail-block p { font-size: clamp(0.88rem, 1.1vw, 0.98rem); font-weight: 300; line-height: 1.6; color: var(--graphite-gray); }

@media (max-width: 1024px) { .cs-media-wrapper { aspect-ratio: 16 / 9; } .cs-content { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 640px) { .cs-details-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* About */
.about-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.about-visual { width: 100%; aspect-ratio: 4 / 5; background-color: var(--deep-charcoal); }
.about-headline { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 800; line-height: 1.05; text-transform: uppercase; margin-bottom: 2rem; }
.about-headline span { color: var(--muted-gold); }
.about-copy { font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 300; line-height: 1.65; color: var(--graphite-gray); }
.disciplines-list { margin: 2.5rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; border-top: 1px solid rgba(23, 23, 23, 0.1); border-bottom: 1px solid rgba(23, 23, 23, 0.1); padding: 2rem 0; }
.discipline-item { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem; }
.discipline-item::before { content: ''; width: 4px; height: 4px; background-color: var(--muted-gold); border-radius: 50%; }
.global-statement { font-family: var(--font-heading); font-weight: 800; font-size: clamp(0.88rem, 1.2vw, 1rem); letter-spacing: 0.05em; text-transform: uppercase; padding-left: 1.25rem; position: relative; }
.global-statement::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background-color: var(--muted-gold); }

@media (max-width: 992px) { .about-container { grid-template-columns: 1fr; gap: 3rem; } .about-visual { aspect-ratio: 16 / 9; order: -1; } }
@media (max-width: 480px) { .disciplines-list { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.testimonial-card { background-color: var(--pure-white); padding: clamp(2.2rem, 4vw, 3.5rem) clamp(1.8rem, 3vw, 2.5rem); display: flex; flex-direction: column; border: 1px solid rgba(23, 23, 23, 0.06); transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease; }
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(179, 154, 107, 0.35); }
.quote-icon { width: 28px; height: 28px; margin-bottom: 1.8rem; }
.quote-icon svg { fill: var(--muted-gold); opacity: 0.85; }
.quote-text { font-size: clamp(0.95rem, 1.2vw, 1.1rem); font-weight: 300; line-height: 1.65; flex-grow: 1; margin-bottom: 2.2rem; }
.client-info { border-top: 1px solid rgba(23, 23, 23, 0.1); padding-top: 1.25rem; }
.client-name { font-family: var(--font-heading); font-weight: 800; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.client-meta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--graphite-gray); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.client-company { color: var(--muted-gold); }

@media (max-width: 992px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Forms */
.inquiry-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.inquiry-form { background-color: var(--pure-white); padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(23, 23, 23, 0.06); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.8rem; margin-bottom: 2.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
label { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem; }
input, select, textarea { width: 100%; background-color: var(--warm-ivory); border: 1px solid rgba(23, 23, 23, 0.15); padding: 1.1rem 1.25rem; font-family: var(--font-body); font-size: 16px; color: var(--deep-charcoal); border-radius: 0; transition: border-color 0.3s ease, box-shadow 0.3s ease; appearance: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--deep-charcoal); box-shadow: 0 0 0 1px var(--deep-charcoal); }
textarea { resize: vertical; min-height: 140px; }
.select-wrapper { position: relative; }
.select-wrapper::after { content: ''; position: absolute; top: 50%; right: 1.25rem; transform: translateY(-50%); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid var(--deep-charcoal); pointer-events: none; }
.form-actions { display: flex; align-items: center; gap: 1.5rem; padding-top: 2rem; border-top: 1px solid rgba(23, 23, 23, 0.1); }

@media (max-width: 768px) { 
    .form-grid { grid-template-columns: 1fr; } 
    .desktop-only-spacer { display: none; }
    .form-actions { flex-direction: column; align-items: stretch; } 
    .form-actions .btn-primary { width: 100%; } 
}

/* Footer */
.site-footer { background-color: var(--deep-charcoal); color: var(--pure-white); padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.footer-brand-section { margin-bottom: clamp(3.5rem, 6vw, 6rem); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.footer-logo { font-family: var(--font-heading); font-size: clamp(2.8rem, 7vw, 6.8rem); font-weight: 800; letter-spacing: -0.03em; text-transform: uppercase; line-height: 0.95; margin-bottom: 1.25rem; }
.footer-tagline { font-family: var(--font-heading); font-size: clamp(0.75rem, 1.2vw, 0.9rem); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-gold); }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr 1.5fr; gap: clamp(2.5rem, 4vw, 4rem); margin-bottom: clamp(3.5rem, 6vw, 6rem); }
.footer-column h4 { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-bottom: 1.5rem; }
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-column a { color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 300; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--muted-gold); }
.services-list-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 1.5rem; }
.contact-email { display: inline-block; font-family: var(--font-heading); font-size: clamp(1.1rem, 1.8vw, 1.45rem); color: var(--pure-white) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.25); padding-bottom: 0.2rem; word-break: break-all; }
.contact-email:hover { border-color: var(--muted-gold); color: var(--muted-gold) !important; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.78rem; font-weight: 300; color: rgba(255, 255, 255, 0.4); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; } .services-list-footer { grid-template-columns: 1fr; } }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal-up { opacity: 1 !important; transform: none !important; }
    .img-zoom-wrapper:hover img { transform: none !important; }
    .player-wrapper:hover video { transform: none !important; }
}