@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;700;800&family=Space+Mono:wght@400;700&family=Syncopate:wght@700&family=Archivo:wght@900&display=swap');

:root {
  /* Ultra-Premium Contrast Palette */
  --mv-canvas: #000000;            
  --mv-surface-low: #0A0A0A;       
  --mv-surface-high: #111111;      
  --mv-border: rgba(255, 255, 255, 0.1); 
  --mv-border-focus: rgba(255, 255, 255, 0.25);
  --mv-overlay: rgba(0, 0, 0, 0.95);
  
  --mv-dark: var(--mv-canvas);
  --mv-dark-2: var(--mv-surface-low);
  --mv-dark-3: var(--mv-surface-high);
  --mv-light: #ffffff;
  --mv-muted: #b3b3b3;
  --mv-white: #FFFFFF;
  
  /* Text Contrast Ratio Groupings */
  --mv-text-primary: #FFFFFF;      
  --mv-text-secondary: #AAAAAA;    
  --mv-accent: #D4A853;            
  --mv-accent-hover: #E8BF6A;
  
  /* Font Family Definitions */
  --font-display: 'Archivo', 'Syncopate', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-interface: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-system: var(--font-interface);
  --font-heading: var(--font-display);
  
  /* Fluid Typographic Scale - Massive Agency Scaling */
  --text-h1: clamp(4rem, 10vw, 8rem);
  --text-h2: clamp(2.5rem, 6vw, 4.5rem);
  --text-h3: clamp(1.5rem, 3vw, 2.2rem);
  --text-body: clamp(1rem, 1vw + 0.5rem, 1.15rem);
  --text-meta: clamp(0.75rem, 0.8vw, 0.85rem);
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: clamp(16px, 1vw + 1rem, 20px); }
body {
  background: var(--mv-dark);
  color: var(--mv-light);
  font-family: var(--font-system);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film Grain Overlay */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

/* Spotlight Gradients Disabled */
.mv-spotlight { display: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--mv-accent); color: var(--mv-dark); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #111111; }
::-webkit-scrollbar-thumb { background: rgba(212,168,83,0.25); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--mv-accent); }

/* 4. Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
h1 { font-size: var(--text-h1); line-height: 0.95; letter-spacing: -0.04em; }
h2 { font-size: var(--text-h2); line-height: 1; letter-spacing: -0.04em; }
h3 { font-size: var(--text-h3); line-height: 0.9; font-weight: 900; }
.font-heading { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; }
.text-italic { font-style: italic; }
.text-accent { color: var(--mv-accent); }

p { transition: color 0.3s ease; }
p:hover { color: var(--mv-light) !important; }
/* Layout */
.mv-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.mv-section { padding: 8rem 0; }
.mv-section-label {
  font-family: var(--font-mono);
  font-size: var(--text-meta);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mv-accent);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mv-section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--mv-accent);
}

