/* ============================================
   ARTEZETU - Contemporary African Luxe Design System
   Version: 1.0 MVP
   ============================================ */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette - Warm African Earth Tones */
  --color-ivory: #FDFBF7;
  --color-cream: #F5F0E8;
  --color-sand: #E8E0D4;
  --color-charcoal: #1A1814;
  --color-charcoal-light: #2D2A24;

  /* Accent Colors - One per vertical */
  --color-terracotta: #C4704A;
  --color-terracotta-dark: #A85A38;
  --color-terracotta-light: #D4896A;

  --color-gold: #8B6914;
  --color-gold-dark: #6B5010;
  --color-gold-light: #B8922E;

  --color-forest: #2D5A4A;
  --color-forest-dark: #1F4236;
  --color-forest-light: #3D7A64;

  /* Text Colors */
  --text-primary: #1A1814;
  --text-secondary: #6B6459;
  --text-muted: #9A9288;
  --text-inverse: #FDFBF7;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 24, 20, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 24, 20, 0.12);
  --shadow-xl: 0 20px 50px rgba(26, 24, 20, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--color-ivory);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

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

.text-center {
  text-align: center;
}

/* Decorative heading with line */
.section-heading {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-sand) 0%, transparent 100%);
}

.section-heading h2 {
  white-space: nowrap;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.section {
  padding: var(--space-4xl) 0;
}

.section--dark {
  background-color: var(--color-charcoal);
  color: var(--text-inverse);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-inverse);
}

.section--cream {
  background-color: var(--color-cream);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

/* Responsive Grid */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

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

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

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo span {
  color: var(--color-terracotta);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

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

.nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: width var(--transition-base);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-base);
}

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

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

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

/* Mobile Navigation */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    background: var(--color-ivory);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
  }

  .nav__list.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.25rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.btn--primary:hover {
  background-color: var(--color-charcoal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--color-charcoal);
}

.btn--secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--text-inverse);
}

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

.btn--terracotta:hover {
  background-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--gold:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--forest:hover {
  background-color: var(--color-forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--text-inverse);
  border: 1px solid var(--text-inverse);
}

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

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

.btn--small {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
}

/* ============================================
   HERO SECTION - Art Gallery Style
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.6) 40%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-3xl);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero__content {
  max-width: 580px;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero__tagline-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform-origin: left;
  animation: lineExpand 0.6s ease 0.5s forwards;
  transform: scaleX(0);
}

@keyframes lineExpand {
  to { transform: scaleX(1); }
}

.hero__tagline-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero__title {
  margin-bottom: var(--space-xl);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px) rotateX(-15deg);
  animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top left;
}

.hero__title-line:nth-child(1) { animation-delay: 0.3s; }
.hero__title-line:nth-child(2) { animation-delay: 0.45s; }
.hero__title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero__subtitle {
  max-width: 450px;
  margin-bottom: var(--space-2xl);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__cta--primary {
  padding: var(--space-md) var(--space-xl);
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--color-gold), #e8c97a);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.hero__cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff, var(--color-gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero__cta--primary:hover::before {
  opacity: 1;
}

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

.hero__cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.hero__cta--primary svg {
  transition: transform 0.4s ease;
}

.hero__cta--primary:hover svg {
  transform: translateX(5px);
}

.hero__cta--secondary {
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-sm) 0;
  position: relative;
}

.hero__cta--secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}

.hero__cta--secondary:hover {
  color: var(--color-gold);
}

.hero__cta--secondary:hover::after {
  width: 100%;
}

/* Hero Gallery Visual */
.hero__visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}

.hero__gallery {
  position: relative;
  height: 520px;
  perspective: 1000px;
}

.hero__gallery-item {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__gallery-item--main {
  top: 0;
  left: 10%;
  width: 280px;
  height: 350px;
  z-index: 3;
  opacity: 0;
  transform: translateY(40px) rotate(-3deg);
  animation: galleryItemReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero__gallery-item--secondary {
  top: 60px;
  right: 5%;
  width: 200px;
  height: 260px;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px) rotate(5deg);
  animation: galleryItemReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero__gallery-item--tertiary {
  bottom: 20px;
  left: 25%;
  width: 180px;
  height: 220px;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px) rotate(-2deg);
  animation: galleryItemReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes galleryItemReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
}

.hero__gallery-item--main { --rotate: -3deg; }
.hero__gallery-item--secondary { --rotate: 5deg; }
.hero__gallery-item--tertiary { --rotate: -2deg; }

.hero__gallery-item:hover {
  z-index: 10;
  transform: translateY(-10px) rotate(0deg) scale(1.05);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

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

.hero__gallery-item:hover .hero__gallery-image {
  transform: scale(1.1);
}

.hero__gallery-floating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
}

.hero__gallery-frame {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: frameRotate 30s linear infinite;
}

.hero__gallery-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

@keyframes frameRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.3s forwards;
}

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

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  display: inline;
}

