@charset "UTF-8";
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation survol icônes sociales */
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, color 180ms ease;
}
.social a .icon {
  transition: transform 180ms ease, color 180ms ease;
}
.social a:hover {
  color: #c62828;
  transform: scale(1.1) rotate(-10deg);
}
.social a:hover .icon {
  transform: scale(1.15);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
  }
}
@keyframes glow-intense {
  0%, 100% {
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  }
}
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/**
 * EXEMPLES D'UTILISATION:
 * 
 * 1. Transition rapide
 *    transition: all $transition-fast;
 *
 * 2. Animation hover avec lift
 *    &:hover {
 *      transform: translateY(-$lift-md);
 *      box-shadow: 0 $shadow-distance-lg 40px 
 *                  rgba($color-red, $shadow-opacity-md);
 *    }
 *
 * 3. Glow effect
 *    box-shadow: 0 0 $glow-size-md rgba($color-red, $glow-opacity-normal),
 *                0 0 40px rgba($color-red, $glow-opacity-subtle);
 *
 * 4. Glass morphism
 *    backdrop-filter: blur($glass-blur) saturate($glass-saturation);
 *    background: rgba(245, 245, 245, $glass-opacity-light);
 *
 * 5. Gradient dégradé
 *    background: linear-gradient($gradient-diagonal, 
 *                                $color-red 0%, 
 *                                #ff6b6b 100%);
 *
 * 6. Stagger animation
 *    &:nth-child(1) { animation-delay: $delay-item-1; }
 *    &:nth-child(2) { animation-delay: $delay-item-2; }
 *
 * 7. Smooth easing
 *    transition: all $duration-slow $easing-smooth;
 */
/**
 * QUICK PRESETS:
 * 
 * Hover-lift standard:
 *   transform: translateY(-$lift-md);
 *   box-shadow: 0 $shadow-distance-lg calc($shadow-distance-lg * 2) 
 *               rgba($color-red, $shadow-opacity-md);
 *   transition: all $transition-mid $easing-smooth;
 *
 * Glow intense:
 *   box-shadow: 0 0 $glow-size-lg rgba($color-red, $glow-opacity-intense);
 *
 * Glass subtle:
 *   backdrop-filter: blur($blur-md);
 *   background: rgba(245, 245, 245, $glass-opacity-light);
 *   border: 1px solid rgba(245, 245, 245, 0.12);
 *
 * Scale hover:
 *   transform: scale($scale-hover);
 *   transition: transform $transition-normal $easing-smooth;
 */
/**
 * POUR MOBILE:
 * Réduire les animations:
 *
 * $duration-fast: 100ms;        // Plus rapide
 * $lift-md: 4px;                // Moins de déplacement
 * $blur-md: 5px;                // Moins de blur
 * $glow-opacity-normal: 0.15;   // Glow plus subtil
 *
 * Pour désactiver les animations:
 *   @media (prefers-reduced-motion: reduce) {
 *     $duration-fast: 0ms;
 *     animation: none !important;
 *   }
 */
/**
 * 🎯 BEST PRACTICES:
 *
 * 1. Toujours utiliser ces variables pour la cohérence
 * 2. Préférer transform et opacity (GPU accelerated)
 * 3. Éviter les animations trop longues (>500ms)
 * 4. Utiliser ease-out pour les entrées, ease-in pour les sorties
 * 5. Tester sur mobile pour éviter les lag
 * 6. Respecter prefers-reduced-motion
 * 7. Garder les animations subtiles et élégantes
 *
 * 🚫 À ÉVITER:
 * - Animer width/height (utiliser transform: scale)
 * - Animer left/top (utiliser transform: translate)
 * - Animer position (mauvaise performance)
 * - Animations >3 secondes (trop long)
 * - Blur intense (pixellisation)
 * - Trop d'ombres simultanées
 *
 * ✅ À PRIVILÉGIER:
 * - transform (translateX, translateY, scale, rotate)
 * - opacity
 * - filter (brightness, grayscale)
 * - box-shadow (avec modération)
 * - clip-path
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button, input, textarea {
  font: inherit;
}

body {
  background: #191919;
  color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  background: #c62828;
  color: #f5f5f5;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1200;
  transition: top 180ms ease;
}
.skip-link:focus {
  top: 10px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: calc(4rem + 1rem) 0;
  }
}

.section--alt {
  background: #161616;
}

.section__header {
  margin-bottom: 2rem;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .section__header {
    padding: 0;
  }
}
.section__header h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem;
}
.section__header p {
  margin: 0;
  opacity: 0.85;
  max-width: 60ch;
}

.text-muted {
  opacity: 0.8;
}

.text-red {
  background: linear-gradient(90deg, #c62828, rgb(222.1428571429, 92.3571428571, 92.3571428571), #c62828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-white {
  color: rgb(245, 245, 245) !important;
}

.section__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* LOADER - Page Load Animation */
.loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.85s ease-out, visibility 0.85s ease-out;
}
.loader.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
  }
}
@keyframes glow-intense {
  0%, 100% {
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  }
}
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.btn {
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #c62828 0%, #ff6b6b 100%);
  color: #f5f5f5;
  box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(198, 40, 40, 0.3);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 350ms ease;
}
.btn:hover::after {
  left: 100%;
}
.btn:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #c62828 100%);
  color: #ffffff;
}
.btn:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}
.btn:active {
  transform: translateY(-2px);
}
.btn i {
  transition: transform 350ms ease;
}
.btn:hover i {
  transform: translateX(3px);
}

