/* ================================
   Variables
   ================================ */
:root {
  --orange: #ff6400;
  --black: #000;
  --white: #fff;
  --gray: #f2f2f2;
  --gray-light: #C0C0C0;
  --blue: #0D9AFF;
  --font: 'DM Sans', sans-serif;
  --radius: 15px;
  --px: 16px;
}

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  background: var(--white);
  color: var(--black);
  margin: 0 auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img, video { display: block; max-width: 100%; }

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

.sr-only--focusable:focus-visible {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 12px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
}

.label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 30px;
}