.hero__stat-plus {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeIn 0.8s ease 1.5s forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.3;
  }
}

/* Floating Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 15s ease-in-out infinite;
}

.hero__particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero__particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.hero__particle:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(20px, -30px); opacity: 0.6; }
  50% { transform: translate(-10px, -50px); opacity: 0.3; }
  75% { transform: translate(30px, -20px); opacity: 0.5; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .hero__tagline {
    justify-content: center;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__gallery {
    height: 400px;
  }

  .hero__gallery-item--main {
    left: 50%;
    transform: translateX(-50%) translateY(40px) rotate(0deg);
  }

  .hero__gallery-item--main { --rotate: 0deg; }

  .hero__gallery-item--secondary,
  .hero__gallery-item--tertiary {
    display: none;
  }

  .hero__stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-3xl);
  }

  .hero__container {
    min-height: auto;
    padding-top: var(--space-lg);
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__gallery {
    height: 320px;
  }

  .hero__gallery-item--main {
    width: 240px;
    height: 300px;
  }

  .hero__stats {
    gap: var(--space-xl);
  }

  .hero__scroll {
    display: none;
  }

  .hero__particles {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta--primary {
    width: 100%;
    justify-content: center;
  }

  .hero__gallery-floating {
    display: none;
  }
}

/* ============================================
   CARDS
   ============================================ */

/* Art Card */
.art-card {
  position: relative;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.art-card__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--color-cream);
}

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

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

.art-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background-color: var(--color-terracotta);
  border-radius: var(--radius-sm);
}

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

.art-card__category {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.art-card__title {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.art-card__artist {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.art-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Talent Card */
.talent-card {
  position: relative;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.talent-card__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--color-cream);
}

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

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

.talent-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 20, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.talent-card:hover .talent-card__overlay {
  opacity: 1;
}

.talent-card__quick-action {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.talent-card:hover .talent-card__quick-action {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.talent-card__content {
  padding: var(--space-lg);
  text-align: center;
}

.talent-card__type {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background-color: rgba(139, 105, 20, 0.1);
  border-radius: var(--radius-full);
}

.talent-card__name {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.talent-card__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Event Card */
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.event-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--color-cream);
}

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

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

.event-card__date {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.event-card__day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-forest);
}

.event-card__month {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.event-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
}

.event-card__category {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
}

.event-card__title {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--color-sand);
}

.event-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ============================================
   FEATURED SECTIONS
   ============================================ */
.featured {
  position: relative;
}

.featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.featured__header h2 {
  margin-bottom: 0;
}

.featured__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.featured__link:hover {
  color: var(--color-terracotta);
}

.featured__link svg {
  transition: transform var(--transition-fast);
}

.featured__link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background-color: var(--color-cream);
  overflow: hidden;
}

.page-header__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%231A1814' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-header__content {
  position: relative;
  max-width: 700px;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.page-header__breadcrumb a:hover {
  color: var(--color-terracotta);
}

.page-header__breadcrumb span {
  color: var(--text-muted);
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ============================================
   FILTERS
   ============================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-sand);
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background-color: transparent;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.filter-btn.active {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--text-inverse);
}

/* ============================================
   PRODUCT/DETAIL PAGES
   ============================================ */