.btn--primary {
  background: linear-gradient(135deg, #c62828 0%, #ff6b6b 100%);
  color: #f5f5f5;
  box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #c62828 100%);
  box-shadow: 0 15px 30px rgba(198, 40, 40, 0.4);
}

.btn--secondary {
  background: transparent;
  color: #c62828;
  border: 2px solid #c62828;
  box-shadow: none;
  position: relative;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #c62828;
  border-radius: 2px;
  transition: left 350ms ease;
}
.btn--secondary:hover::before {
  left: 0;
}
.btn--secondary:hover {
  background: rgba(198, 40, 40, 0.1);
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.3);
}

.btn--outline {
  background: transparent;
  color: #f5f5f5;
  border: 2px solid rgba(245, 245, 245, 0.3);
  box-shadow: 0 0 0 1px rgba(245, 245, 245, 0.1);
  position: relative;
}
.btn--outline::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #c62828;
  border-radius: 2px;
  transition: left 350ms ease;
}
.btn--outline:hover::before {
  left: 0;
}
.btn--outline:hover {
  border-color: #c62828;
  color: #c62828;
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.3);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  color: #ffffff;
  border: 2px solid rgba(37, 211, 102, 0.5);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #149a4c 100%);
  border-color: rgba(37, 211, 102, 0.8);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}
.btn--whatsapp:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}

.btn--ghost {
  background: transparent;
  color: #f5f5f5;
  box-shadow: none;
  padding: 14px 20px;
}
.btn--ghost:hover {
  background: rgba(198, 40, 40, 0.08);
  color: #c62828;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--wide {
  width: 100%;
  padding: 16px 28px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 245, 245, 0.06);
  border: 1px solid rgba(245, 245, 245, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 350ms ease;
}
.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(198, 40, 40, 0.15);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
  }
}
@keyframes glow-intense {
  0%, 100% {
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  }
}
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 245, 245, 0.08);
  border: 1px solid rgba(245, 245, 245, 0.12);
  transition: all 350ms ease;
  border-radius: 16px;
  transition: all 350ms ease;
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, transparent, #c62828, transparent) border-box;
  border: 1px solid transparent;
  background: rgba(245, 245, 245, 0.02);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(198, 40, 40, 0.2);
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.card:hover::after {
  opacity: 1;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 40, 40, 0.5);
  box-shadow: 0 20px 40px rgba(198, 40, 40, 0.2);
}
.card:hover::before {
  opacity: 1;
}

.card__title {
  background: linear-gradient(135deg, #f5f5f5 0%, #c62828 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.card__text {
  margin: 0 0 16px;
  opacity: 0.85;
  line-height: 1.6;
}

.card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card--image {
  overflow: hidden;
  padding: 0;
}
.card--image .card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.card--image:hover .card__image {
  transform: scale(1.05);
}
.card--image .card__content {
  padding: 24px;
}

.card--minimal {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(25, 25, 25, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.08);
  border: 1px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, #c62828, transparent) border-box;
}
.card--minimal:hover {
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, #c62828, #ff6b6b) border-box;
}

.card--interactive {
  transition: all 350ms ease;
  cursor: pointer;
}
.card--interactive:hover {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.3), 0 0 40px rgba(198, 40, 40, 0.15);
  border-color: rgba(198, 40, 40, 0.5);
}
.card--interactive:hover {
  border-color: #c62828;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: var(--icon) no-repeat center/contain;
  -webkit-mask: var(--icon) no-repeat center/contain;
}

.icon--team {
  --icon: url("../assets/icons/team.svg");
}

.icon--scisors {
  --icon: url("../assets/icons/scisors.svg");
}

.icon--medal {
  --icon: url("../assets/icons/medal.svg");
}

.icon--clock {
  --icon: url("../assets/icons/clock.svg");
}

.icon--instagram {
  --icon: url("../assets/icons/instagram-brands-solid-full.svg");
}

