/* ============================================
   CINEMATIC INDIE STUDIO PORTFOLIO
   Art House Visual-First Design
   ============================================ */

/* ============================================
   1. CSS VARIABLES - CINEMATIC PALETTE
   ============================================ */

:root {
  /* Dark & Moody Base Colors */
  --color-bg-dark: #0a0a0a;
  --color-bg-secondary: #1a1a1a;
  --color-bg-tertiary: #2a2a2a;

  /* Warm Accent Colors */
  --color-primary: #ff6b35;
  --color-secondary: #f7931e;
  --color-accent: #ffc857;

  /* Text Colors */
  --color-text-light: #f5f5f5;
  --color-text-muted: #a0a0a0;
  --color-text-dim: #707070;

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

  /* Typography - Cinematic Editorial */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3.5rem;
  --font-size-4xl: 4.5rem;

  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Transitions */
  --transition-fast: 200ms ease-out;
  --transition-base: 400ms ease-out;
  --transition-slow: 600ms ease-out;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-dramatic: 0 16px 48px rgba(0, 0, 0, 0.6);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Container Widths */
  --container-lg: 1400px;
  --container-xl: 1600px;
}

/* ============================================
   2. CSS RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  font-weight: 300;
  line-height: var(--line-height-normal);
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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

/* ============================================
   3. TYPOGRAPHY - CINEMATIC EDITORIAL
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-light);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================
   4. LAYOUT SYSTEM
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

/* ============================================
   5. NAVIGATION - MINIMAL & ELEGANT
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base);
}

.nav.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0.75rem var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--color-secondary);
}

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

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-text-light);
}

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

.nav-link.active {
  color: var(--color-text-light);
}

/* ============================================
   6. HERO SECTION - DRAMATIC & IMMERSIVE
   ============================================ */

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

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

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.65) 40%,
    rgba(255, 107, 53, 0.4) 70%,
    rgba(247, 147, 30, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
  padding: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
}

.hero-title {
  font-size: var(--font-size-4xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: var(--color-text-light);
  font-weight: 400;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--color-primary);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: left var(--transition-base);
  z-index: -1;
}

.hero-cta:hover::before {
  left: 0;
}

.hero-cta:hover {
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* Hero Entrance Animations */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--transition-smooth);
}

.hero-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   7. PROJECTS SECTION - VISUAL-FIRST CINEMATIC
   ============================================ */

.projects {
  background-color: var(--color-bg-dark);
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
  font-size: var(--font-size-3xl);
  letter-spacing: -0.02em;
}

/* Tab Filter Buttons - Minimal & Elegant */
.tab-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-base);
}

.tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-text-light);
  background: rgba(255, 107, 53, 0.05);
}

.tab-btn.active {
  border-color: var(--color-primary);
  color: var(--color-text-light);
  background: rgba(255, 107, 53, 0.1);
}

.tab-btn:focus-visible {
  outline: 1px solid var(--color-primary);
  outline-offset: 4px;
}

/* Projects Grid - Full-Bleed Visual Focus */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* Featured Reel Card - Spans Full Width */
.project-card.featured-reel {
  grid-column: 1 / -1;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.project-card.featured-reel .project-category {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Project Card - Cinematic Hover Overlay */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card.hidden {
  display: none;
}

/* Full-Bleed Thumbnail */
.project-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

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

.project-card:hover .thumbnail-img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

/* Cinematic Overlay - Fades In on Hover */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 1) 0%,
    rgba(10, 10, 10, 0.95) 35%,
    rgba(10, 10, 10, 0.6) 60%,
    rgba(10, 10, 10, 0.2) 80%,
    rgba(10, 10, 10, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm) var(--space-sm) var(--space-md) var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Project Info - Slides Up on Hover */
.project-info {
  transform: translateY(15px);
  transition: transform var(--transition-base);
  width: 100%;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.project-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
}

.project-description {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 100%;
}

/* ============================================
   8. ABOUT SECTION - EDITORIAL LAYOUT
   ============================================ */

.about {
  background: var(--color-bg-secondary);
  padding: var(--space-2xl) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--container-lg);
  margin: 0 auto;
}

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

.profile-img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-dramatic);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  filter: grayscale(20%);
}

.about-text p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.skills {
  margin-top: var(--space-xl);
}

.skills-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.skills-list li {
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-weight: 400;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
  transition: all var(--transition-base);
}

.skills-list li:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* ============================================
   9. CONTACT SECTION - WARM & INVITING
   ============================================ */

.contact {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
  color: var(--color-text-light);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact .section-title {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.contact-subtitle {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-xl);
  color: var(--color-text-muted);
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.contact-email {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.contact-email:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

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

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-4px);
}

.social-link-dribbble:hover {
  background: rgba(234, 76, 137, 0.1);
  border-color: #EA4C89;
  color: #EA4C89;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.availability {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 300;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============================================
   10. FOOTER - MINIMAL
   ============================================ */

.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-dim);
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer p {
  font-size: var(--font-size-sm);
  font-weight: 300;
}

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

.footer-links a {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  transition: color var(--transition-fast);
}

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

/* ============================================
   11. ANIMATIONS & KEYFRAMES
   ============================================ */

/* Float Animation for Scroll Indicator */
@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

/* Pulse Animation for Status Indicator */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 200, 87, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(255, 200, 87, 0);
  }
}

/* Fade In Up Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

/* ============================================
   12. UTILITIES
   ============================================ */

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

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

/* ============================================
   13. MEDIA QUERIES - RESPONSIVE BREAKPOINTS
   ============================================ */

/* Mobile - Max 639px */
@media (max-width: 639px) {
  .nav-logo {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .nav-links {
    gap: var(--space-sm);
  }

  .nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta {
    padding: 0.75rem 2rem;
    font-size: 0.7rem;
  }
}

/* Small Tablets - 640px and up */
@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .project-overlay {
    padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-sm);
  }

  .project-category {
    font-size: 0.75rem;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-description {
    font-size: 0.85rem;
  }
}

/* Tablets - 768px and up */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

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

  .about-content {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
  }

  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .project-overlay {
    padding: var(--space-md) var(--space-md) var(--space-lg) var(--space-md);
  }

  .project-category {
    font-size: 0.75rem;
  }

  .project-title {
    font-size: 1.25rem;
  }

  .project-description {
    font-size: 0.9rem;
  }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  body {
    font-size: var(--font-size-md);
  }

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

  .project-overlay {
    padding: var(--space-md) var(--space-md) var(--space-xl) var(--space-md);
  }

  .project-category {
    font-size: 0.75rem;
  }

  .project-title {
    font-size: 1.5rem;
  }

  .project-description {
    font-size: 0.95rem;
  }
}

/* Large Desktop - 1280px and up */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero-title {
    font-size: 5rem;
  }
}

/* ============================================
   14. VIDEO MODAL/LIGHTBOX
   ============================================ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  z-index: 10000;
  width: 90%;
  max-width: 1200px;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  padding: var(--space-md);
}

.modal.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10001;
}

.modal-close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: rotate(90deg);
}

.modal-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.modal-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dramatic);
}

.modal-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================ */

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

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   FOCUS STYLES FOR ACCESSIBILITY
   ============================================ */

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}
