/* ============================================================
   F. A Corporativo — Homepage styles
   ============================================================ */

:root {
  /* ---- Brand palette (Manual de Identidad · Gama Cromática) ----
     Azul marino  RGB 26/41/73   #1a2949
     Dorado       RGB 234/196/132 #eac484
     Índigo       RGB 17/30/48   #111e30
     Blanco       RGB 255/255/255 #ffffff                               */
  --indigo: #111e30;   /* darkest brand blue */
  --navy:   #1a2949;   /* primary brand blue */
  --gold:   #eac484;   /* brand gold */
  --white:  #ffffff;   /* brand white */

  /* Elevated surface: brand navy lifted slightly for cards/inputs.
     Stays within the brand blue family (same hue), never an off-brand tone. */
  --navy-elevated: #21315a;

  /* Semantic aliases mapped onto the four brand colors */
  --navy-950: var(--indigo);        /* deepest sections, footer, overlays */
  --navy-900: var(--navy);          /* primary page / section background */
  --navy-800: var(--indigo);        /* alternating dark sections */
  --navy-700: var(--navy-elevated); /* cards, form panel, hovers */
  --navy-600: var(--navy-elevated);
  --gold-light: #f1d6a6;            /* gold, gently lifted for hover only */
  --text: var(--white);
  --text-muted: rgba(255, 255, 255, .64); /* brand white, lowered opacity */

  /* Brand typography (self-hosted): Times LT Std (titles) · Avenir (body).
     Generic families only as a load-time fallback. See assets/css/fonts.css. */
  --font-serif: "Times LT Std", Times, "Times New Roman", Georgia, serif;
  --font-sans: "Avenir", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --radius: 4px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Clip horizontal overflow at the root (mobile scrolls the html element,
     so body overflow-x alone leaks). Stops AOS fade-left/right transforms
     from creating a pannable area wider than the viewport. */
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background-color: var(--navy-900);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--navy-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

h1, h2, h3, h4 { font-family: var(--font-serif); letter-spacing: -.01em; }

a { text-decoration: none; transition: color .25s ease; }

.text-gold { color: var(--gold); }
.text-gold-link { border-bottom: 1px solid rgba(234, 196, 132, .4); }
.text-gold-link:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* ---------- Shared section primitives ---------- */
.section { padding: 6rem 0; }
.container { max-width: var(--maxw); }

.eyebrow {
  display: inline-block;
  position: relative;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 10px;
  margin-bottom: 1.5rem;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.title-rule--wide { width: 200px; }

.lead-muted { color: var(--text-muted); margin-bottom: 1.1rem; }

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy-950);
  font-weight: 500;
  letter-spacing: .02em;
  padding: .7rem 1.8rem;
  border-radius: var(--radius);
  transition: transform .2s ease, background .25s ease, box-shadow .25s ease;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234, 196, 132, .28);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .6rem 1.6rem;
  border-radius: var(--radius);
  background: transparent;
  font-weight: 500;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-950);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.fa-navbar {
  background: transparent;
  padding: 1.2rem 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.fa-navbar.scrolled {
  background: rgba(17, 30, 48, .92);
  backdrop-filter: blur(8px);
  padding: .65rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.fa-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.fa-brand__img {
  height: 72px;
  width: auto;
  display: block;
  transition: height .35s ease;
}
.fa-navbar.scrolled .fa-brand__img { height: 44px; }

.fa-nav .nav-link {
  color: var(--text);
  font-size: .92rem;
  letter-spacing: .03em;
  margin: 0 .35rem;
  position: relative;
}
.fa-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .28s ease;
}
.fa-nav .nav-link:hover,
.fa-nav .nav-link.active { color: var(--gold); }
.fa-nav .nav-link:hover::after,
.fa-nav .nav-link.active::after { width: 100%; }

.navbar-toggler { border-color: rgba(234, 196, 132, .5); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23eac484' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--indigo);
}
/* Background lives in its own layer so its slow Ken-Burns zoom never
   nudges the overlay or the headline. Gives the hero a cinematic, modern feel. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/img/hero.jpg") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.18) translate3d(-1.6%, -1.2%, 0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 30, 48,.92) 0%, rgba(17, 30, 48,.72) 45%, rgba(17, 30, 48,.4) 100%),
              linear-gradient(0deg, var(--navy) 0%, rgba(17, 30, 48,0) 38%);
}
/* A soft gold light slowly sweeps across the hero every few seconds. */
.hero__sheen {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 0;
  width: 45%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(100deg,
              transparent 0%,
              rgba(234, 196, 132, .14) 42%,
              rgba(234, 196, 132, .22) 50%,
              rgba(234, 196, 132, .14) 58%,
              transparent 100%);
  mix-blend-mode: screen;
  transform: translateX(-150%) skewX(-14deg);
  animation: heroSheen 13s ease-in-out 3s infinite;
}
@keyframes heroSheen {
  0%   { transform: translateX(-150%) skewX(-14deg); opacity: 0; }
  12%  { opacity: 1; }
  58%  { opacity: 1; }
  100% { transform: translateX(360%) skewX(-14deg); opacity: 0; }
}
.hero__inner { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 9vh; }
.hero__content { max-width: 640px; }
.hero__title {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  letter-spacing: .02em;
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.section--about { background: var(--indigo); }
.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   POR QUÉ ELEGIR
   ============================================================ */
.section--why { background: #07111f; }
.feature { padding: 1rem .5rem; }
.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 1.1rem;
  transition: transform .3s ease;
}
.feature__icon img { height: 3rem; width: auto; display: block; }
.feature:hover .feature__icon { transform: translateY(-5px); }
.feature__title {
  display: inline-block;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(234, 196, 132, .55);
}
.feature__text { color: var(--text-muted); font-size: .92rem; max-width: 280px; margin: 0 auto; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.section--services { background: var(--indigo); }
.fa-carousel { border-radius: var(--radius); overflow: hidden; }
.service-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
  background-image: linear-gradient(90deg, rgba(17, 30, 48,.9) 0%, rgba(17, 30, 48,.45) 55%, rgba(17, 30, 48,.15) 100%), var(--bg);
  background-size: cover;
  background-position: center;
}
.service-card__body { padding: 3rem; max-width: 460px; }
.service-card__title { font-size: 1.9rem; margin-bottom: .8rem; }
.service-card__text { color: rgba(255, 255, 255, .82); margin-bottom: 1.4rem; }

.fa-carousel .carousel-control-prev,
.fa-carousel .carousel-control-next {
  width: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
}
.fa-carousel .carousel-control-prev { left: 1.75rem; }
.fa-carousel .carousel-control-next { right: 1.75rem; }
.fa-carousel__ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(7, 17, 31, .65);
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  transition: background .25s ease, transform .25s ease;
}
.fa-carousel__ctrl--next { background: var(--gold); }
.carousel-control-prev:hover .fa-carousel__ctrl { background: rgba(7, 17, 31, .9); }
.carousel-control-next:hover .fa-carousel__ctrl--next { background: var(--gold-light); }

.fa-indicators {
  position: static;
  align-items: center;
  margin: 1.6rem 0 0;
}
.fa-indicators [data-bs-target] {
  box-sizing: border-box;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(234, 196, 132, .5);
  background: transparent;
  opacity: 1;
  margin: 0 7px;
  transition: width .3s ease, height .3s ease, background .25s ease, border-color .25s ease;
}
.fa-indicators .active {
  width: 38px;
  height: 2px;
  border: 0;
  border-radius: 2px;
  background: var(--gold);
}

/* ============================================================
   CONTACTO
   ============================================================ */
.section--contact { background: var(--indigo); }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1.2rem;
  padding-left: 0;
}
.contact-list__label {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--gold); }
.contact-social { display: inline-flex; gap: .9rem; font-size: 1.3rem; margin-top: .3rem; }
.contact-social a { color: var(--text); }
.contact-social a:hover { color: var(--gold); }

