:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08);
  --color-bg-2: rgba(245, 158, 11, 0.08);
  --color-bg-3: rgba(34, 197, 94, 0.08);
  --color-bg-4: rgba(239, 68, 68, 0.08);
  --color-bg-5: rgba(147, 51, 234, 0.08);
  --color-bg-6: rgba(249, 115, 22, 0.08);
  --color-bg-7: rgba(236, 72, 153, 0.08);
  --color-bg-8: rgba(6, 182, 212, 0.08);

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Luxury color palette */
  --luxury-cream: #FEFEFE;
  --luxury-off-white: #FAFAFA;
  --luxury-charcoal: #2C2C2C;
  --luxury-gold: #D4AF37;
  --luxury-gold-light: rgba(212, 175, 55, 0.1);
  --luxury-gold-medium: rgba(212, 175, 55, 0.3);
  
  /* Premium fonts */
  --font-heading: 'Playfair Display', serif;
  --font-accent: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15);
    --color-bg-2: rgba(180, 83, 9, 0.15);
    --color-bg-3: rgba(21, 128, 61, 0.15);
    --color-bg-4: rgba(185, 28, 28, 0.15);
    --color-bg-5: rgba(107, 33, 168, 0.15);
    --color-bg-6: rgba(194, 65, 12, 0.15);
    --color-bg-7: rgba(190, 24, 93, 0.15);
    --color-bg-8: rgba(8, 145, 178, 0.15);
    
    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--luxury-off-white);
  color: var(--luxury-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--glass-shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-text {
  color: var(--luxury-charcoal);
}

.logo-accent {
  color: var(--luxury-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--luxury-charcoal);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
  font-size: 0.95rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--luxury-gold);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--luxury-charcoal);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

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

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(212, 175, 55, 0.2));
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1.2s ease;
  padding: 0 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-cta {
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--luxury-gold);
  position: relative;
  animation: pulse 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--luxury-gold);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-btn {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, #B8941F 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.luxury-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.luxury-btn:hover::before {
  left: 100%;
}

.luxury-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

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

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

.full-width {
  width: 100%;
}

/* Section Styling */
section {
  padding: 6rem 0;
}

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

.section-tagline {
  font-size: 1.125rem;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--luxury-charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: var(--luxury-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--luxury-gold-light), rgba(255, 255, 255, 0.8));
  border: 2px solid var(--luxury-gold-medium);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--luxury-charcoal);
  margin-bottom: 1rem;
}

.service-subtitle {
  color: var(--color-text-secondary);
  font-style: italic;
  font-size: 1rem;
}

.service-hover-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s;
  pointer-events: none;
}

.service-card:hover .service-hover-overlay {
  left: 100%;
}

/* Portfolio Section */
.portfolio {
  background: var(--luxury-off-white);
  position: relative;
}

.showreel-container {
  margin: 4rem 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-background {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(212, 175, 55, 0.3));
  z-index: 1;
}

.showreel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.showreel-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.showreel-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* Portfolio Gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 4rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item.large {
  grid-column: span 2;
  height: 400px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.gallery-item:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.image-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Art Meets Digital Section */
.art-digital-section {
  margin: 6rem 0;
}

.subsection-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--luxury-charcoal);
}

.split-view {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.split-left, .split-right {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.raw-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color-bg-7), var(--color-bg-5));
}

.digital-transformation {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color-bg-1), var(--color-bg-3));
}

.split-arrow {
  font-size: 2rem;
  color: var(--luxury-gold);
  font-weight: bold;
}

.art-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
}

.split-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

/* Industries Section */
.industries {
  background: var(--luxury-cream);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.industry-card:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  text-decoration: none;
  color: inherit;
}

.industry-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--luxury-charcoal);
  margin-bottom: 1rem;
}

.industry-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.industry-hover-effect {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.industry-card:hover .industry-hover-effect {
  top: 0;
  right: 0;
}

/* Testimonials Section */
.testimonials {
  background: var(--luxury-off-white);
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition-smooth);
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--luxury-charcoal);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.author-name {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  color: var(--luxury-gold);
  margin-bottom: 0.5rem;
}