/* 6. Navigation (.mv-nav) */
.mv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 2.5rem 3rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s ease, 
              border-color 0.4s ease;
}
.mv-nav.scrolled {
  padding: 1rem 3rem;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mv-logo {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.5rem; /* Tightened from 0.75rem for a cohesive wordmark */
  font-family: var(--font-interface), sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mv-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.mv-logo span {
  font-weight: 300;
  color: var(--mv-light);
  opacity: 0.6;
}
.mv-logo svg {
  flex-shrink: 0;
  width: 16px; /* Sized precisely to match cap-height */
  height: 16px;
  color: #D4A853; 
  align-self: center;
  opacity: 0.95;
  transform: none;
}
.mv-nav-links {
  display: flex; gap: 2rem; align-items: center; list-style: none;
}
.mv-nav-links a {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.6; transition: all 0.2s;
  position: relative;
}
.mv-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--mv-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv-nav-links a:hover::after,
.mv-nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.mv-nav-links a:hover { opacity: 1; color: var(--mv-accent); }
.mv-nav-links a.active { opacity: 1; color: var(--mv-accent); }
.mv-nav-cta {
  border: 1px solid var(--mv-accent); color: var(--mv-accent) !important;
  padding: 0.55rem 1.3rem; opacity: 1 !important; transition: all 0.3s;
  border-radius: 0;
}
.mv-nav-cta::after { display: none !important; }
.mv-nav-cta:hover { background: var(--mv-accent); color: var(--mv-dark) !important; }
.mv-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 24px; height: 20px; position: relative; z-index: 101;
}
.mv-burger span {
  display: block; width: 100%; height: 1.5px; background: var(--mv-light);
  position: absolute; left: 0; transition: all 0.3s;
}
.mv-burger span:nth-child(1) { top: 0; }
.mv-burger span:nth-child(2) { top: 9px; }
.mv-burger span:nth-child(3) { top: 18px; }
.mv-burger.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mv-burger.open span:nth-child(2) { opacity: 0; }
.mv-burger.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; z-index: 102;
  transition: all 0.3s;
}
.mv-mobile-menu {
  position: fixed; inset: 0; background: var(--mv-dark-2); z-index: 101;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; pointer-events: none; transition: all 0.4s ease;
}
.mv-mobile-menu.open { opacity: 1; pointer-events: auto; }
.mv-mobile-menu a {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 2.5rem;
  color: var(--mv-light); transition: color 0.2s;
}
.mv-mobile-menu a:hover { color: var(--mv-accent); }
@media (max-width: 768px) {
  .mv-nav-links { display: none; }
  .mv-burger { display: block; }
}

/* 7. Buttons */
.mv-btn, .btn-pill-primary, .btn-pill-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2.5rem; /* slightly more horizontal padding */
  font-family: var(--font-system);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 0; /* Square Button */
  border: none; cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap; /* Prevent text wrapping */
  transition: all 0.4s ease;
  width: max-content; /* Force it to fit text */
}
@media (max-width: 480px) {
  .mv-btn, .btn-pill-primary, .btn-pill-secondary {
    white-space: normal;
    width: 100%;
    text-align: center;
  }
}
.mv-btn span, .btn-pill-primary span, .btn-pill-secondary span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv-btn:hover span, .btn-pill-primary:hover span, .btn-pill-secondary:hover span {
  transform: translateX(4px);
}
.mv-btn-primary, .btn-pill-primary {
  background: var(--mv-accent); color: var(--mv-dark);
}
.mv-btn-primary:hover, .btn-pill-primary:hover {
  background: var(--mv-accent-hover);
}
.mv-btn-ghost, .btn-pill-secondary {
  background: transparent;
  border: 2px solid var(--mv-accent);
  color: var(--mv-light);
}
.mv-btn-ghost:hover, .btn-pill-secondary:hover {
  background: rgba(212,168,83,0.1);
}

/* Gradient Text Utility */
.mv-gradient-text {
  background: linear-gradient(135deg, #FFF 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


/* Filter Buttons */
.mv-filter-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; padding: 1.5rem 0; }
.mv-filter-btn {
  padding: 0.5rem 1.2rem; border: 1px solid var(--mv-border); background: transparent; color: var(--mv-muted);
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.mv-filter-btn:hover, .mv-filter-btn.active {
  background: var(--mv-accent); color: var(--mv-dark); border-color: var(--mv-accent);
}

/* Lightbox */
.mv-lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 1000;
  align-items: center; justify-content: center; padding: 2rem;
}
.mv-lightbox.open { display: flex; }
.mv-lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; }
.mv-lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--mv-light);
  font-size: 1.5rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; font-family: 'Inter', sans-serif;
}
.mv-lightbox-close:hover { opacity: 1; }
.mv-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(245,243,240,0.2);
  color: var(--mv-light); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; transition: all 0.25s;
}
.mv-lightbox-nav:hover { border-color: var(--mv-accent); color: var(--mv-accent); }
.mv-lightbox-prev { left: 1.5rem; }
.mv-lightbox-next { right: 1.5rem; }
.mv-lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem;
  letter-spacing: 0.2em; color: var(--mv-muted);
}

/* Stats */
.mv-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.mv-stat { text-align: center; padding: 2rem 1rem; }
.mv-stat-number {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300;
  color: var(--mv-accent); line-height: 1; margin-bottom: 0.75rem;
}
.mv-stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mv-muted); }
@media (max-width: 768px) { .mv-stats { grid-template-columns: repeat(2, 1fr); } }