.contact-form {
  background: rgba(255, 255, 255, .015);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 2.75rem;
}
.contact-form__title {
  position: relative;
  font-size: 1.9rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1rem;
}
.contact-form__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 2px;
  background: rgba(234, 196, 132, .43);
}
.contact-form .form-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .35rem;
}
/* Underline-style inputs (textarea keeps a full box, like the design). */
.contact-form .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(234, 196, 132, .5);
  border-radius: 0;
  color: var(--text);
  padding: .5rem 0;
}
.contact-form .form-control:focus {
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
  color: var(--text);
}
.contact-form textarea.form-control {
  border: 1px solid rgba(234, 196, 132, .5);
  border-radius: var(--radius);
  padding: .75rem .9rem;
}
.contact-form textarea.form-control:focus { border-color: var(--gold); }
.contact-form .form-control::placeholder { color: rgba(255, 255, 255, .38); }
.form-feedback { margin: .9rem 0 0; font-size: .9rem; color: var(--gold); min-height: 1.2rem; }

/* ============================================================
   MAPA
   ============================================================ */
.section-map { line-height: 0; }
.section-map #map {
  width: 100%;
  height: 380px;
  border: 0;
  background: var(--indigo);
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.section--testimonials { background: var(--navy); }
.testimonial {
  border: 1px solid rgba(234, 196, 132,.25);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  height: 100%;
  text-align: center;
  margin: 0;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--navy-700);
}
.testimonial__stars { display: flex; justify-content: center; gap: .3rem; margin-bottom: 1rem; }
.testimonial__stars img { height: 1.05rem; width: auto; display: block; }
.testimonial__quote {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
.testimonial__author { color: var(--text); font-weight: 600; font-size: .95rem; }

/* Give the hover lift room inside the carousel's overflow:hidden box so the
   card's top border isn't clipped; negative margin keeps the layout in place. */
#testimoniosCarousel .carousel-inner {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: -12px;
  margin-bottom: -12px;
}