.icon--tiktok {
  --icon: url("../assets/icons/tiktok-brands-solid-full.svg");
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
  }
}
@keyframes glow-intense {
  0%, 100% {
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  }
}
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
a {
  position: relative;
  position: relative;
  transition: color 350ms ease;
  color: inherit;
  text-decoration: none;
  transition: color 350ms ease;
}
a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #c62828, #ff6b6b, #c62828);
  border-radius: 2px;
  transition: width 350ms ease;
}
a:hover::after {
  width: 100%;
}
a:hover {
  color: #c62828;
}

.link {
  position: relative;
  position: relative;
  transition: color 350ms ease;
  color: #f5f5f5;
  position: relative;
  font-weight: 500;
}
.link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #c62828, #ff6b6b, #c62828);
  border-radius: 2px;
  transition: width 350ms ease;
}
.link:hover::after {
  width: 100%;
}
.link:hover {
  color: #c62828;
}
.link:hover {
  color: #c62828;
}

.link--slide {
  position: relative;
  color: #f5f5f5;
  position: relative;
}
.link--slide::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #c62828;
  border-radius: 2px;
  transition: left 350ms ease;
}
.link--slide:hover::before {
  left: 0;
}
.link--slide:hover {
  color: #c62828;
}

.link--glow {
  position: relative;
  color: #f5f5f5;
}
.link--glow::before {
  content: "";
  position: absolute;
  inset: -2px 0;
  background: rgba(198, 40, 40, 0.1);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: -1;
}
.link--glow:hover {
  color: #c62828;
}
.link--glow:hover::before {
  opacity: 1;
}

.link--border {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, transparent, #c62828, transparent) border-box;
  border: 1px solid transparent;
  padding: 4px 8px;
  border-radius: 4px;
  position: relative;
}
.link--border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.link--border:hover::after {
  opacity: 1;
}
.link--border:hover {
  color: #c62828;
}

.link--shine {
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  color: #f5f5f5;
}
.link--shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 350ms ease;
}
.link--shine:hover::after {
  left: 100%;
}
.link--shine:hover {
  color: #c62828;
}

.nav-link {
  position: relative;
  color: #f5f5f5;
  position: relative;
  font-weight: 500;
  padding: 8px 0;
  transition: color 350ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #c62828, #ff6b6b, #c62828);
  border-radius: 2px;
  transition: width 350ms ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover, .nav-link.active {
  color: #c62828;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.link-btn {
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  position: relative;
  overflow: hidden;
  transition: all 350ms ease;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(198, 40, 40, 0.3);
  color: #c62828;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
.link-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(198, 40, 40, 0.3);
}
.link-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 350ms ease;
}
.link-btn:hover::after {
  left: 100%;
}
.link-btn i {
  transition: transform 350ms ease;
}
.link-btn:hover {
  background: rgba(198, 40, 40, 0.1);
  border-color: #c62828;
  color: #c62828;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.2);
}
.link-btn:hover i {
  transform: translateX(3px);
}

.footer-link {
  position: relative;
  color: rgba(245, 245, 245, 0.8);
  position: relative;
  transition: color 350ms ease;
}
.footer-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: #c62828;
  border-radius: 2px;
  transition: left 350ms ease;
}
.footer-link:hover::before {
  left: 0;
}
.footer-link:hover {
  color: #c62828;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.breadcrumb a {
  position: relative;
  color: #f5f5f5;
}
.breadcrumb a:hover {
  color: #c62828;
}
.breadcrumb .breadcrumb__separator {
  color: rgba(245, 245, 245, 0.5);
}
.breadcrumb .breadcrumb__current {
  color: #c62828;
  font-weight: 600;
}

.link--external {
  position: relative;
}
.link--external::after {
  content: "↗";
  margin-left: 4px;
  display: inline-block;
  transition: transform 350ms ease;
}
.link--external:hover::after {
  transform: translateX(2px) translateY(-2px);
}

a:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  a {
    animation: none !important;
  }
  a:hover {
    animation: none !important;
  }
  a:hover::after {
    animation: none !important;
  }
}
.grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price {
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px;
  border-radius: 16px;
  background: #222222;
  border: 1px solid rgba(245, 245, 245, 0.12);
}
.service-row .service-name {
  font-weight: 600;
}
.service-row .service-desc {
  opacity: 0.8;
  font-size: 0.95rem;
}
.service-row .service-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-row .service-price {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.5px;
  font-size: 1.3rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: none;
  transition: transform 350ms ease, background 350ms ease, border-color 350ms ease, box-shadow 350ms ease, backdrop-filter 350ms ease, opacity 350ms ease;
}
@media (min-width: 768px) {
  .header {
    background: rgba(25, 25, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 245, 245, 0.08);
    box-shadow: 0 4px 8px rgba(198, 40, 40, 0.15);
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    width: 100%;
    left: 0;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }
  .header.header--hidden {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }
  .header.header--scrolled:not(.header--hidden) {
    background: rgba(25, 25, 25, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(245, 245, 245, 0.08) !important;
    box-shadow: 0 4px 8px rgba(198, 40, 40, 0.15) !important;
  }
}
.header .header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 1rem;
  min-height: auto;
}
@media (min-width: 576px) {
  .header .header__inner {
    padding: 10px 1.5rem;
    min-height: 85px;
  }
}
@media (min-width: 768px) {
  .header .header__inner {
    padding: 12px 1.5rem;
    min-height: 100px;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.5px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
}
@media (min-width: 768px) {
  .header .logo {
    gap: 12px;
    letter-spacing: 1px;
  }
}
.header .logo img {
  height: clamp(75px, 15vw, 90px);
  width: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}
.header .logo:hover img {
  transform: scale(1.05);
}
.header .logo:hover {
  text-decoration: none;
}
.header .logo span {
  display: none;
}
@media (min-width: 768px) {
  .header .logo span {
    display: inline;
  }
}
.header .logo span.text-white {
  display: none;
}
@media (min-width: 768px) {
  .header .logo span.text-white {
    display: inline;
  }
}
.header .nav {
  display: none;
  gap: 12px;
}
@media (min-width: 768px) {
  .header .nav {
    display: flex;
    gap: 18px;
    align-items: center;
  }
}
.header .nav a {
  opacity: 0.85;
  font-size: 0.95rem;
  transition: opacity 180ms ease, color 180ms ease;
}
.header .nav a:hover {
  opacity: 1;
  color: #c62828;
}
.header .nav a.is-active {
  color: #c62828;
  opacity: 1;
}
.header .header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .header .header__actions {
    gap: 12px;
  }
}
.header .header__actions .btn {
  display: none;
}
@media (min-width: 768px) {
  .header .header__actions .btn {
    display: inline-flex;
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(245, 245, 245, 0.2);
  background: rgba(245, 245, 245, 0.06);
  color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}
.theme-toggle:hover {
  color: #c62828;
  border-color: rgba(198, 40, 40, 0.4);
  background: rgba(198, 40, 40, 0.1);
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}

.theme-toggle__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.header--hidden {
  transform: translateY(-110%);
  opacity: 0;
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  pointer-events: none;
}

.burger {
  display: inline-flex;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: transform 350ms ease;
}
@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

.burger__lines {
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  position: relative;
  display: inline-block;
  transition: background 350ms ease;
}
.burger__lines::before, .burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  transition: transform 350ms ease, top 350ms ease, opacity 350ms ease;
}
.burger__lines::before {
  top: -7px;
}
.burger__lines::after {
  top: 7px;
}

.burger.is-active .burger__lines {
  background: transparent;
}
.burger.is-active .burger__lines::before {
  top: 0;
  transform: rotate(45deg);
}
.burger.is-active .burger__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.98) 0%, rgba(18, 18, 18, 0.96) 55%, rgba(12, 12, 12, 0.98) 100%);
  backdrop-filter: blur(14px);
  color: #f5f5f5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.45s ease, transform 0.55s ease, visibility 0s 0.55s;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(198, 40, 40, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.mobile-menu__panel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2.4vh, 20px);
  overflow: hidden;
  z-index: 1;
}

.mobile-menu__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(10px, 3vh, 28px) 0 clamp(10px, 2vh, 16px);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.mobile-menu__logo {
  width: min(195px, 54vw);
  max-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.mobile-menu__logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 132px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.mobile-menu.is-open .mobile-menu__logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.mobile-menu__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 245, 0.12);
  background: rgba(245, 245, 245, 0.06);
  color: #f5f5f5;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}
.mobile-menu__close:hover {
  background: rgba(198, 40, 40, 0.15);
  border-color: rgba(198, 40, 40, 0.45);
  color: #c62828;
  transform: translateY(-50%) scale(1.04);
}
.mobile-menu__close:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(10px, 2vh, 14px);
  width: min(520px, 92vw);
}
.mobile-menu__nav a {
  padding: 16px 20px;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  text-transform: none;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.78);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 350ms ease, border-color 350ms ease, color 350ms ease, box-shadow 350ms ease;
}
.mobile-menu__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.mobile-menu__nav a:hover {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 245, 245, 0.18);
  transform: translateX(6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}
.mobile-menu__nav a:hover::before {
  transform: translateX(100%);
}
.mobile-menu__nav a:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}

.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) {
  transition-delay: 0.14s;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) {
  transition-delay: 0.26s;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) {
  transition-delay: 0.32s;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) {
  transition-delay: 0.38s;
}