/* Pricing */
.mv-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--mv-border); }
.mv-pricing-item { background: var(--mv-dark); padding: 3rem 2.5rem; position: relative; }
.mv-pricing-item.featured { background: var(--mv-dark-2); }
.mv-pricing-badge {
  display: inline-block; background: var(--mv-accent); color: var(--mv-dark); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.75rem; margin-bottom: 1.5rem;
}
.mv-pricing-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; font-weight: 500; margin-bottom: 0.75rem; }
.mv-pricing-price { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 2.5rem; font-weight: 300; color: var(--mv-accent); margin-bottom: 0.5rem; }
.mv-pricing-unit { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--mv-muted); margin-bottom: 2rem; }
.mv-pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.mv-pricing-features li { font-size: 0.85rem; color: var(--mv-muted); padding-left: 1.25rem; position: relative; }
.mv-pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--mv-accent); }

/* Service Sections */
.mv-service { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 80vh; align-items: stretch; }
.mv-service.reversed { direction: rtl; }
.mv-service.reversed > * { direction: ltr; }
.mv-service-image { position: relative; overflow: hidden; border-radius: 8px; }
.mv-service-image img { width: 100%; height: 100%; object-fit: cover; transition: scale 1s cubic-bezier(0.19, 1, 0.22, 1); will-change: transform, scale; }
.mv-service:hover .mv-service-image img { scale: 1.03; }
.mv-service-content { display: flex; flex-direction: column; justify-content: center; padding: 4rem 5rem; background: var(--mv-dark); }
.mv-service-content.alt-bg { background: var(--mv-dark-2); }
.mv-service-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; margin-bottom: 1rem; }
.mv-service-price { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.75rem; color: var(--mv-accent); margin-bottom: 1.5rem; }
.mv-service-desc { color: var(--mv-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.mv-service-includes { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.mv-service-includes li { font-size: 0.85rem; color: var(--mv-muted); display: flex; align-items: center; gap: 0.75rem; }
.mv-service-includes li::before { content: '✓'; color: var(--mv-accent); font-weight: 600; font-size: 0.75rem; }
@media (max-width: 900px) {
  .mv-service, .mv-service.reversed { grid-template-columns: 1fr; direction: ltr; }
  .mv-service-image { min-height: 50vw; }
  .mv-service-content { padding: 3rem 2rem; }
}

/* Cross-sell */
.mv-crosssell {
  background: var(--mv-dark-2); border: 1px solid var(--mv-border); padding: 2.5rem 3rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.mv-crosssell-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mv-accent); margin-bottom: 0.5rem; }
.mv-crosssell-text { font-size: 0.95rem; color: var(--mv-muted); }
.mv-crosssell-text strong { color: var(--mv-accent); }

/* FAQ */
.mv-faq-item { border-bottom: 1px solid var(--mv-border); }
.mv-faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; background: none; border: none; color: var(--mv-light); font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; text-align: left; gap: 2rem; transition: color 0.2s;
}
.mv-faq-question:hover { color: var(--mv-accent); }
.mv-faq-icon { font-size: 1.25rem; color: var(--mv-accent); transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); flex-shrink: 0; }
.mv-faq-item.open .mv-faq-icon { transform: rotate(45deg); }
.mv-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.mv-faq-item.open .mv-faq-answer { max-height: 500px; }
.mv-faq-answer-inner { padding-bottom: 1.5rem; color: var(--mv-muted); line-height: 1.8; font-size: 0.9rem; }

/* Forms */
.mv-form-group { margin-bottom: 2rem; }
.mv-form-label { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mv-muted); margin-bottom: 0.6rem; }
.mv-form-input, .mv-form-textarea, .mv-form-select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(245,243,240,0.15); color: var(--mv-light); padding: 0.85rem 0; font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.3s;
}
.mv-form-input:focus, .mv-form-textarea:focus, .mv-form-select:focus { border-color: var(--mv-accent); }
.mv-form-input::placeholder, .mv-form-textarea::placeholder { color: rgba(245,243,240,0.2); }
.mv-form-textarea { resize: vertical; min-height: 120px; border: 1px solid rgba(245,243,240,0.15); padding: 1rem; margin-top: 0.5rem; }
.mv-form-select { appearance: none; cursor: pointer; }
.mv-form-select option {
  background: var(--mv-dark-2);
  color: var(--mv-light);
}