/* Testimonials carousel nav: gold-dash + hollow-circle indicators, trailing arrow. */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.testimonial-nav .fa-indicators {
  position: static;
  margin: 0;
}
.testimonial-next {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .25s ease, color .25s ease;
}
.testimonial-next:hover { transform: translateX(4px); color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.fa-brand--footer .fa-brand__img { height: 150px; }
.footer__site { color: var(--text-muted); font-size: .9rem; margin: 2rem 0 0; letter-spacing: .03em; }

.footer__heading {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .6rem; }
.footer__list a { color: var(--text-muted); font-size: .9rem; }
.footer__list a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255, 255, 255, .42);
  font-size: .8rem;
}

/* ============================================================
   LEGAL (aviso de privacidad)
   ============================================================ */
.legal { padding: 9rem 0 5rem; background: var(--indigo); }
.legal__head { margin-bottom: 2.5rem; }
.legal__body { max-width: 760px; }
.legal__body h2 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 2.2rem 0 .8rem;
}
.legal__body p { color: var(--text-muted); margin: 0 0 1.1rem; }
.legal__body ul { color: var(--text-muted); margin: 0 0 1.1rem; padding-left: 1.2rem; }
.legal__body li { margin-bottom: .5rem; }
.legal__body a { color: var(--gold); }
.legal__body a:hover { color: var(--gold-light); }
.legal__updated { font-size: .85rem; margin-top: 2rem; }

/* ============================================================
   404
   ============================================================ */
.section--404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  background: var(--indigo);
}
.error-404__code {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: clamp(4.5rem, 14vw, 9rem);
  line-height: 1;
  margin: 0 0 .5rem;
}
.error-404__text { max-width: 480px; margin: 0 auto 1.8rem; }
.error-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INTERIOR PAGES (servicios · nosotros · contacto)
   ============================================================ */