.mobile-menu.is-open .mobile-menu__nav a:nth-child(7) {
  transition-delay: 0.44s;
}

.mobile-menu__cta {
  display: grid;
  gap: 12px;
  width: min(520px, 92vw);
  margin-top: auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.mobile-menu__cta .btn {
  padding: 13px 22px;
  font-size: 0.95rem;
}

.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__logo,
  .mobile-menu__nav a,
  .mobile-menu__cta {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
}
@media (max-height: 760px) {
  .mobile-menu__panel {
    gap: 12px;
    padding-bottom: 1.5rem;
  }
  .mobile-menu__header {
    padding: 10px 0 12px;
  }
  .mobile-menu__logo {
    width: min(160px, 48vw);
    max-height: 96px;
  }
  .mobile-menu__logo img {
    max-height: 96px;
  }
  .mobile-menu__nav {
    gap: 12px;
  }
  .mobile-menu__nav a {
    padding: 14px 18px;
    font-size: 1rem;
  }
  .mobile-menu__cta {
    gap: 10px;
  }
  .mobile-menu__cta .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
/* HERO - Premium Modern Design */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
  }
}
@keyframes glow-intense {
  0%, 100% {
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  }
}
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: drop-shadow(0 0 2px rgba(198, 40, 40, 0.4)) drop-shadow(0 3px 5px rgba(198, 40, 40, 0.2)) drop-shadow(0 6px 20px rgba(255, 107, 107, 0.1));
  box-shadow: 0 4px 8px rgba(198, 40, 40, 0.15) inset;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.5) 0%, rgba(25, 25, 25, 0.7) 50%, rgba(25, 25, 25, 0.95) 100%);
  z-index: 1;
  backdrop-filter: blur(0.5px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(198, 40, 40, 0.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero {
    filter: none;
    box-shadow: none;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.02) 0%, rgba(25, 25, 25, 0.35) 50%, rgba(25, 25, 25, 0.8) 100%);
    backdrop-filter: none;
  }
  .hero::after {
    opacity: 0.6;
  }
}

@keyframes panHorizontal {
  0% {
    transform: translateX(-5%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5%);
  }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) saturate(0.9);
  animation: zoomIn 0.8s ease-out;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) saturate(0.9);
  animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.6) 0%, rgba(25, 25, 25, 0.35) 30%, rgba(198, 40, 40, 0.16) 55%, rgba(25, 25, 25, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding: 4rem 0;
  margin-top: 10vh;
  text-align: center;
  animation: fadeInUp 0.9s ease-out 0.2s both;
  max-width: 900px;
}
@media (max-width: 767px) {
  .hero__content {
    margin-top: 13vh;
  }
}
.hero__content h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin: 0 0 1rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero__content p {
  max-width: 700px;
  opacity: 0.95;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 auto 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.95);
}
.hero__content p strong {
  font-weight: 600;
  color: #c62828;
}
.hero__content .hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin: calc(3rem + 2vh) 0;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .hero__content .hero__actions {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }
}
.hero__content .hero__badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero__content .hero__badges .badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 245, 245, 0.08);
  border: 1px solid rgba(245, 245, 245, 0.12);
  transition: all 350ms ease;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__content .hero__badges .badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(198, 40, 40, 0.2);
}
.hero__content .hero__badges .badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.hero__content .hero__badges .badge:hover::before {
  opacity: 1;
}