.detail-page {
  padding-top: var(--header-height);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.detail-gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.detail-gallery__main {
  aspect-ratio: 4/5;
  margin-bottom: var(--space-md);
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.detail-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery__thumbs {
  display: flex;
  gap: var(--space-md);
}

.detail-gallery__thumb {
  width: 80px;
  height: 80px;
  background-color: var(--color-cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.detail-gallery__thumb:hover,
.detail-gallery__thumb.active {
  opacity: 1;
}

.detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.detail-info__category {
  display: inline-block;
  width: fit-content;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  background-color: rgba(196, 112, 74, 0.1);
  border-radius: var(--radius-full);
}

.detail-info__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.detail-info__artist {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.detail-info__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.detail-info__description {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-sand);
  border-bottom: 1px solid var(--color-sand);
}

.detail-info__description h4 {
  margin-bottom: var(--space-md);
}

.detail-info__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.meta-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-item__value {
  font-size: 1rem;
  color: var(--text-primary);
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background-color: white;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-charcoal);
  box-shadow: 0 0 0 3px rgba(26, 24, 20, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6459' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-charcoal);
  color: var(--text-inverse);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.footer__logo span {
  color: var(--color-terracotta);
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-3px);
}

.footer__column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-terracotta);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a:hover {
  color: var(--text-inverse);
}

@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Stagger Animation for Grids */
.stagger-animate > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-animate.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animate.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-animate.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-animate.visible > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-animate.visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-animate.visible > *:nth-child(6) { transition-delay: 0.35s; }

.stagger-animate.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Art Placeholder */
.placeholder-art {
  background: linear-gradient(
    135deg,
    #E8DFD4 0%,
    #D4C4B0 25%,
    #C4A882 50%,
    #B8956A 75%,
    #A67C52 100%
  );
}

/* Talent Placeholder */
.placeholder-talent {
  background: linear-gradient(
    135deg,
    #F0E8DC 0%,
    #D4C8B8 50%,
    #B8A898 100%
  );
}

/* Event Placeholder */
.placeholder-event {
  background: linear-gradient(
    135deg,
    #DCE8E4 0%,
    #B8D0C8 50%,
    #8BB0A0 100%
  );
}

/* ============================================
   DIRECTORY/LISTING SPECIFIC
   ============================================ */
.directory-card {
  position: relative;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.directory-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: var(--color-cream);
}

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

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

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

.directory-card__type {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.directory-card__type--artist {
  color: var(--color-terracotta);
  background-color: rgba(196, 112, 74, 0.1);
}

.directory-card__type--performer {
  color: var(--color-gold);
  background-color: rgba(139, 105, 20, 0.1);
}

.directory-card__type--venue {
  color: var(--color-forest);
  background-color: rgba(45, 90, 74, 0.1);
}

.directory-card__name {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.directory-card__location {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background-color: var(--color-charcoal);
  color: var(--text-inverse);
  overflow: hidden;
}

.about-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 30% 70%, var(--color-terracotta) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, var(--color-gold) 0%, transparent 40%);
}

.about-hero h1 {
  color: var(--text-inverse);
  max-width: 800px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-section--reverse {
  direction: rtl;
}

.about-section--reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .about-section,
  .about-section--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.about-image {
  aspect-ratio: 4/3;
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

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

.value-card {
  text-align: center;
  padding: var(--space-2xl);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  font-size: 2rem;
}

.value-card h4 {
  margin-bottom: var(--space-md);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4xl);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-item {
  display: flex;
  gap: var(--space-lg);
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.contact-item__content h4 {
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.contact-item__content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-item__content a {
  color: var(--color-terracotta);
  transition: color var(--transition-fast);
}

.contact-item__content a:hover {
  color: var(--color-terracotta-dark);
}

.contact-form {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--space-xl);
}

/* ============================================
   TALENT/PROFILE PAGE SPECIFIC
   ============================================ */
.profile-header {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

@media (max-width: 1024px) {
  .profile-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.profile-image {
  aspect-ratio: 1/1;
  background-color: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (max-width: 1024px) {
  .profile-badges {
    justify-content: center;
  }
}

.profile-badge {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background-color: var(--color-cream);
  color: var(--text-secondary);
}

.profile-badge--primary {
  background-color: var(--color-gold);
  color: white;
}

.profile-stats {
  display: flex;
  gap: var(--space-2xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-sand);
  border-bottom: 1px solid var(--color-sand);
}

@media (max-width: 1024px) {
  .profile-stats {
    justify-content: center;
  }
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Booking Form */
.booking-form {
  background: var(--color-cream);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
}

.booking-form h3 {
  margin-bottom: var(--space-xl);
}

/* Media Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.media-gallery__item {
  aspect-ratio: 1/1;
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.media-gallery__item:hover {
  transform: scale(1.02);
}

.media-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   EVENT DETAIL SPECIFIC
   ============================================ */
.event-header {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-3xl);
  background-color: var(--color-charcoal);
  color: var(--text-inverse);
}

.event-header__category {
  display: inline-block;
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--color-forest);
  border-radius: var(--radius-full);
}

.event-header h1 {
  color: var(--text-inverse);
  margin-bottom: var(--space-xl);
}

.event-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  font-size: 1rem;
}

.event-meta-bar span {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

@media (max-width: 1024px) {
  .event-detail-grid {
    grid-template-columns: 1fr;
  }
}

.event-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sidebar-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.sidebar-card h4 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-sand);
}

.schedule-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-sand);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  min-width: 80px;
  font-weight: 600;
  color: var(--color-forest);
}

.schedule-title {
  color: var(--text-primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ============================================
   ICON PLACEHOLDER (SVG Icons inline)
   ============================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.icon--sm {
  width: 16px;
  height: 16px;
}

.icon--lg {
  width: 24px;
  height: 24px;
}
