/* ================================
   MODERN ARTISTIC PORTFOLIO CSS
   ================================ */

/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ================================
   CSS CUSTOM PROPERTIES - MODERN PALETTE
   ================================ */
:root {
  /* Modern Artistic Color Palette */
  --color-primary: #0A0A0A;
  --color-primary-light: #1A1A1A;
  --color-primary-dark: #000000;
  
  --color-accent: #FF6B35;
  --color-accent-light: #FF8A65;
  --color-accent-dark: #E65100;
  
  --color-secondary: #F7931E;
  --color-secondary-light: #FFB74D;
  --color-secondary-dark: #EF6C00;
  
  --color-tertiary: #4ECDC4;
  --color-tertiary-light: #80CBC4;
  --color-tertiary-dark: #00695C;
  
  --color-neutral-50: #FAFAFA;
  --color-neutral-100: #F5F5F5;
  --color-neutral-200: #EEEEEE;
  --color-neutral-300: #E0E0E0;
  --color-neutral-400: #BDBDBD;
  --color-neutral-500: #9E9E9E;
  --color-neutral-600: #757575;
  --color-neutral-700: #616161;
  --color-neutral-800: #424242;
  --color-neutral-900: #212121;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-light: linear-gradient(135deg, var(--color-neutral-50) 0%, var(--color-neutral-100) 100%);
  
  /* Modern Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-accent: 'Space Grotesk', 'Inter', sans-serif;
  
  /* Typography Scale */
  --fs-xs: 0.75rem;      /* 12px */
  --fs-sm: 0.875rem;     /* 14px */
  --fs-base: 1rem;       /* 16px */
  --fs-lg: 1.125rem;     /* 18px */
  --fs-xl: 1.25rem;      /* 20px */
  --fs-2xl: 1.5rem;      /* 24px */
  --fs-3xl: 1.875rem;    /* 30px */
  --fs-4xl: 2.25rem;     /* 36px */
  --fs-5xl: 3rem;        /* 48px */
  --fs-6xl: 3.75rem;     /* 60px */
  --fs-7xl: 4.5rem;      /* 72px */
  --fs-8xl: 6rem;        /* 96px */
  
  /* Spacing Scale */
  --space-px: 1px;
  --space-0: 0;
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.25rem;    /* 20px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */
  
  /* Layout */
  --container-max: 1400px;
  --container-lg: 1200px;
  --container-md: 1024px;
  --container-sm: 768px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;
  --transition-all: all var(--transition-base);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-neutral-900);
  background-color: var(--color-neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove default styling */
ul, ol {
  list-style: none;
}

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

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-lg {
  max-width: var(--container-lg);
}

.container-md {
  max-width: var(--container-md);
}

.container-sm {
  max-width: var(--container-sm);
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-display { font-family: var(--font-display); }
.font-accent { font-family: var(--font-accent); }

.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-secondary { color: var(--color-secondary); }
.text-tertiary { color: var(--color-tertiary); }

/* Background utilities */
.bg-primary { background-color: var(--color-primary); }
.bg-accent { background-color: var(--color-accent); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }

/* Spacing utilities */
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }
.py-16 { padding: var(--space-16) 0; }
.py-20 { padding: var(--space-20) 0; }
.py-24 { padding: var(--space-24) 0; }

/* Visibility utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: var(--space-2) var(--space-4);
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--color-primary);
  color: var(--color-neutral-50);
  border-radius: var(--radius-md);
  z-index: var(--z-tooltip);
}

/* ================================
   MODERN BUTTON SYSTEM
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-accent);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-all);
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

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

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

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--secondary {
  background: var(--color-neutral-50);
  color: var(--color-primary);
  border-color: var(--color-neutral-300);
}

.btn--secondary:hover {
  background: var(--color-neutral-100);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: white;
}

.btn--ghost {
  background: transparent;
  color: var(--color-neutral-700);
}

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

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-lg);
  border-radius: var(--radius-2xl);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  border-radius: var(--radius-md);
}

/* ================================
   MODERN NAVIGATION
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-neutral-200);
  transition: var(--transition-all);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  color: var(--color-primary);
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.nav__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--color-neutral-700);
  transition: var(--transition-all);
  position: relative;
  padding: var(--space-2) var(--space-3);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-all);
  transform: translateX(-50%);
}

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

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--color-accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-2);
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-all);
  border-radius: var(--radius-full);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: var(--space-8);
}

.hero__image {
  margin-bottom: var(--space-8);
  display: flex;
  justify-content: center;
}

.hero__profile {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-2xl);
  animation: float 3s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: var(--fs-2xl);
  font-weight: 300;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   FEATURED SECTION
   ================================ */
.featured {
  padding: 0;
  background-color: var(--color-neutral-100);
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  height: 100vh;
  min-height: 600px;
  width: 100%;
}

.featured .artwork-card {
  background-color: var(--color-neutral-100);
  transition: opacity var(--transition-base);
  height: 100%;
  opacity: 1 !important;
}

.featured .artwork-card:hover {
  opacity: 0.8;
}

.featured .artwork-card__image {
  height: 100%;
  overflow: hidden;
}

.featured .artwork-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork-card {
  background-color: var(--color-neutral-100);
  transition: opacity var(--transition-base);
}

.artwork-card:hover {
  opacity: 0.8;
}

.artwork-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.artwork-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.artwork-card:hover .artwork-card__image img {
  transform: scale(1.02);
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation classes */
.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ================================
   MODERN CARDS
   ================================ */
.card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-all);
  border: 1px solid var(--color-neutral-200);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__content {
  padding: var(--space-6);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.card__description {
  color: var(--color-neutral-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-neutral-200);
}

/* ================================
   MODERN GRID SYSTEM
   ================================ */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--masonry {
  columns: 3;
  column-gap: var(--space-6);
}

.grid--masonry .card {
  break-inside: avoid;
  margin-bottom: var(--space-6);
}

/* ================================
   SECTION BACKGROUNDS
   ================================ */
.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section--dark {
  background: var(--color-primary);
  color: white;
}

.section--gradient {
  background: var(--gradient-primary);
  color: white;
}

.section--pattern {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-16);
  color: var(--color-primary);
}

.section--dark .section__title,
.section--gradient .section__title {
  color: white;
}

/* ================================
   MODERN FOOTER
   ================================ */
.footer {
  background: var(--color-primary);
  color: white;
  padding: var(--space-20) 0 var(--space-8);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__text {
  color: var(--color-neutral-400);
  margin-bottom: var(--space-4);
}

.footer__link {
  color: var(--color-neutral-400);
  transition: var(--transition-all);
  display: block;
  margin-bottom: var(--space-2);
}

.footer__link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-neutral-800);
  color: var(--color-neutral-500);
}

