/* ============================================================
   Idea Fabriek — Static Site Stylesheet
   Migrated from Tailwind CSS + React components
   ============================================================ */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent pinch-to-zoom (iOS Safari ignores meta viewport) */
html {
  touch-action: manipulation;
}

:root {
  /* Colors */
  --color-primary: #8B5CF6;
  --color-primary-light: #A78BFA;
  --color-secondary: #3B82F6;
  --color-surface: #18181B;
  --color-surface-light: #27272A;
  --color-border: #27272A;
  --color-border-light: #3F3F46;
  --color-muted: #A1A1AA;
  --color-bg: #09090B;
  --color-text: #F4F4F5;
  --color-text-secondary: #D4D4D8;
  --color-text-dim: #71717A;

  /* Zinc scale */
  --zinc-50: #FAFAFA;
  --zinc-100: #F4F4F5;
  --zinc-200: #E4E4E7;
  --zinc-300: #D4D4D8;
  --zinc-400: #A1A1AA;
  --zinc-500: #71717A;
  --zinc-600: #52525B;
  --zinc-700: #3F3F46;
  --zinc-800: #27272A;
  --zinc-900: #18181B;
  --zinc-950: #09090B;

  /* Extra accent colors */
  --amber-400: #FBBF24;
  --amber-500-20: rgba(245, 158, 11, 0.2);
  --orange-500-20: rgba(249, 115, 22, 0.2);
  --emerald-400: #34D399;
  --emerald-500-10: rgba(16, 185, 129, 0.1);
  --emerald-500-20: rgba(16, 185, 129, 0.2);
  --teal-500-20: rgba(20, 184, 166, 0.2);
  --pink-400: #F472B6;
  --pink-500-20: rgba(236, 72, 153, 0.2);
  --purple-500-20: rgba(168, 85, 247, 0.2);
  --violet-500: #8B5CF6;
  --red-400: #F87171;

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--zinc-950);
  color: var(--zinc-100);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ----- Utility Classes ----- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.glass {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(63, 63, 70, 0.4);
}

/* Noise overlay */
.noise-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ----- Scroll-triggered Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — delays applied via CSS vars */
.stagger-container > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-container.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-container.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-container.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-container.visible > *:nth-child(4) { transition-delay: 0.3s; }

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

/* Delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-500 { transition-delay: 0.5s; }

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.navbar.scrolled {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(63, 63, 70, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: opacity 0.2s;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--zinc-100);
}

.nav-cta {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.nav-cta:hover {
  background-color: var(--color-primary-light);
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--zinc-400);
  transition: color 0.2s;
}

.lang-switcher-btn:hover {
  color: var(--zinc-100);
}

.lang-switcher-btn svg {
  width: 16px;
  height: 16px;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  border-radius: 8px;
  padding: 4px 0;
  min-width: 80px;
  z-index: 50;
  display: none;
}

.lang-dropdown.open {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--zinc-400);
  transition: color 0.2s, background-color 0.2s;
}

.lang-option:hover {
  color: var(--zinc-100);
  background-color: rgba(39, 39, 42, 0.5);
}

.lang-option.active {
  color: var(--color-primary);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  color: var(--zinc-400);
  transition: color 0.2s;
  padding: 4px;
}

.mobile-toggle:hover {
  color: var(--zinc-100);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  border-radius: 0 0 16px 16px;
  padding: 24px;
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile .nav-link {
  display: block;
  padding: 8px 0;
  font-size: 1rem;
}

.nav-mobile-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .mobile-toggle { display: none; }
}

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

.hero .glow-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--color-primary);
  top: -200px;
  right: -100px;
}

.hero .glow-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--color-secondary);
  bottom: -150px;
  left: -100px;
}

.hero .glow-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--violet-500);
  top: 40%;
  left: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 96px 24px 0;
  text-align: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--zinc-400);
  margin-bottom: 32px;
}

.hero-tagline svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  background-color: var(--color-primary);
  color: white;
  font-weight: 500;
  transition: background-color 0.2s;
}

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

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  color: var(--zinc-300);
  font-weight: 500;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--color-border-light);
  color: var(--zinc-100);
}

.scroll-indicator {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.scroll-indicator a {
  color: var(--zinc-600);
  transition: color 0.2s;
}

.scroll-indicator a:hover {
  color: var(--zinc-400);
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3.75rem; }
  .hero-description { font-size: 1.25rem; }
  .hero-buttons { flex-direction: row; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 6rem; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  position: relative;
  padding: 128px 24px;
}

.portfolio-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.section-label {
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  margin-top: 16px;
  margin-bottom: 16px;
}

.section-description {
  color: var(--color-muted);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-bottom: 64px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
}

.project-card:hover,
.project-card:active {
  border-color: var(--color-border-light);
}

.project-card-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.project-card:hover .project-card-gradient,
.project-card:active .project-card-gradient {
  opacity: 1;
}

.project-card-gradient.amber {
  background: linear-gradient(to bottom right, var(--amber-500-20), var(--orange-500-20));
}

.project-card-gradient.emerald {
  background: linear-gradient(to bottom right, var(--emerald-500-20), var(--teal-500-20));
}

.project-card-gradient.pink {
  background: linear-gradient(to bottom right, var(--pink-500-20), var(--purple-500-20));
}

.project-card-body {
  position: relative;
  padding: 32px;
}

.project-category {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-category.amber { color: var(--amber-400); }
.project-category.emerald { color: var(--emerald-400); }
.project-category.pink { color: var(--pink-400); }

.project-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-title svg {
  width: 20px;
  height: 20px;
  color: var(--zinc-600);
  transition: all 0.2s;
}

.project-card:hover .project-title svg,
.project-card:active .project-title svg {
  color: var(--zinc-300);
  transform: translate(2px, -2px);
}

.project-description {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.project-preview {
  position: relative;
  border-radius: 12px;
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid var(--color-border);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-preview-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-preview-center .inner {
  text-align: center;
}

.project-preview-center svg {
  width: 32px;
  height: 32px;
  color: var(--zinc-700);
  margin: 0 auto 12px;
}

.project-preview-center span {
  font-size: 0.875rem;
  color: var(--zinc-600);
  font-family: var(--font-mono);
}

.project-phone {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: 144px;
  border-radius: 12px;
  border: 2px solid rgba(63, 63, 70, 0.5);
  background: rgba(24, 24, 27, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.project-card:hover .project-phone,
.project-card:active .project-phone {
  opacity: 0.6;
}

.project-phone-notch {
  width: 40px;
  height: 4px;
  border-radius: 9999px;
  background: var(--zinc-700);
  position: absolute;
  top: 8px;
}

.project-hover-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(139, 92, 246, 0.05);
}

.project-card:hover .project-hover-glow,
.project-card:active .project-hover-glow {
  opacity: 1;
}

@media (min-width: 640px) {
  .project-card-body { padding: 40px; }
}

@media (min-width: 640px) {
  .section-title { font-size: 3rem; }
}

@media (min-width: 768px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  padding: 128px 24px;
}

.about .glow-orb {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: 20%;
  right: -200px;
}

.about-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 16px;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.about-description {
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Values cards */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s;
  cursor: pointer;
}

.value-card:hover {
  border-color: var(--color-border-light);
}

.value-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  padding: 12px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.value-card:hover .value-icon {
  background: rgba(139, 92, 246, 0.2);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.value-description {
  color: var(--color-muted);
  line-height: 1.75;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .about-title { font-size: 3rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  padding: 128px 24px;
}

.contact .glow-orb {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  bottom: -100px;
  left: -100px;
}

.contact-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 16px;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.contact-description {
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  padding: 12px;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-info-icon.primary {
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-primary);
}

.contact-info-icon.emerald {
  background: var(--emerald-500-10);
  color: var(--emerald-400);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text {
  color: var(--zinc-300);
}

/* Form */
.contact-form {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--zinc-400);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--zinc-900);
  border: 1px solid var(--color-border);
  color: var(--zinc-100);
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--zinc-600);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
}

.form-textarea {
  resize: none;
  min-height: 140px;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red-400);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.form-error svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  border-radius: 12px;
  background-color: var(--color-primary);
  color: white;
  font-weight: 500;
  transition: background-color 0.2s;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.form-submit:hover {
  background-color: var(--color-primary-light);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Honeypot */
.honeypot {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Success state */
.contact-success {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  min-height: 400px;
}

.contact-success svg {
  width: 48px;
  height: 48px;
  color: var(--emerald-400);
}

.contact-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--zinc-100);
}

.contact-success p {
  color: var(--color-muted);
  max-width: 24rem;
}

.contact-success button {
  margin-top: 16px;
  padding: 8px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  color: var(--zinc-300);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.contact-success button:hover {
  border-color: var(--color-border-light);
  color: var(--zinc-100);
}

@media (min-width: 640px) {
  .contact-title { font-size: 3rem; }
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  height: 32px;
  width: auto;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-copyright {
  color: var(--zinc-600);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--zinc-500);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--zinc-300);
}

@media (min-width: 640px) {
  .footer-inner { flex-direction: row; }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .stagger-container > * {
    opacity: 1;
    transform: none;
  }
}