/* 20. Page Transitions */
.mv-page-transition {
  position: fixed;
  inset: 0;
  background: var(--mv-dark);
  z-index: 99999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mv-page-transition.loaded {
  opacity: 0;
}

@media (pointer: coarse) {
  .mv-cursor, .mv-cursor-follower { display: none !important; }
}

/* Sticky Book Bar */
.mv-book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(17,17,17,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--mv-border); padding: 0.85rem 2.5rem; display: flex; justify-content: space-between; align-items: center; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mv-book-bar.visible { transform: translateY(0); }
.mv-book-bar-text { font-size: 0.8rem; color: var(--mv-muted); }
.mv-book-bar-text strong { color: var(--mv-accent); }
.mv-book-bar-actions { display: flex; gap: 0.75rem; align-items: center; }
.mv-book-bar-btn { padding: 0.55rem 1.3rem; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; }
.mv-book-bar-btn.primary { background: var(--mv-accent); color: var(--mv-dark); border: none; }
.mv-book-bar-btn.primary:hover { background: var(--mv-accent-hover); }
.mv-book-bar-btn.ghost { background: transparent; border: 1px solid rgba(245,243,240,0.2); color: var(--mv-light); }
.mv-book-bar-btn.ghost:hover { border-color: var(--mv-accent); color: var(--mv-accent); }
@media (max-width: 640px) { .mv-book-bar-text { display: none; } .mv-book-bar { justify-content: center; } }



/* Footer */
.mv-footer { background: var(--mv-dark-2); border-top: 1px solid var(--mv-border); padding: 5rem 2.5rem 2rem; }
.mv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.mv-footer-brand { font-family: var(--font-heading), sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.mv-footer-brand span { font-weight: 300; opacity: 0.6; }
.mv-footer-tagline { font-size: 0.85rem; color: var(--mv-muted); margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.mv-footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mv-accent); margin-bottom: 1.5rem; }
.mv-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.mv-footer-col a { font-size: 0.85rem; color: var(--mv-muted); transition: color 0.2s; }
.mv-footer-col a:hover { color: var(--mv-light); }
.mv-footer-bottom { border-top: 1px solid var(--mv-border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.7rem; color: var(--mv-muted); }
.mv-footer-bottom a { color: var(--mv-accent); font-weight: 600; }
@media (max-width: 768px) { .mv-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .mv-footer-grid { grid-template-columns: 1fr; } }

/* Scroll Reveal */
.mv-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mv-reveal.revealed { opacity: 1; transform: translateY(0); }
.mv-reveal-d1 { transition-delay: 0.1s; }
.mv-reveal-d2 { transition-delay: 0.2s; }
.mv-reveal-d3 { transition-delay: 0.3s; }
.mv-reveal-d4 { transition-delay: 0.4s; }
.mv-reveal-d5 { transition-delay: 0.5s; }

/* Testimonial */
.mv-testimonial { padding: 6rem 0; text-align: center; }
.mv-testimonial-quote { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 300; font-style: italic; line-height: 1.6; max-width: 700px; margin: 0 auto 2rem; position: relative; }
.mv-testimonial-quote::before { content: '"'; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 6rem; color: var(--mv-accent); opacity: 0.3; position: absolute; top: -2rem; left: -1rem; line-height: 1; }
.mv-testimonial-cite { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mv-muted); }

/* Glassmorphism Card (simplified) */
.mv-glass { background: var(--mv-dark-2); border: 1px solid var(--mv-border); transition: border-color 0.3s; }
.mv-glass:hover { border-color: rgba(212,168,83,0.2); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .mv-reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--mv-accent); outline-offset: 2px; }