/* ================================
   INVESTIGATIONS SECTION STYLES
   ================================ */
.investigations-page {
  padding-top: 100px;
}

.page-header {
  padding: var(--space-20) 0;
  text-align: center;
  background: var(--gradient-secondary);
  color: white;
}

.page-title {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.page-subtitle {
  font-size: var(--fs-lg);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.investigations {
  padding: var(--space-20) 0;
}

.investigations__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  max-width: 1200px;
  margin: 0 auto;
}

.investigation__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
  background-color: var(--color-neutral-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.investigation__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.investigation__item:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.investigation__item:nth-child(even) .investigation__image {
  order: 2;
}

.investigation__item:nth-child(even) .investigation__content {
  order: 1;
}

.investigation__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.investigation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.investigation__item:hover .investigation__image img {
  transform: scale(1.05);
}

.investigation__content {
  padding: var(--space-12);
}

.investigation__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-4);
}

.investigation__description {
  color: var(--color-neutral-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.investigation__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.investigation__tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background-color: var(--color-secondary);
  color: var(--color-neutral-100);
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
}

.investigation__expand {
  margin-top: var(--space-4);
}

.investigation__expanded {
  grid-column: 1 / -1;
  padding: var(--space-12);
  background-color: var(--color-neutral-200);
  border-top: 1px solid var(--color-neutral-300);
}

.investigation__expanded-content h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-size: var(--fs-xl);
}

.investigation__expanded-content p {
  margin-bottom: var(--space-4);
  line-height: 1.6;
  color: var(--color-neutral-700);
}

.investigation__video {
  margin-top: var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.investigation__video iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.investigation__gallery {
  margin: var(--space-8) 0;
}

.investigation__gallery .gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.investigation__gallery .gallery__grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.investigation__gallery .gallery__grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.investigation__quote {
  background-color: var(--color-neutral-100);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-6);
  margin: var(--space-8) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

.investigation__quote p {
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-3);
}

