/* =====================================================================
   Tim Potterson – Magicien Professionnel
   Feuille de style principale (réécriture épurée, sans Tailwind runtime)
   Reproduit fidèlement le rendu du site d'origine.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --gold: #d4af37;
  --purple: #9b59b6;
  --violet: #8b5cf6;
  --blue: #1e3a8a;
  --dark-blue: #0a1628;
  --black: #000000;
  --white: #ffffff;

  --font-heading: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1280px;
  --header-h: 5rem;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }

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

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 1024px) {
  .container { padding-inline: 2rem; }
}

.section { padding-block: 6rem; position: relative; overflow: hidden; }
.bg-black { background: var(--black); }
.bg-dark-blue { background: var(--dark-blue); }

.section-head {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-head .subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.divider {
  width: 6rem;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.icon { width: 3rem; height: 3rem; color: var(--gold); }
.icon-center { display: flex; justify-content: center; margin-bottom: 1.5rem; }

/* decorative blurred blobs */
.blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}
.blob--purple { background: rgba(155, 89, 182, 0.10); }
.blob--gold { background: rgba(212, 175, 55, 0.10); }
.blob--tr { top: 0; right: 0; }
.blob--bl { bottom: 0; left: 0; }
.blob--l { top: 50%; left: 0; }

/* dotted pattern overlay */
.dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.dots--gold { background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px); background-size: 50px 50px; }
.dots--purple { background-image: radial-gradient(circle, var(--purple) 1px, transparent 1px); background-size: 40px 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.btn-gold:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-md { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);   /* fond noir au scroll, comme l'original */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  font-family: var(--font-body);
  font-size: 1.5rem;      /* text-2xl, comme l'original */
  font-weight: 700;
  color: var(--gold);     /* or par défaut */
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.brand:hover { color: var(--purple); }  /* violet au survol */

.main-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .main-nav { display: flex; } }
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--gold); }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-toggle:hover { color: var(--gold); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(155, 89, 182, 0.3);
  padding: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 0.75rem 0.5rem; text-align: left; width: 100%; }
.mobile-nav .btn { margin-top: 0.5rem; }
@media (min-width: 768px) { .mobile-nav { display: none !important; } }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9));
}
.hero-content {
  position: relative;
  z-index: 20;
  padding-inline: 1rem;
  animation: fadeIn 1s ease both;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero .tagline {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
}
.hero .lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero .experience { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }

/* floating particles */
.particles { position: absolute; inset: 0; z-index: 10; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: float linear infinite;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: var(--gold);
  animation: bounce 1.5s infinite;
}

/* =====================================================================
   About
   ===================================================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-photo { position: relative; }
.about-photo .glow {
  position: absolute; inset: 0;
  background: rgba(155, 89, 182, 0.2);
  border-radius: 1rem;
  filter: blur(24px);
  transform: rotate(3deg);
}
.about-photo img {
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-photo img:hover { transform: scale(1.05); }

.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-item { display: flex; align-items: flex-start; gap: 1rem; }
.about-item .icon-sm { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }
.about-item h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.about-item p { color: rgba(255, 255, 255, 0.8); }
.about-item p.italic { font-style: italic; }
.about-item .highlight { color: var(--gold); font-weight: 600; }

.events-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 0.5rem;
}
.events-box h4 { font-size: 1.25rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
.events-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.events-list li { display: flex; align-items: center; gap: 0.5rem; }
.dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.events-list span { color: rgba(255, 255, 255, 0.9); font-size: 0.875rem; }

/* =====================================================================
   Services
   ===================================================================== */
.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  border-radius: 0.75rem;
  border: 2px solid;
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
}
.service-card--purple { background: rgba(155, 89, 182, 0.2); border-color: var(--purple); }
.service-card--purple:hover { background: rgba(155, 89, 182, 0.3); }
.service-card--blue { background: rgba(30, 58, 138, 0.2); border-color: var(--blue); }
.service-card--blue:hover { background: rgba(30, 58, 138, 0.3); }
.service-card--gold { background: rgba(212, 175, 55, 0.2); border-color: var(--gold); }
.service-card--gold:hover { background: rgba(212, 175, 55, 0.3); }
.service-card--violet { background: rgba(139, 92, 246, 0.2); border-color: var(--violet); }
.service-card--violet:hover { background: rgba(139, 92, 246, 0.3); }