/* Global Responsive */
@media (max-width: 1024px) { .mv-container { padding: 0 2rem; } .mv-section { padding: 5rem 0; } }
@media (max-width: 768px) {
  .mv-container { padding: 0 1.5rem; }
  .mv-section { padding: 4rem 0; }
  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .mv-hero { padding: 0 1.5rem 4rem; }
  .mv-hero-trust { flex-wrap: wrap; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .mv-hero-ctas { flex-direction: column; }
  .mv-hero-ctas .mv-btn { width: 100%; justify-content: center; }
}
/* Native CSS Scroll Parallax */
@supports (animation-timeline: scroll()) {
  .parallax-layer {
    animation: parallax linear;
    animation-timeline: scroll();
    animation-range: entry 0% exit 100%;
    transform-origin: bottom;
  }
  @keyframes parallax {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(20%) scale(1.1); }
  }
}

/* ==========================================================================
   EDITORIAL BRUTALIST MARQUEE
   ========================================================================== */

/* Container establishes borders and constraints */
.mv-marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--mv-dark);
  border-top: 1px solid rgba(245,243,240,0.2);
  border-bottom: 1px solid rgba(245,243,240,0.2);
  padding: 1.5rem 0;
  display: flex;
  cursor: default;
}

/* The scrolling track */
.mv-marquee {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  animation: mv-scroll 35s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.mv-marquee-container:hover .mv-marquee {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
}

/* Base typographic styling */
.marquee-content span {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--mv-light);
  padding: 0 1.5rem;
  user-select: none;
}

/* Outlined text modifier */
.marquee-content span.outlined {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--mv-light);
}

/* Seamless infinite scroll */
@keyframes mv-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile Scroll-Snap Galleries */
@media (max-width: 768px) {
  .mv-mobile-scroll-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .mv-mobile-scroll-gallery::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .mv-mobile-scroll-gallery > * {
    scroll-snap-align: center;
    flex: 0 0 85%;
  }

  /* Enforce touch target accessibility minimums */
  .mv-filter-btn {
    min-height: 48px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
  }
  
  .mv-mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Safe Area Sticky Mobile CTA */
  .mv-mobile-floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px)) 20px;
    background: linear-gradient(to top, var(--mv-canvas) 80%, transparent);
    display: flex;
    justify-content: center;
  }
  
  .mv-mobile-floating-cta .btn-pill-primary {
    width: 100%;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }
}

/* Prevent Cumulative Layout Shift (CLS) on dynamic grids */
.mv-portfolio-item {
  aspect-ratio: attr(width) / attr(height);
  background: var(--mv-surface-low);
}

/* Defer rendering of complex non-critical elements */
.mv-footer, 
.mv-section:has(#mv-contact-form) {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}


/* ==========================================================================
   BRUTALIST ARCHITECTURE (NEW LAYOUT)
   ========================================================================== */

/* 1. The Monolith (Hero) */
.mv-monolith {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  overflow: hidden;
  background: var(--mv-dark);
}
.mv-monolith-left {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  border-right: 1px solid var(--mv-border);
  position: relative;
  z-index: 10;
  background: var(--mv-dark);
}
.mv-monolith-right {
  width: 30%;
  height: 100%;
  position: relative;
  background: var(--mv-dark);
}
.mv-monolith-right img, .mv-monolith-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
}
.mv-monolith-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--mv-light);
  margin-bottom: 2rem;
}
.mv-monolith-title span { display: block; }
.mv-monolith-title span.mv-text-outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--mv-light);
}
.mv-monolith-sub {
  max-width: 600px;
  font-family: var(--font-interface);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  border-left: 2px solid var(--mv-accent);
  padding-left: 1.5rem;
}

@media (max-width: 1024px) {
  .mv-monolith { flex-direction: column; }
  .mv-monolith-left { width: 100%; height: 70%; padding: 0 2rem; border-right: none; border-bottom: 1px solid var(--mv-border); }
  .mv-monolith-left:only-child { height: 100%; border-bottom: none; }
  .mv-monolith-right { width: 100%; height: 30%; }
}