.investigation__quote footer {
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--fs-base);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-6);
  }
  
  .hero__title {
    font-size: var(--fs-5xl);
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .investigation__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .investigation__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .investigation__item:nth-child(even) .investigation__image,
  .investigation__item:nth-child(even) .investigation__content {
    order: initial;
  }
  
  .investigation__content {
    padding: var(--space-8);
  }
  
  .investigation__expanded {
    padding: var(--space-8);
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-all);
  }
  
  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav__toggle--open span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero__title {
    font-size: var(--fs-4xl);
  }
  
  .hero__subtitle {
    font-size: var(--fs-xl);
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  
  .grid--masonry {
    columns: 1;
  }
  
  .section__title {
    font-size: var(--fs-4xl);
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .featured {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .featured__grid {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  
  .featured .artwork-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  .featured .artwork-card__image {
    height: 300px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .featured .artwork-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .investigation__gallery .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
  }
  
  .investigation__gallery .gallery__grid img {
    height: 150px;
  }
  
  .investigation__quote {
    padding: var(--space-4);
  }
  
  .investigation__video iframe {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero__title {
    font-size: var(--fs-3xl);
  }
  
  .hero__profile {
    width: 150px;
    height: 150px;
  }
  
  .section__title {
    font-size: var(--fs-3xl);
  }
  
  .card__content {
    padding: var(--space-4);
  }
}

/* ================================
   ARTWORK SHOWCASE STYLES
   ================================ */

.artwork-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  transition: var(--transition-all);
  cursor: pointer;
  box-shadow: var(--shadow-xl);
}

.artwork-showcase:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.artwork-showcase__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.artwork-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artwork-showcase:hover .artwork-showcase__image img {
  transform: scale(1.1);
}

.artwork-showcase__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-8) var(--space-6) var(--space-6);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-all);
}

.artwork-showcase:hover .artwork-showcase__overlay {
  transform: translateY(0);
  opacity: 1;
}

.artwork-showcase__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Override AOS animations for featured section */
.featured [data-aos] {
  opacity: 1 !important;
}

/* Investigation Gallery Images - Clickable */
.investigation__gallery {
  position: relative;
}

.investigation__gallery img {
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: var(--border-radius);
  background: var(--color-neutral-100);
  min-height: 200px;
  width: 100%;
  object-fit: cover;
}

.investigation__gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Image Loading States */
.investigation__gallery .gallery__grid {
  position: relative;
}

.investigation__gallery .gallery__grid > div {
  position: relative;
  background: var(--color-neutral-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--color-neutral-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container.loading {
  background: linear-gradient(90deg, var(--color-neutral-100) 0%, var(--color-neutral-200) 50%, var(--color-neutral-100) 100%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

.image-container.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-neutral-300);
  border-top: 3px solid var(--color-accent);
  border-radius: 50%;
  animation: loading-spinner 1s linear infinite;
}

@keyframes loading-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes loading-spinner {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container img.loaded {
  opacity: 1;
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
  .header,
  .nav__toggle,
  .btn,
  .footer {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    page-break-after: always;
  }
  
  .section {
    padding: var(--space-8) 0;
    page-break-inside: avoid;
  }
}

/* ================================
   ACCESSIBILITY IMPROVEMENTS
   ================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  /* Dark mode would be implemented here */
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ================================
   MODERN GALLERY STYLES
   ================================ */

/* Gallery Filters */
.gallery__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--color-neutral-300);
  color: var(--color-neutral-700);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-full);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition);
}

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

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

/* Gallery Grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.gallery__item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.gallery__item:hover .gallery__image img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__info h3 {
  color: white;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.gallery__info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-3);
}

.gallery__view-btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}

.gallery__view-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox__container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__content {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1000px;
  max-height: 600px;
}

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

.lightbox__info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.lightbox__description {
  color: var(--color-neutral-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.lightbox__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lightbox__medium {
  color: var(--color-neutral-600);
  font-style: italic;
  font-size: var(--fs-sm);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-primary);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox__close:hover {
  transform: scale(1.1);
}

/* ================================
   MODERN CONTACT STYLES
   ================================ */