.hero__quick {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  animation: fadeInUp 0.9s ease-out 0.4s both;
}
.hero__quick .quick__item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 245, 245, 0.08);
  border: 1px solid rgba(245, 245, 245, 0.12);
  transition: all 350ms ease;
  border-radius: 16px;
  transition: all 350ms ease;
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, transparent, #c62828, transparent) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  background: rgba(25, 25, 25, 0.5);
  border: 1px solid rgba(245, 245, 245, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  position: relative;
}
.hero__quick .quick__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(198, 40, 40, 0.2);
}
.hero__quick .quick__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.hero__quick .quick__item:hover::after {
  opacity: 1;
}
.hero__quick .quick__item:hover {
  background: rgba(25, 25, 25, 0.6);
  border-color: rgba(198, 40, 40, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(198, 40, 40, 0.15);
}
.hero__quick .quick__item:hover .quick__value {
  color: #c62828;
}
.hero__quick .quick__item .quick__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.hero__quick .quick__item .quick__value {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  display: block;
  text-decoration: none;
  transition: color 350ms ease;
}
.hero__quick .quick__item .quick__value:hover {
  color: #c62828;
}
.hero__quick .quick__item .quick__value--red {
  color: #c62828;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer - Modern Premium Design */
.footer {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
  border-top: 1px solid rgba(198, 40, 40, 0.2);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
}
.footer .container {
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer .footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .footer .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .footer .footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "brand brand" "links info" "cta cta";
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .footer .footer__brand {
    grid-area: brand;
  }
  .footer .footer__links {
    grid-area: links;
  }
  .footer .footer__info {
    grid-area: info;
  }
  .footer .footer__info .footer__title {
    margin-bottom: 10px;
  }
  .footer .footer__info .footer__list {
    gap: 6px;
  }
  .footer .footer__info .footer__list li {
    line-height: 1.35;
  }
  .footer .footer__info .footer__list strong {
    margin-bottom: 0;
  }
  .footer .footer__cta {
    grid-area: cta;
  }
}
.footer .footer__brand .footer__logo {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer .footer__brand .footer__logo .text-red {
  color: #c62828;
}
.footer .footer__brand .footer__logo .text-white {
  color: #f5f5f5;
}
.footer .footer__brand .footer__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 20px;
}
.footer .footer__brand .footer__social {
  display: flex;
  gap: 12px;
}
.footer .footer__brand .footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 8px;
  color: #c62828;
  font-size: 20px;
  line-height: 1;
  transition: all 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer .footer__brand .footer__social a:hover {
  background: rgba(198, 40, 40, 0.1);
  border-color: #c62828;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(198, 40, 40, 0.2);
}
.footer .footer__section .footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}
.footer .footer__section .footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer__section .footer__list li {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.6;
  transition: color 260ms;
}
.footer .footer__section .footer__list li a {
  color: rgba(245, 245, 245, 0.75);
  text-decoration: none;
  transition: color 260ms;
}
.footer .footer__section .footer__list li a:hover {
  color: #c62828;
}
.footer .footer__section .footer__list li strong {
  color: #f5f5f5;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.footer .footer__cta .footer__cta-desc {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer .footer__cta .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}
.footer .footer__cta .btn:last-child {
  margin-bottom: 0;
}
.footer .footer__cta .btn--full {
  display: block;
}
.footer .footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.2), transparent);
  margin: 0 0 30px 0;
}
.footer .footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 40, 40, 0.1);
}
.footer .footer__bottom .footer__copyright {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.65);
  margin: 0 0 8px 0;
}
.footer .footer__bottom .footer__mention {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.5);
  margin: 0;
}

/* Salon */
.salon-grid {
  align-items: stretch;
}
.salon-grid .salon-image {
  padding: 0;
  overflow: hidden;
}
.salon-grid .salon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  min-height: 320px;
}

.values {
  display: grid;
  gap: 12px;
  margin-top: 1.5rem;
}

.value__title {
  font-weight: 700;
}

.value__desc {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Galerie */
.gallery {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 245, 0.08);
}
.gallery__item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 350ms ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}

/* Ambiance highlights */
.ambiance-features {
  display: grid;
  gap: 18px;
  margin: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .ambiance-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .ambiance-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .ambiance-features {
    grid-template-columns: 1fr;
  }
}

.ambiance-card {
  background: rgba(25, 25, 25, 0.6);
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  display: grid;
  gap: 10px;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}
.ambiance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 40, 40, 0.45);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.ambiance-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c62828;
  background: rgba(198, 40, 40, 0.18);
  border: 1px solid rgba(198, 40, 40, 0.4);
  font-size: 26px;
}

.ambiance-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5f5f5;
  margin: 0;
}

.ambiance-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.7);
}

/* Reviews */
.review__stars {
  color: #c62828;
  letter-spacing: 1px;
}

.review__text {
  opacity: 0.92;
}

.review__author {
  margin-top: 1rem;
  opacity: 0.75;
}