/* 2. The Manifest (Introduction) */
.mv-manifest {
  display: flex;
  min-height: 80vh;
  border-bottom: 1px solid var(--mv-border);
}
.mv-manifest-marquee {
  width: 80px;
  border-right: 1px solid var(--mv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--mv-dark);
}
.mv-manifest-marquee span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mv-accent);
  white-space: nowrap;
  padding: 2rem 0;
}
.mv-manifest-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 15%;
  background: var(--mv-dark);
}
.mv-manifest-text {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.5;
  color: var(--mv-light);
}
@media (max-width: 768px) {
  .mv-manifest { flex-direction: column; }
  .mv-manifest-marquee { width: 100%; height: 60px; border-right: none; border-bottom: 1px solid var(--mv-border); overflow: hidden; position: relative; }
  .mv-manifest-marquee span { 
    writing-mode: horizontal-tb; 
    transform: none; 
    display: inline-block;
    padding: 0 100%;
    animation: marquee-scroll 15s linear infinite;
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  .mv-manifest-content { padding: 4rem 2rem; }
  .mv-manifest-text { text-indent: 0; }
}

/* 3. The Index (Services) */
.mv-index-section {
  padding: 0;
  border-bottom: 1px solid var(--mv-border);
}
.mv-index-row {
  display: flex;
  align-items: center;
  padding: 3rem 4rem;
  border-bottom: 1px solid var(--mv-border);
  transition: all 0.1s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.mv-index-row:last-child { border-bottom: none; }
.mv-index-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  width: 100px;
}
.mv-index-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mv-light);
  flex: 1;
}
.mv-index-arrow {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--mv-accent);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s cubic-bezier(0.85, 0, 0.15, 1);
}
.mv-index-row:hover { background: var(--mv-light); }
.mv-index-row:hover .mv-index-num,
.mv-index-row:hover .mv-index-title { color: var(--mv-dark); }
.mv-index-row:hover .mv-index-arrow { opacity: 1; transform: translateX(0); }

/* 4. The Archive (Horizontal Portfolio) */
.mv-archive {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  height: 100vh;
  width: 100vw;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-bottom: 1px solid var(--mv-border);
}
.mv-archive::-webkit-scrollbar { height: 8px; }
.mv-archive::-webkit-scrollbar-track { background: var(--mv-dark); border-top: 1px solid var(--mv-border); }
.mv-archive::-webkit-scrollbar-thumb { background: var(--mv-accent); }
.mv-archive-item {
  display: block;
  flex: 0 0 80vw;
  height: 100%;
  scroll-snap-align: center;
  border-right: 1px solid var(--mv-border);
  position: relative;
  background: var(--mv-dark-2);
}
.mv-archive-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.8) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.mv-archive-title { z-index: 2; position: relative; }
.mv-archive-item:last-child { flex: 0 0 100vw; border-right: none; }
@media (min-width: 1024px) {
  .mv-archive-item { flex: 0 0 60vw; }
}
.mv-archive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.mv-archive-item:hover .mv-archive-img { filter: grayscale(0%); }
.mv-archive-title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mv-light);
  mix-blend-mode: difference;
  z-index: 10;
  line-height: 0.9;
}