/* Page hero banner */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 7rem 0 3rem;
  background: var(--hero, none) center/cover no-repeat, var(--indigo);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  /* Subtle filter over the photo: light, even indigo veil, easing into the
     section below at the very bottom to avoid a hard seam. */
  background: linear-gradient(180deg, rgba(17, 30, 48, .34) 0%, rgba(17, 30, 48, .38) 68%, var(--indigo) 100%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero__subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* Stacked service rows (servicios + nosotros vision/misión) */
.section--services-list { background: var(--indigo); }
/* Visión / Misión: full-bleed photo background for the whole section. */
.section--vision {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 540px;
  padding: 6rem 0;
  background-image:
    /* top fade into the previous (indigo) section, bottom into the next (#07111f) */
    linear-gradient(180deg, var(--indigo) 0%, rgba(17, 30, 48, 0) 18%, rgba(7, 17, 31, 0) 82%, #07111f 100%),
    linear-gradient(90deg, rgba(17, 30, 48, .9) 0%, rgba(17, 30, 48, .7) 35%, rgba(17, 30, 48, .4) 65%, rgba(17, 30, 48, .25) 100%),
    var(--bg);
  background-size: cover;
  background-position: center;
}
.vision-banner__body { max-width: 540px; }
.vision-block + .vision-block { margin-top: 2rem; }
.vision-block .service-card__title {
  display: inline-block;
  padding-bottom: .6rem;
  margin-bottom: .9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(234, 196, 132, .55);
}

.service-row {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  scroll-margin-top: 110px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(26, 41, 73, .98) 0%, rgba(26, 41, 73, .92) 32%, rgba(26, 41, 73, .5) 62%, rgba(26, 41, 73, .08) 90%, rgba(26, 41, 73, 0) 100%),
    var(--bg);
  background-size: cover;
  background-position: center;
}
.service-row:last-child { margin-bottom: 0; }

/* Gold text link ("Contáctanos") */
.text-link {
  display: inline-block;
  margin-top: .4rem;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: opacity .25s ease;
}
.text-link:hover { color: var(--gold); opacity: .75; }

/* CTA "Estamos listos" band */
.section--cta {
  background: #111e30;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.cta__title { margin-bottom: 1.6rem; }
.cta__info { margin-top: 0; }
.cta__info li:last-child { margin-bottom: 0; }

/* Contacto page — larger gold info blocks */
.contact-block { margin-bottom: 1.8rem; }
.contact-block__title { font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }
.contact-block__title::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: rgba(234, 196, 132, .5);
  margin-top: .5rem;
}
.contact-block p { color: var(--text-muted); margin: 0 0 .25rem; }
.contact-block a { color: var(--text-muted); }
.contact-block a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .fa-navbar { background: rgba(17, 30, 48,.95); padding: .7rem 0; }
  .navbar-collapse { padding-top: 1rem; }
  .fa-nav .nav-link { margin: .2rem 0; }
}

@media (max-width: 767.98px) {
  .section { padding: 4rem 0; }
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero__overlay {
    background: linear-gradient(0deg, rgba(17, 30, 48,.95) 0%, rgba(17, 30, 48,.55) 100%);
  }
  .service-card { min-height: 400px; }
  .service-card__body { padding: 1.6rem; }
  .footer { text-align: center; }
  .footer .col-6 { width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .fa-brand--footer { display: flex; justify-content: center; width: 100%; margin: 0 0 1rem; }
  .fa-brand--footer .fa-brand__img { height: 110px; }

  .page-hero { min-height: 58vh; padding-top: 6rem; }
  .service-row {
    min-height: 320px;
    background-image:
      linear-gradient(90deg, rgba(26, 41, 73, .97) 0%, rgba(26, 41, 73, .9) 60%, rgba(26, 41, 73, .6) 100%),
      var(--bg);
  }
  .section--vision { min-height: 460px; }
}

.w-md-auto { width: 100%; }
@media (min-width: 768px) { .w-md-auto { width: auto !important; } }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