.service-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.service-icon {
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: inline-flex;
}
.service-icon svg { width: 32px; height: 32px; color: var(--gold); }
.service-card h3 { font-size: 1.5rem; font-weight: 600; color: var(--white); }
.service-card .desc { color: rgba(255, 255, 255, 0.7); margin-bottom: 1.5rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.check { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.services-cta { text-align: center; margin-top: 4rem; }
.services-cta p { color: rgba(255, 255, 255, 0.7); font-size: 1.125rem; margin-bottom: 1.5rem; }

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 1 / 1;
  /* reset du <button> */
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.gallery-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4) 50%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption .inner { padding: 1rem; text-align: left; }
.gallery-caption .title { display: block; color: var(--white); font-weight: 600; }
.gallery-caption .cat { display: block; color: var(--gold); font-size: 0.875rem; text-transform: capitalize; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-content {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.25s ease;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.8);
}
.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
}
.lightbox-caption .title { display: block; color: var(--white); font-weight: 600; font-size: 1.125rem; }
.lightbox-caption .cat { display: block; color: var(--gold); font-size: 0.875rem; text-transform: capitalize; }
body.lightbox-open { overflow: hidden; }
.gallery-note { text-align: center; margin-top: 3rem; }
.gallery-note p { color: rgba(255, 255, 255, 0.6); font-style: italic; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial {
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(155, 89, 182, 0.3);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.testimonial:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
}
.testimonial-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.quote-icon { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.5rem; }
.stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.testimonial .text { color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; }
.testimonial .author {
  border-top: 1px solid rgba(155, 89, 182, 0.3);
  padding-top: 1rem;
}
.testimonial .author .name { color: var(--white); font-weight: 600; }
.testimonial .author .role { color: var(--gold); font-size: 0.875rem; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.card {
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
}
.card--purple { border: 2px solid rgba(155, 89, 182, 0.3); }
.card--gold { border: 2px solid rgba(212, 175, 55, 0.3); }
.card h3 { font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  transition: color 0.3s ease;
}
a.contact-item:hover { color: var(--gold); }
.contact-item .ic {
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: inline-flex;
  transition: background-color 0.3s ease;
}
a.contact-item:hover .ic { background: rgba(212, 175, 55, 0.3); }
.contact-item .ic svg { width: 24px; height: 24px; }
.contact-item .info { display: flex; flex-direction: column; }
.contact-item .label { display: block; font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.contact-item .value { display: block; font-weight: 600; }
.contact-item .value.break { word-break: break-all; }

.tip {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(155, 89, 182, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(155, 89, 182, 0.3);
}
.tip p { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; }
.tip .font-semibold { font-weight: 600; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field label {
  display: block;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(155, 89, 182, 0.3);
  color: var(--white);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
}
.form-field select option { background: var(--dark-blue); color: var(--white); }
.form-field input[type="date"] { color-scheme: dark; }

.form-status {
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); color: #86efac; }
.form-status.error { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); color: #fca5a5; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(155, 89, 182, 0.3);
  padding-block: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand h3 { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
.footer-brand .italic { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; font-style: italic; margin-bottom: 1rem; }
.footer-brand .muted { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.footer-col h4 { color: var(--white); font-weight: 600; margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-link {
  background: none; border: none; cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-link:hover { color: var(--gold); }
.footer-link svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(155, 89, 182, 0.3);
  padding-top: 2rem;
  margin-top: 2rem;
}
.footer-bottom .row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .footer-bottom .row { flex-direction: row; } }
.footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.footer-bottom .made { display: inline-flex; align-items: center; }
.footer-bottom .made svg { width: 14px; height: 14px; color: var(--gold); margin-inline: 0.25rem; }

/* =====================================================================
   Animations
   ===================================================================== */
@keyframes float {
  0%, 100% { opacity: 0.3; transform: translateY(0) translateX(0); }
  25% { opacity: 0.6; transform: translateY(-20px) translateX(10px); }
  50% { opacity: 0.8; transform: translateY(-40px) translateX(-10px); }
  75% { opacity: 0.6; transform: translateY(-20px) translateX(-15px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-25%); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

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