/* =========================================
   CASTING MAURITANIE — GLOBAL DESIGN SYSTEM
   ========================================= */

:root {
  /* Color Palette */
  --gold: #C9973A;
  --gold-light: #E8C06A;
  --gold-dark: #9A6E1F;
  --cream: #FAF6EF;
  --dark: #0D0D0F;
  --dark-2: #141418;
  --dark-3: #1C1C22;
  --dark-4: #242430;
  --gray-1: #8B8B9A;
  --gray-2: #5A5A6A;
  --gray-3: #2E2E3A;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);

  /* Status Colors */
  --success: #22C55E;
  --success-bg: rgba(34,197,94,0.12);
  --warning: #F59E0B;
  --warning-bg: rgba(245,158,11,0.12);
  --danger: #EF4444;
  --danger-bg: rgba(239,68,68,0.12);
  --info: #3B82F6;
  --info-bg: rgba(59,130,246,0.12);

  /* Typography — Cinema-grade type system */
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Logo-derived accent color: cinematic red */
  --red: #E53E3E;
  --red-dark: #C53030;
  --red-glow: rgba(229,62,62,0.25);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(201,151,58,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --container-max: 1280px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

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

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

ul {
  list-style: none;
}

/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(201,151,58,0.4);
}

.btn-ghost {
  background: var(--white-10);
  color: var(--white-70);
  backdrop-filter: blur(8px);
  border: 1px solid var(--white-10);
}

.btn-ghost:hover {
  background: var(--white-10);
  color: var(--white);
  border-color: var(--white-40);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: var(--white-10);
  border-color: var(--white-70);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-danger {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(239,68,68,0.3);
}

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

.btn-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(34,197,94,0.3);
}

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

.btn-warning {
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid rgba(245,158,11,0.3);
}

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

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  transition: opacity var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.92;
  box-shadow: 0 2px 12px rgba(255,255,255,0.15);
}

/* Fallback text logo (kept for footer only) */
.logo-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.logo-text em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex: 1;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white-70);
  transition: color var(--duration-fast) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration-base) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  color: var(--gray-1);
  font-size: 1rem;
  line-height: 1.7;
}

/* === ARTIST CARDS === */
.artist-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
  position: relative;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,151,58,0.2);
}

.artist-card-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-4);
}

.artist-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.artist-card:hover .artist-card-photo img {
  transform: scale(1.04);
}

.artist-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}

.artist-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-approved {
  background: rgba(34,197,94,0.85);
  color: white;
  backdrop-filter: blur(8px);
}

.badge-featured {
  background: rgba(201,151,58,0.9);
  color: var(--dark);
  backdrop-filter: blur(8px);
}

.badge-available {
  background: rgba(59,130,246,0.85);
  color: white;
  backdrop-filter: blur(8px);
}

.badge-pending {
  background: rgba(245,158,11,0.85);
  color: var(--dark);
}

.badge-rejected {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(239,68,68,0.3);
}

.artist-card-info {
  padding: var(--space-5);
}

.artist-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.artist-card-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.artist-card-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: var(--space-3);
}

.tag-chip {
  padding: 2px 8px;
  background: var(--white-05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--gray-1);
}

.artist-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-1);
  margin-bottom: var(--space-4);
}

.artist-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
}

.artist-card-tagline {
  font-size: 0.82rem;
  color: var(--white-70);
  font-style: italic;
  margin-bottom: var(--space-4);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artist-card-cta {
  width: 100%;
  justify-content: center;
}

/* === FORM ELEMENTS === */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: var(--space-2);
}

.form-label .required {
  color: var(--danger);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.925rem;
  transition: border-color var(--duration-fast) var(--ease),
              box-shadow var(--duration-fast) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B8B9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--dark-3);
}

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

.form-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: var(--space-1);
  display: none;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--danger);
}

.form-input.error + .form-error,
.form-select.error + .form-error,
.form-textarea.error + .form-error {
  display: block;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--gray-1);
  margin-top: 4px;
}