/* Booking */
.booking {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .booking {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
  }
}
.booking h2 {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.booking p {
  opacity: 0.9;
  margin: 0 0 1.5rem;
}
.booking .booking__left {
  display: grid;
  gap: 12px;
}
.booking .booking__note {
  font-size: 0.9rem;
  opacity: 0.65;
}
.booking .booking__right {
  display: grid;
  gap: 12px;
}
.booking .booking__block {
  background: #2a2a2a;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 16px;
  padding: 14px;
}
.booking .booking__title {
  font-weight: 700;
  margin-bottom: 4px;
}
.booking .booking__text {
  opacity: 0.85;
}
.booking .booking__text a {
  color: #c62828;
}

/* Contact */
.contact-actions {
  margin-top: 1.5rem;
  display: grid;
  gap: 12px;
}
@media (min-width: 576px) {
  .contact-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-row {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.info-row .info-label {
  opacity: 0.75;
}
.info-row .info-value a {
  color: #c62828;
}

.social {
  margin-top: 1.5rem;
  display: flex;
  gap: 12px;
  align-items: center;
}
.social a {
  color: #c62828;
  font-size: 20px;
  line-height: 1;
}

.map-card {
  padding: 0;
  overflow: hidden;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 16px;
}

.reviews-widget {
  background: rgba(245, 245, 245, 0.04);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 1.5rem;
}
.lightbox.is-open {
  display: grid;
}

.lightbox__img {
  width: min(980px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(245, 245, 245, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(25, 25, 25, 0.7);
  border: 1px solid rgba(245, 245, 245, 0.15);
  color: #f5f5f5;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.lightbox__close:hover {
  border-color: rgba(198, 40, 40, 0.35);
  color: #c62828;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 40, 40, 0);
  }
}
@keyframes glow-intense {
  0%, 100% {
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
  }
}
@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.glow-red {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.3);
}

.glow-red-intense {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
}

.glow-sm {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.15);
}

.glow-lg {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
}

.text-gradient {
  background: linear-gradient(135deg, #f5f5f5 0%, #c62828 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-red {
  background: linear-gradient(135deg, #f5f5f5 0%, #c62828 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift-sm {
  transition: all 350ms ease;
}
.hover-lift-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(198, 40, 40, 0.15);
}

.hover-lift-md {
  transition: all 350ms ease;
}
.hover-lift-md:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(198, 40, 40, 0.25);
}

.hover-lift-lg {
  transition: all 350ms ease;
}
.hover-lift-lg:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(198, 40, 40, 0.35);
}

.hover-glow-sm {
  transition: all 350ms ease;
}
.hover-glow-sm:hover {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.2), 0 0 40px rgba(198, 40, 40, 0.1);
  border-color: rgba(198, 40, 40, 0.5);
}

.hover-glow-md {
  transition: all 350ms ease;
}
.hover-glow-md:hover {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.3), 0 0 40px rgba(198, 40, 40, 0.15);
  border-color: rgba(198, 40, 40, 0.5);
}

.hover-glow-lg {
  transition: all 350ms ease;
}
.hover-glow-lg:hover {
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.5), 0 0 40px rgba(198, 40, 40, 0.25);
  border-color: rgba(198, 40, 40, 0.5);
}

.hover-shine {
  position: relative;
  overflow: hidden;
}
.hover-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 350ms ease;
}
.hover-shine:hover::after {
  left: 100%;
}

.hover-scale {
  transition: transform 350ms ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.pulse {
  animation: pulse-glow 2s infinite;
}

.pulse-fast {
  animation: pulse-glow 1.5s infinite;
}

.pulse-slow {
  animation: pulse-glow 3s infinite;
}

.float {
  animation: float-subtle 3s ease-in-out 0s infinite;
}

.float-fast {
  animation: float-subtle 2s ease-in-out 0s infinite;
}

.float-slow {
  animation: float-subtle 4s ease-in-out 0s infinite;
}

.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 245, 245, 0.08);
  border: 1px solid rgba(245, 245, 245, 0.12);
}

.glass-dark {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(25, 25, 25, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.08);
}

.glass-sm {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.12);
}

.glass-lg {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(245, 245, 245, 0.12);
  border: 1px solid rgba(245, 245, 245, 0.12);
}

.border-gradient {
  position: relative;
}
.border-gradient::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #c62828 0%, #ff6b6b 100%);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 350ms ease;
  filter: blur(8px);
}
.border-gradient:hover::before {
  opacity: 0.6;
}

.border-slide {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, transparent, #c62828, transparent) border-box;
  border: 1px solid transparent;
}
.border-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.border-slide:hover::after {
  opacity: 1;
}

.border-slide-red {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(#191919, #191919) padding-box, linear-gradient(135deg, transparent, #c62828, transparent) border-box;
  border: 1px solid transparent;
}
.border-slide-red::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c62828, transparent);
  opacity: 0;
  transition: opacity 350ms ease;
}
.border-slide-red:hover::after {
  opacity: 1;
}

.clip-diagonal {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.clip-skew {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 95%);
}

.rounded-full {
  border-radius: 999px;
}

.rounded-lg {
  border-radius: 22px;
}