/* 5. The Terminal (Footer) */
.mv-terminal {
  padding: 8rem 4rem 4rem;
  background: var(--mv-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 70vh;
}
.mv-terminal-cta {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 15rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--mv-light);
  text-transform: uppercase;
  transition: color 0.3s;
  display: block;
}
.mv-terminal-cta:hover { color: var(--mv-accent); }
.mv-cursor {
  display: inline-block;
  width: clamp(2rem, 6vw, 7rem);
  height: clamp(4rem, 12vw, 15rem);
  background: var(--mv-accent);
  vertical-align: bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.mv-terminal-data {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.mv-terminal-links {
  display: flex;
  gap: 2rem;
}
.mv-terminal-links a:hover { color: var(--mv-light); }
@media (max-width: 768px) {
  .mv-terminal { padding: 4rem 2rem 6rem; }
  .mv-terminal-cta { font-size: clamp(2rem, 5vw, 4rem); padding: 1rem 1rem; }
  .mv-terminal-data { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}


/* Subtitle additions */
.mv-index-subtitle {
  display: block;
  font-family: var(--font-interface);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  color: var(--mv-muted);
  letter-spacing: 0;
  margin-top: 0.5rem;
  transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.mv-index-row:hover .mv-index-subtitle {
  color: rgba(17, 17, 17, 0.6);
}

/* Premium Buttons & Layouts for Services */
.mv-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mv-light);
  background: transparent;
  border: 1px solid var(--mv-border);
  padding: 1.2rem 2.5rem;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
  text-decoration: none;
}
.mv-btn:hover {
  background: var(--mv-light);
  color: var(--mv-dark);
  border-color: var(--mv-light);
}

.mv-service-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6rem;
  width: 100%;
}
.mv-service-desc {
  font-family: var(--font-interface);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.7;
  color: var(--mv-muted);
  font-weight: 400;
}
.mv-service-price {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  font-weight: 700;
  color: var(--mv-accent);
  margin: 2rem 0;
}

@media (max-width: 992px) {
  .mv-service-layout {
    flex-direction: column;
    gap: 3rem;
  }
}

/* ==========================================================================
   MOBILE QA FIXES & OVERLAP SECTION STYLES
   ========================================================================== */

/* 1. Mobile Overflow Fixes */
.mv-archive { width: 100%; max-width: 100%; }

@media (max-width: 768px) {
  /* Prevent button text from breaking the layout */
  .mv-btn, .btn-pill-primary, .btn-pill-secondary {
    white-space: normal;
    padding: 1rem 1.5rem;
    text-align: center;
  }
  
  /* 2. Padding Crushing Fixes */
  .mv-index-row {
    padding: 1.5rem 1rem;
  }
  .mv-index-num {
    width: 40px;
  }
  .mv-nav {
    padding: 1.5rem 1.5rem;
  }
  
  /* Disable heavy SVG grain animation on mobile to save battery */
  body::after {
    animation: none !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
  }
}

/* STICKY MOBILE CTA */
.mv-mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .mv-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    border-top: 1px solid var(--mv-border);
    z-index: 1000;
    display: flex;
  }
  .mv-mobile-cta a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem;
    font-family: var(--font-system);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--mv-light);
    text-transform: uppercase;
    text-decoration: none;
  }
}

/* 3. Mobile Menu Z-Index Fix */
.mv-burger { z-index: 1100 !important; }

/* 4. Typography Adjustments */
.mv-monolith-title {
  font-size: clamp(2rem, 6vw, 8rem) !important;
}

/* Scope cursor hiding so it doesn't break terminal aesthetic */
@media (pointer: coarse) {
  #cursor { display: none !important; }
  /* Ensure the terminal blinking cursor stays visible */
  .mv-terminal .mv-cursor { display: inline-block !important; }
}

/* 5. The Overlap Cross-Promotion Layout */
.bwd-overlap-section {
  position: relative; 
  margin: 8rem 0; 
  padding: 0 1rem;
}
.bwd-overlap-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--mv-surface-high); 
  border: 1px solid var(--mv-border);
  position: relative;
  padding: 4rem 2rem;
}
.bwd-overlap-badge {
  position: absolute;
  top: -1.25rem;
  left: 1.5rem;
  background: var(--mv-canvas);
  padding: 0.5rem 1rem;
  border: 1px solid var(--mv-accent);
  font-family: var(--font-mono); 
  color: var(--mv-accent); 
  font-size: 0.75rem; 
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bwd-overlap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .bwd-overlap-card {
    padding: 6rem 4rem;
  }
  .bwd-overlap-badge {
    top: -1.5rem;
    left: 4rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  .bwd-overlap-grid {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 4rem;
  }
}
.bwd-overlap-heading {
  font-family: var(--font-heading); 
  font-size: clamp(3rem, 7vw, 6rem); 
  font-weight: 900; 
  letter-spacing: -0.05em; 
  text-transform: uppercase; 
  line-height: 0.9;
  margin: 0;
  color: var(--mv-light);
}
.bwd-overlap-copy {
  color: var(--mv-text-secondary); 
  font-size: 1.15rem; 
  line-height: 1.6; 
  margin-bottom: 2.5rem;
  max-width: 500px;
}