/* === CHECKBOX & RADIO === */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--white-70);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  display: none;
}

.check-box,
.radio-btn {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease);
  margin-top: 2px;
}

.radio-btn {
  border-radius: 50%;
}

.form-check input[type="checkbox"]:checked ~ .check-box,
.form-check input[type="radio"]:checked ~ .radio-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.form-check input[type="checkbox"]:checked ~ .check-box::after {
  content: '✓';
  font-size: 0.72rem;
  font-weight: 700;
}

.form-check input[type="radio"]:checked ~ .radio-btn::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--dark);
  border-radius: 50%;
}

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

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

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

/* === STATUS BADGES === */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-draft { background: var(--white-05); color: var(--gray-1); border: 1px solid rgba(255,255,255,0.1); }
.status-submitted { background: var(--info-bg); color: var(--info); }
.status-review { background: var(--warning-bg); color: var(--warning); }
.status-approved { background: var(--success-bg); color: var(--success); }
.status-rejected { background: var(--danger-bg); color: var(--danger); }
.status-changes { background: rgba(249,115,22,0.12); color: #F97316; }
.status-suspended { background: rgba(139,92,246,0.12); color: #A78BFA; }

/* === TABS === */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--dark-3);
  padding: 4px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-1);
  transition: all var(--duration-fast) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  color: var(--white-70);
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
  }
}

.modal {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-8);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .modal {
    border-radius: var(--radius-xl);
    transform: scale(0.96) translateY(8px);
  }
  .modal-overlay.open .modal {
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--white-05);
  color: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--duration-fast) var(--ease);
}

.modal-close:hover {
  background: var(--white-10);
  color: var(--white);
}

/* === NOTIFICATIONS === */
.notification-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 380px;
  animation: toastIn var(--duration-slow) var(--ease-bounce);
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.warning { border-left: 3px solid var(--warning); }
.toast.info { border-left: 3px solid var(--info); }

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* === PROFILE PHOTO UPLOAD === */
.photo-upload-area {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
}

.photo-upload-area:hover,
.photo-upload-area.dragover {
  border-color: var(--gold);
  background: rgba(201,151,58,0.04);
}

.photo-upload-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
}

.photo-upload-text {
  font-size: 0.875rem;
  color: var(--gray-1);
  line-height: 1.6;
}

.photo-upload-text strong {
  color: var(--gold);
}

/* === PROGRESS BAR === */
.progress-bar-wrap {
  background: var(--dark-4);
  border-radius: var(--radius-full);
  overflow: hidden;
  height: 6px;
}

.progress-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width var(--duration-slow) var(--ease);
}

/* === CARDS / PANELS === */
.card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.card-sm {
  padding: var(--space-4);
}

.card-hover:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow-md);
}

/* === DIVIDER === */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: var(--space-6) 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-1); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

/* === LOADING SPINNER === */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--dark-4);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === EMPTY STATES === */
.empty-state {
  text-align: center;
  padding: var(--space-16);
  color: var(--gray-1);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: var(--space-3);
}

/* === PAGINATION === */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white-70);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}

.page-btn:hover {
  background: var(--dark-4);
  color: var(--white);
}

.page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: var(--space-6);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
  }
  
  .nav-actions .btn-ghost { display: none; }
  
  .section-header { margin-bottom: var(--space-8); }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-2);
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.animate-fade-up {
  animation: fadeUp var(--duration-slow) var(--ease) forwards;
}

.animate-fade-in {
  animation: fadeIn var(--duration-slow) var(--ease);
}

/* === FOOTER === */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand p {
  color: var(--gray-1);
  font-size: 0.875rem;
  margin-top: var(--space-4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-1);
  transition: all var(--duration-fast) var(--ease);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  color: var(--gray-1);
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
  transition: color var(--duration-fast) var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact-info {
  color: var(--gray-1);
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--gray-2);
  font-size: 0.8rem;
}

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}