.rounded-md {
  border-radius: 16px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-visible {
  overflow: visible;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.hover-opacity-100 {
  transition: opacity 350ms ease;
}
.hover-opacity-100:hover {
  opacity: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.transition-fast {
  transition: all 180ms ease;
}

.transition-mid {
  transition: all 350ms ease;
}

.no-transition {
  transition: none;
}

.translate-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scale-hover {
  transition: transform 350ms ease;
}
.scale-hover:hover {
  transform: scale(1.05);
}

.blur {
  filter: blur(8px);
}

.blur-sm {
  filter: blur(4px);
}

.blur-lg {
  filter: blur(12px);
}

.brightness {
  filter: brightness(1.1);
}

.brightness-dark {
  filter: brightness(0.85);
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.z-auto {
  z-index: auto;
}

.shadow-none {
  box-shadow: none;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.shadow-red {
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

.shadow-red-lg {
  box-shadow: 0 20px 40px rgba(198, 40, 40, 0.2);
}

.disabled,
:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.focus-ring:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
}

.focus-glow:focus-visible {
  outline: 2px solid #c62828;
  outline-offset: 2px;
  box-shadow: 0 0 15px rgba(198, 40, 40, 0.4);
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media (max-width: 991px) {
  .hide-lg {
    display: none;
  }
  .show-lg {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .hide-md {
    display: none;
  }
  .show-md {
    display: block !important;
  }
}
@media (max-width: 575px) {
  .hide-sm {
    display: none;
  }
  .show-sm {
    display: block !important;
  }
}
/* Theme - Light mode overrides */
body.theme-light {
  background: #f6f6f6;
  color: #1a1a1a;
}

body.theme-light .text-white {
  color: #1a1a1a !important;
}

body.theme-light .text-red {
  color: #7a1414;
  background: linear-gradient(90deg, #7a1414, #d01f1f, #7a1414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(122, 20, 20, 0.18);
}

body.theme-light .card__title {
  color: #7a1414;
  background: linear-gradient(90deg, #7a1414, #c62828, #7a1414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px rgba(122, 20, 20, 0.2);
}

body.theme-light .section--alt {
  background: #ededed;
}

body.theme-light .header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

body.theme-light .header.header--scrolled {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

body.theme-light .header.header--hidden {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  body.theme-light .header.header--scrolled:not(.header--hidden) {
    background: rgba(255, 255, 255, 0.75) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06) !important;
  }
}
body.theme-light .burger__lines,
body.theme-light .burger__lines::before,
body.theme-light .burger__lines::after {
  background: #1a1a1a;
}

body.theme-light .card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

body.theme-light .service-row {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .booking__block {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .gallery__item {
  border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .ambiance-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

body.theme-light .ambiance-card__title {
  color: #1a1a1a;
}

body.theme-light .ambiance-card__text {
  color: rgba(26, 26, 26, 0.7);
}

body.theme-light .ambiance-card__icon {
  background: rgba(198, 40, 40, 0.1);
  border-color: rgba(198, 40, 40, 0.3);
  color: #c62828;
}

body.theme-light .reviews-widget {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

body.theme-light .badge {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}

body.theme-light .hero__badges .badge {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(198, 40, 40, 0.08);
}

body.theme-light .hero__badges .badge a {
  color: #c62828;
}

body.theme-light .btn--secondary:hover {
  color: #1a1a1a;
}

body.theme-light .hero {
  filter: none;
  box-shadow: none;
}

body.theme-light .hero::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.4) 100%);
}

body.theme-light .hero__overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(198, 40, 40, 0.05) 55%, rgba(255, 255, 255, 0.38) 100%);
}

body.theme-light .hero__bg {
  filter: brightness(1.05) saturate(1.05);
}

body.theme-light .hero__content p {
  color: rgba(26, 26, 26, 0.9);
}

body.theme-light .footer {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-light .footer .footer__brand .footer__description,
body.theme-light .footer .footer__section .footer__list li,
body.theme-light .footer .footer__section .footer__list li a,
body.theme-light .footer .footer__cta .footer__cta-desc,
body.theme-light .footer .footer__bottom .footer__copyright,
body.theme-light .footer .footer__bottom .footer__mention {
  color: #1a1a1a;
}

body.theme-light .footer .footer__section .footer__list li strong,
body.theme-light .footer .footer__section .footer__title {
  color: #1a1a1a;
}

body.theme-light .footer .footer__brand .footer__logo .text-white,
body.theme-light .footer .text-white {
  color: #1a1a1a;
}

body.theme-light .footer__divider {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), transparent);
}

body.theme-light .footer__social a {
  border-color: rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
}

body.theme-light .footer__social a:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

body.theme-light .mobile-menu {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.96) 55%, rgba(255, 255, 255, 0.98) 100%);
}

body.theme-light .mobile-menu::before {
  background: radial-gradient(circle at 20% 10%, rgba(198, 40, 40, 0.08), transparent 55%);
}

body.theme-light .mobile-menu__header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-light .mobile-menu__close {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
}

body.theme-light .mobile-menu__nav a {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(26, 26, 26, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

body.theme-light .mobile-menu__nav a::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

body.theme-light .mobile-menu__nav a:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
}

body.theme-light .theme-toggle {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
}

body.theme-light .theme-toggle:hover {
  background: rgba(198, 40, 40, 0.12);
  border-color: rgba(198, 40, 40, 0.4);
  color: #c62828;
}/*# sourceMappingURL=main.css.map */