.author-company {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--luxury-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--luxury-gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-nav-btn:hover {
  background: var(--luxury-gold);
  color: white;
  transform: scale(1.1);
}

/* About Section */
.about {
  background: var(--luxury-cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-block {
  margin-bottom: 3rem;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--luxury-charcoal);
  margin-bottom: 1rem;
}

.story-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--luxury-gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--luxury-gold);
  border-radius: 50%;
}

.timeline-year {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--luxury-gold);
  font-weight: 600;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  color: var(--luxury-charcoal);
  margin: 0.5rem 0;
}

.timeline-content p {
  color: var(--color-text-secondary);
  margin: 0;
}

/* Forms */
.career, .contact {
  background: var(--luxury-off-white);
}

.career-form-container, .contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding-right: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-family: var(--font-heading);
  color: var(--luxury-charcoal);
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--luxury-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

.social-link:hover {
  transform: translateY(-2px);
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--luxury-charcoal);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-input {
  position: absolute;
  left: -9999px;
}

.file-label {
  display: block;
  padding: 1rem;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.file-label:hover {
  border-color: var(--luxury-gold);
  background: rgba(212, 175, 55, 0.05);
}

.file-text {
  color: var(--color-text-secondary);
}

/* Footer */
.footer {
  background: var(--luxury-charcoal);
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Image Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  position: relative;
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
  top: 50%;
  transform: translateY(-50%);
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {transform: translateY(-50%) scale(0.9);}
  to {transform: translateY(-50%) scale(1);}
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close:hover {
  color: var(--luxury-gold);
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .portfolio-gallery {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  
  .gallery-item.large,
  .gallery-item.wide {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--glass-shadow);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    height: 300px;
  }
  
  .showreel-container {
    height: 300px;
    margin: 3rem 0;
  }
  
  .showreel-title {
    font-size: 2rem;
  }

  .split-view {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .split-arrow {
    transform: rotate(90deg);
    justify-self: center;
    margin: 1rem 0;
  }
  
  .split-left, .split-right {
    height: 250px;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    padding-left: 1rem;
  }
  
  .testimonials-slider {
    height: auto;
    min-height: 300px;
  }
  
  .testimonial-content {
    padding: 2rem;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 1rem;
  }
  
  .nav-logo {
    font-size: 1.3rem;
  }

  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .service-card,
  .industry-card,
  .testimonial-content {
    padding: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .section-tagline {
    font-size: 1rem;
  }

  .showreel-container {
    height: 250px;
    border-radius: 15px;
  }
  
  .showreel-title {
    font-size: 1.8rem;
  }
  
  .showreel-subtitle {
    font-size: 1rem;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .gallery-item.large,
  .gallery-item.wide {
    height: 250px;
  }
  
  .image-overlay {
    padding: 1.5rem;
  }
  
  .image-overlay h4 {
    font-size: 1.1rem;
  }
  
  .image-overlay p {
    font-size: 0.8rem;
  }

  .subsection-title {
    font-size: 1.5rem;
  }
  
  .split-left, .split-right {
    height: 200px;
  }
  
  .art-overlay {
    font-size: 1.1rem;
  }
  
  .split-description {
    font-size: 1rem;
  }

  .industry-title {
    font-size: 1.3rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .story-title {
    font-size: 1.3rem;
  }
  
  .timeline-year {
    font-size: 1.3rem;
  }
  
  .timeline-content h4 {
    font-size: 1.1rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-control {
    padding: 0.8rem;
  }
  
  .file-label {
    padding: 0.8rem;
  }

  .container {
    padding: 0 1rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* Mobile menu animation */
.nav-toggle span {
  transition: all 0.3s ease;
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  .nav-link {
    padding: 0.8rem 1rem;
    display: block;
  }
  
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  .form-control {
    min-height: 44px;
  }
  
  .testimonial-nav-btn {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-border: var(--color-black);
    --color-text-secondary: var(--color-black);
  }
  
  .service-card,
  .industry-card,
  .testimonial-content {
    border: 2px solid var(--color-black);
  }
}

/* Orientation specific styles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 4rem 0;
  }
  
  .nav-menu {
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* JavaScript helper classes */
.nav-menu.active {
  display: flex;
}

.modal.show {
  display: block;
}

.testimonial-slide.active {
  display: block;
}