/* ══════════════════════════════════════════
   MAIN CSS — גיא מרעלי - אילוף כלבים
   Style: Premium Dark + Gold
   Font: Assistant (Google Fonts)
   ══════════════════════════════════════════ */

:root {
  /* ── Colors (from brief) ── */
  --color-accent:       #C9A84C;
  --color-accent-hover: #B8963E;
  --color-accent-soft:  rgba(201, 168, 76, 0.15);
  --color-accent-rgb:   201, 168, 76;

  --color-primary:   #C9A84C;
  --color-secondary: #1C1508;

  /* ── Backgrounds ── */
  --bg-primary:     #FAFAFA;
  --bg-primary-rgb: 250, 250, 250;
  --bg-secondary:   #F3F0EB;
  --bg-dark:        #1C1508;
  --bg-dark-rgb:    28, 21, 8;
  --bg-darkest:     #0F0B04;

  /* ── Text ── */
  --text-primary:    #1A1A1A;
  --text-secondary:  #5A5A5A;
  --text-muted:      #8A8A8A;
  --text-on-accent:  #0F0B04;
  --text-on-dark:    #F5F0E8;

  /* ── Borders ── */
  --border-color:      rgba(0, 0, 0, 0.08);
  --border-color-dark: rgba(255, 255, 255, 0.08);

  /* ── Typography ── */
  --font-heading: 'Assistant', sans-serif;
  --font-body:    'Assistant', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;

  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;
  --text-4xl:  clamp(40px, 5vw, 56px);
  --text-hero: clamp(48px, 8vw, 96px);

  /* ── Spacing ── */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 128px;

  /* ── Design ── */
  --border-radius:    16px;
  --border-radius-sm: 8px;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:  0 12px 40px rgba(0, 0, 0, 0.14);
  --transition-fast:   0.22s ease;
  --transition-medium: 0.36s ease;
  --container-max: 1200px;
}

/* ══════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════ */

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

html {
  direction: rtl;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background: var(--bg-primary);
  text-align: right;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  max-width: 65ch;
  line-height: var(--line-height-base);
}

::placeholder {
  text-align: right;
  direction: rtl;
}

input, textarea, select {
  text-align: right;
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */

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

.section {
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.section--light {
  background: var(--bg-primary);
}

.section--alt {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section--darkest {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
}

/* Section tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  border: 1px solid var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.section--dark .section-tag {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin: 0 auto;
}

.section--dark .section-header p {
  color: rgba(245, 240, 232, 0.7);
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-accent-soft);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.btn-dark:hover {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
  transform: translateY(-2px);
}

.btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn--loading .btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* Mobile buttons */
@media (max-width: 767px) {
  .btn { width: 100%; min-height: 52px; }
  .btn-group { flex-direction: column; }
}

/* ══════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════ */

.card {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  border: 0.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid var(--border-color-dark);
  backdrop-filter: blur(12px);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* ══════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════ */

.field {
  position: relative;
  margin-bottom: var(--space-md);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.field input.error,
.field textarea.error {
  border-color: #DC2626;
}

.field-error {
  color: #DC2626;
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

/* Floating label */
.field label {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: var(--text-base);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast);
  background: var(--bg-primary);
  padding: 0 4px;
}

.field textarea ~ label {
  top: 14px;
  transform: none;
}

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-38px);
  font-size: var(--text-sm);
  color: var(--color-accent);
}

.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-22px);
}

/* Dark section forms */
.section--dark .field input,
.section--dark .field textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-on-dark);
}

.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .field label {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}

.section--dark .field input:focus ~ label,
.section--dark .field input:not(:placeholder-shown) ~ label,
.section--dark .field textarea:focus ~ label,
.section--dark .field textarea:not(:placeholder-shown) ~ label {
  color: var(--color-accent);
}

.section--dark .field input:focus,
.section--dark .field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

/* Form success */
.form-success {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  animation: fadeInUp 0.36s ease;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(var(--bg-primary-rgb), 0.85);
  border-bottom: 0.5px solid var(--border-color);
  transition: height var(--transition-medium), box-shadow var(--transition-medium), background var(--transition-medium);
}

.site-header.scrolled {
  height: 56px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-accent);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.22s;
}

.site-logo:hover .logo-text {
  color: var(--color-accent-hover, var(--color-accent));
}

.site-logo img,
.site-logo svg {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo svg {
  height: 40px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--text-base);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

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

.main-nav a.active {
  color: var(--color-accent);
}

.header-cta {
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text-primary);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  transform: translateX(100%);
  transition: transform var(--transition-medium);
  z-index: 1001;
  padding: var(--space-xl) var(--space-lg);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .close-btn {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: var(--space-sm);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.mobile-nav a {
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: 500;
  display: block;
  text-align: center;
}

.mobile-nav a.active {
  color: var(--color-accent);
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  padding-top: calc(80px + var(--space-xl));
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 11, 4, 0.85) 0%, rgba(15, 11, 4, 0.4) 50%, rgba(15, 11, 4, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content .section-tag {
  margin-bottom: var(--space-lg);
}

.hero-content h1 {
  font-size: var(--text-hero);
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero-content h1 .accent {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(56px + var(--space-lg));
  }

  .hero-content h1 {
    font-size: clamp(36px, 10vw, 56px);
  }
}

/* Inner page hero */
.hero--inner {
  min-height: auto;
  padding-block: var(--space-2xl);
  padding-top: calc(80px + var(--space-xl));
}

.hero--inner.hero--text-only {
  background: var(--bg-dark);
}

.hero--inner .hero-content h1 {
  font-size: var(--text-4xl);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.site-footer {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
  padding-block: var(--space-xl);
}

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

.footer-logo {
  height: auto;
  width: auto;
  max-width: 200px;
}

.footer-logo.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.6);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
  max-width: 360px;
}

.footer-col h4 {
  color: var(--color-accent);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  color: rgba(245, 240, 232, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 240, 232, 0.7);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--text-on-accent);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-bottom a {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   FLOATING BUTTONS
   ══════════════════════════════════════════ */

.floating-btns {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.floating-btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.floating-btn--phone {
  background: var(--color-accent);
  color: var(--text-on-accent);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════ */

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mx-auto { margin-left: auto; margin-right: auto; }

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

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

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

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: var(--space-md);
}

.breadcrumbs a {
  color: rgba(245, 240, 232, 0.6);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs span {
  margin: 0 var(--space-sm);
}

/* Decorative elements */
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Touch targets — min-height: 44px minimum (M-33) */
button, .btn, a.btn, [role="button"], .floating-btn {
  min-height: 44px;
  min-width: 44px;
}

/* Input font-size 16px minimum — prevents iOS auto-zoom */
input, textarea, select {
  font-size: 16px;
}

/* Navigation centered on all breakpoints — justify-content: center (M-28, M-53) */
.main-nav { justify-content: center; text-align: center; }
.main-nav ul { justify-content: center; text-align: center; }
.mobile-nav ul { justify-content: center; text-align: center; align-items: center; }
.mobile-nav a { display: block; text-align: center; }
.nav-mobile-menu { text-align: center; align-items: center; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
