/* ==========================================================================
   VILLA DU MÉNHIR — Feuille de style
   --------------------------------------------------------------------------
   Ce fichier contrôle l'apparence du site (couleurs, tailles, espacements).
   Pour changer les couleurs du site, modifie uniquement le bloc ":root"
   juste en dessous. Tout le reste s'adaptera automatiquement.
   ========================================================================== */

:root {
  /* --- COULEURS (modifie ici pour changer tout le site) --- */
  --ocean:      #0e6e7d;   /* bleu-vert principal : boutons, liens */
  --ocean-dark: #0a5461;   /* version foncée (survol des boutons) */
  --brass:      #b08a50;   /* doré/laiton : petits détails, filets */
  --ink:        #15191c;   /* texte principal (presque noir) */
  --muted:      #5f6d75;   /* texte secondaire (gris) */
  --line:       #e6e2da;   /* traits de séparation */
  --sand:       #f7f5f1;   /* fond crème des sections claires */
  --white:      #ffffff;

  /* --- POLICES --- */
  --font-title: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- MESURES --- */
  --header-h: 76px;
  --radius: 3px;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* --------------------------------------------------------------------------
   Réglages de base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--ocean-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.2em; }

/* Décale les ancres (#contact, #galerie…) pour qu'elles ne passent pas
   sous l'en-tête fixe quand on clique dessus. */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 760px; }

section { padding: clamp(64px, 9vw, 120px) 0; }
section.tight { padding: clamp(44px, 6vw, 76px) 0; }
.bg-sand { background: var(--sand); }

/* Petit intitulé au-dessus des titres (ex : « LA MAISON ») */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin: 0 0 1rem;
  display: block;
}

.lead { font-size: 1.15rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  text-align: center;
}

.btn--primary { background: var(--ocean); color: #fff; }
.btn--primary:hover { background: var(--ocean-dark); color: #fff; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--light { background: rgba(255,255,255,.94); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: #fff; color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   En-tête / navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 130; /* doit rester au-dessus du menu mobile (120) */
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}

/* Transparent en haut de la page d'accueil, blanc dès qu'on descend */
.header--transparent { background: transparent; }
.header--solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--line);
}

.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.32rem;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.header--transparent .logo,
.header--transparent .logo small,
.header--transparent .nav__link,
.header--transparent .lang a { color: #fff; }
.header--transparent .logo small { color: rgba(255,255,255,.8); }

.nav { display: flex; align-items: center; gap: 34px; }

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }

.lang { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; letter-spacing: .1em; }
.lang a { color: var(--muted); font-weight: 600; }
.lang a.is-active { color: var(--ocean); }
.header--transparent .lang a.is-active { color: #fff; text-decoration: underline; }
.lang span { color: var(--line); }

.header .btn { padding: 11px 22px; font-size: 0.74rem; }

/* Bouton hamburger (mobile) */
.burger {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 120;
}
.burger span {
  display: block;
  height: 1.5px;
  width: 24px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .3s, opacity .3s, background .3s;
}
.header--transparent .burger span { background: #fff; }
.burger[aria-expanded="true"] span { background: var(--ink); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu plein écran sur mobile */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 var(--gutter);
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
/* Menu mobile ouvert : le logo et la croix repassent en foncé
   pour rester lisibles sur le fond blanc du menu. */
body.nav-open .header .logo { color: var(--ink); }
body.nav-open .header .logo small { color: var(--muted); }
body.nav-open .header .burger span { background: var(--ink); }

.mobile-nav .mobile-lang {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .nav, .header .btn, .header .lang { display: none; }
  .burger { display: block; }
}

/* --------------------------------------------------------------------------
   Bandeau d'accueil (grande photo)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 9vh, 104px);
}
.hero__eyebrow {
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,.92);
}
.hero h1 { color: #fff; margin-bottom: .3em; max-width: 14ch; }
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.93);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero .btn-row { margin-bottom: 8px; }

.scroll-hint {
  position: absolute;
  bottom: 26px; right: var(--gutter);
  z-index: 2;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: ""; width: 44px; height: 1px; background: rgba(255,255,255,.6);
  animation: slide 2.2s ease-in-out infinite;
}
@keyframes slide { 0%,100% { transform: scaleX(.4); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }
@media (max-width: 700px) { .scroll-hint { display: none; } }

/* Bandeau plus court pour les pages intérieures */
.pagehead {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.pagehead__media { position: absolute; inset: 0; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.15) 45%, rgba(0,0,0,.6));
}
.pagehead__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 6vh, 72px);
}
.pagehead h1 { color: #fff; margin-bottom: .2em; }
.pagehead p { color: rgba(255,255,255,.9); max-width: 50ch; margin: 0; }
.pagehead .eyebrow { color: rgba(255,255,255,.85); }

/* --------------------------------------------------------------------------
   Bandeau de chiffres clés
   -------------------------------------------------------------------------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact b {
  display: block;
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.fact span {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 620px) {
  .fact { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 16px; }
  .fact:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   Blocs texte + image en alternance
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.split__media.portrait img { aspect-ratio: 3/4; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* Duo d'images côte à côte */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.duo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 600px) { .duo { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Galerie photos
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.gallery button {
  padding: 0; border: 0; background: none; cursor: zoom-in;
  overflow: hidden; border-radius: var(--radius);
  display: block; position: relative;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.gallery button:hover img { transform: scale(1.05); }
.gallery button.tall img { aspect-ratio: 3/4; }
.gallery button.wide { grid-column: span 2; }
.gallery button.wide img { aspect-ratio: 16/9; }
@media (max-width: 620px) { .gallery button.wide { grid-column: span 1; } }

/* Visionneuse plein écran */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12,14,16,.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90svh; object-fit: contain; border-radius: 2px; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 0; color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute; bottom: 22px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,.75);
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
@media (max-width: 700px) {
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
  .lightbox__prev, .lightbox__next { width: 42px; height: 42px; }
}

/* --------------------------------------------------------------------------
   Cartes (chambres, activités)
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.card__media { overflow: hidden; border-radius: var(--radius); margin-bottom: 20px; }
.card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.card:hover .card__media img { transform: scale(1.04); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card__tag {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; display: block; margin-bottom: 8px;
}

/* Mentions des auteurs des photos (obligatoire pour les photos Wikimedia) */
.photo-credits {
  margin: 34px 0 0;
  font-size: .78rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: .85;
}
.photo-credits a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.photo-credits a:hover { color: var(--ocean); }

/* --------------------------------------------------------------------------
   Listes d'équipements
   -------------------------------------------------------------------------- */
.amenities {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px 32px;
}
.amenities li {
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: .96rem;
}
.amenities li::before {
  content: "";
  position: absolute; left: 0; top: 21px;
  width: 12px; height: 1px;
  background: var(--brass);
}

/* Liste des distances (page Découvrir) */
.distances { list-style: none; padding: 0; margin: 0; }
.distances li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.distances b { font-weight: 500; font-size: 1.02rem; }
.distances span {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Encadré réservation
   -------------------------------------------------------------------------- */
.booking-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
}
.booking-box h3 { margin-bottom: .4em; }

/* Emplacement réservé au calendrier SuperHote */
.calendar-slot {
  border: 1px dashed var(--brass);
  border-radius: var(--radius);
  background: var(--sand);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  color: var(--muted);
}
.calendar-slot strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step;
  padding: 0 0 26px 56px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 36px; height: 36px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--brass);
}
.steps li b { display: block; margin-bottom: 2px; }
.steps li span { color: var(--muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   Citation / avis
   -------------------------------------------------------------------------- */
.quote {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 24px;
}
.quote-author {
  text-align: center;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Bandeau d'appel à l'action
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(80px, 12vw, 150px) 0;
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: rgba(10,14,18,.55); }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.9); max-width: 48ch; margin-inline: auto; }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ocean);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list small {
  display: block;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact-list a, .contact-list strong { font-size: 1.05rem; font-weight: 500; }

.map-embed {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: clamp(56px, 7vw, 88px) 0 32px;
  font-size: .92rem;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }
.footer .logo, .footer h4 { color: #fff; }
.footer h4 {
  font-family: var(--font-body);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer__bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* --------------------------------------------------------------------------
   Apparition douce au défilement
   --------------------------------------------------------------------------
   Sécurité : l'effet ne s'applique que si le JavaScript a bien démarré
   (classe "js" ajoutée sur la page). Sans JavaScript, tout reste visible.
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