/* Contact Cards */
.contact-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--color-neutral-200);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.contact-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.contact-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.contact-card__info {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.contact-card__social {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.contact-card__social a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-card__social a:hover {
  color: var(--color-accent-dark);
}

/* Contact Form Container */
.contact-form-container {
  background: white;
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-neutral-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

/* Form Components */
.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-base);
  color: var(--color-neutral-700);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form__input,
.contact-form .form__select,
.contact-form .form__textarea {
  width: 100%;
  box-sizing: border-box;
}

.form__note {
  color: var(--color-neutral-600);
  font-size: var(--fs-sm);
  margin-top: var(--space-2);
}

.form-note {
  color: var(--color-neutral-600);
  font-size: var(--fs-sm);
  margin-top: var(--space-2);
}

/* Contact Info Sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.info-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-neutral-200);
}

.info-card.highlight {
  background: var(--gradient-secondary);
  color: white;
  border: none;
}

.info-card.highlight h3 {
  color: white;
}

.info-card.highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.info-card p {
  color: var(--color-neutral-700);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.specialty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specialty-list li {
  position: relative;
  padding: var(--space-2) 0;
  padding-left: var(--space-4);
  color: var(--color-neutral-700);
}

.specialty-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: var(--space-6);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-neutral-200);
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.process-step__number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 auto var(--space-4);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.process-step p {
  color: var(--color-neutral-700);
  line-height: 1.6;
}

/* Form Message */
.form-message {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--border-radius);
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
}

.form-message--success {
  background: rgba(76, 205, 196, 0.1);
  color: var(--color-tertiary-dark);
  border: 1px solid var(--color-tertiary);
}

/* Simple Gallery Grid */
.simple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

/* Simple Lightbox */
.simple-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.simple-lightbox .lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.simple-lightbox .lightbox__container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-lightbox .lightbox__image {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ================================
   RESPONSIVE DESIGN FOR NEW COMPONENTS
   ================================ */

/* ================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================ */

@media (max-width: 768px) {
  /* Gallery responsive */
  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
  }
  
  .simple-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-3);
  }
  
  .gallery__filters {
    gap: var(--space-2);
  }
  
  .filter-btn {
    padding: var(--space-1) var(--space-3);
    font-size: var(--fs-xs);
  }
  
  /* Lightbox responsive */
  .lightbox__content {
    grid-template-columns: 1fr;
    max-height: 80vh;
  }
  
  .lightbox__info {
    padding: var(--space-4);
  }
  
  /* Contact form responsive */
  .contact-form-container {
    padding: var(--space-6);
  }
  
  .form__input,
  .form__select,
  .form__textarea {
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-sm);
  }
  
  /* Grid layouts responsive */
  .grid--3 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .grid--2 {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  /* Section padding responsive */
  .section {
    padding: var(--space-8) 0;
  }
  
  .section__title {
    font-size: var(--fs-2xl);
  }
  
  .card {
    margin-bottom: var(--space-4);
  }
  
  /* Hero sections responsive */
  .section--gradient p {
    font-size: var(--fs-base) !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .simple-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-2);
  }
  
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
  
  .form__input,
  .form__select,
  .form__textarea {
    padding: var(--space-2);
    font-size: var(--fs-sm);
  }
  
  .btn {
    width: 100%;
    padding: var(--space-3) var(--space-4);
  }
  
  .section__title {
    font-size: var(--fs-xl);
  }
  
  .card__content {
    padding: var(--space-4);
  }
  
  /* Force featured section to full width on small screens */
  .featured {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 0 !important;
  }
  
  .featured__grid {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet screens */
  .simple-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .grid--2 {
    gap: var(--space-8);
  }
}

/* ================================
   IMAGE LOADING STATES
   ================================ */

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-neutral-100);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.image-container.loading {
  background: linear-gradient(90deg, 
    var(--color-neutral-100) 0%, 
    var(--color-neutral-200) 50%, 
    var(--color-neutral-100) 100%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

.image-container.loading img {
  opacity: 0;
  visibility: hidden;
}

.image-container img:not([src]) {
  opacity: 0;
  visibility: hidden;
}

.image-container img[alt] {
  text-indent: -9999px;
  overflow: hidden;
}

.image-container.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-neutral-300);
  border-top: 2px solid var(--color-accent);
  border-radius: 50%;
  animation: loading-spin 1s linear infinite;
  z-index: 1;
}

.image-container.error {
  background: var(--color-neutral-200);
  color: var(--color-neutral-500);
}

.image-container.error::before {
  content: '⚠';
  font-size: var(--fs-xl);
  animation: none;
  border: none;
}

@keyframes loading-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes loading-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}