/* =========================================================================
   Color Hair by Johanna — feuille de style
   Palette premium chaleureuse · mobile-first
   ========================================================================= */

:root {
  --cream:      #FAF6F0;
  --cream-2:    #F3EBE1;
  --copper:     #B8794F;
  --copper-dk:  #9A6038;
  --brown:      #3E2C23;
  --brown-soft: #5A4034;
  --white:      #FFFFFF;
  --text:       #3E2C23;
  --muted:      #7A685C;
  --line:       #E7DBCD;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow:    0 10px 30px rgba(62, 44, 35, 0.08);
  --shadow-lg: 0 20px 50px rgba(62, 44, 35, 0.14);
  --shadow-sm: 0 4px 14px rgba(62, 44, 35, 0.07);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown);
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}

p { margin: 0 0 1em; }

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

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------- Utilitaires */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(56px, 9vw, 110px);
}

.section--tint { background: var(--cream-2); }
.section--brown { background: var(--brown); color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  margin-bottom: 0.35em;
}

.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.section--brown .section-head h2,
.section--brown .eyebrow { color: var(--cream); }
.section--brown .eyebrow { color: #E7C7A8; }
.section--brown .section-head p { color: rgba(250, 246, 240, 0.75); }

/* -------------------------------------------------------------- Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(184, 121, 79, 0.35);
}
.btn--primary:hover { background: var(--copper-dk); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(184, 121, 79, 0.45); }

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--copper);
}
.btn--ghost:hover { background: var(--copper); color: var(--white); transform: translateY(-2px); }

.btn--light {
  background: var(--cream);
  color: var(--brown);
}
.btn--light:hover { background: var(--white); transform: translateY(-2px); }

/* =============================================================== Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--brown);
}
.logo__tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav__list { display: flex; gap: 4px; }
.nav__link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--brown-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover { background: var(--cream-2); color: var(--brown); }

.header .btn--call {
  padding: 11px 20px;
  font-size: 0.92rem;
}

/* Burger (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* =============================================================== Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(62, 44, 35, 0.78) 0%, rgba(62, 44, 35, 0.45) 45%, rgba(184, 121, 79, 0.25) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(70px, 12vw, 120px);
  max-width: 680px;
}
.hero__eyebrow {
  color: #F0D6BC;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  margin-bottom: 0.35em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: rgba(250, 246, 240, 0.92);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* =============================================================== Réassurance */
.assurance {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.assurance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 4vw, 40px);
  padding-block: clamp(34px, 5vw, 52px);
}
.assurance__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.assurance__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--copper);
  display: grid;
  place-items: center;
}
.assurance__icon svg { width: 26px; height: 26px; }
.assurance__item h3 { font-size: 1.12rem; margin-bottom: 3px; }
.assurance__item p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* =============================================================== Prestations */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.service {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #E4CDB6; }
.service--feature {
  background: linear-gradient(160deg, var(--brown) 0%, #59392a 100%);
  color: var(--cream);
  border-color: transparent;
}
.service--feature h3 { color: var(--cream); }
.service--feature .service__price { color: #F0D6BC; }
.service--feature .service__desc { color: rgba(250, 246, 240, 0.82); }

.service__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--white);
  padding: 5px 11px;
  border-radius: 999px;
}
.service__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--copper);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.service--feature .service__icon { background: rgba(250, 246, 240, 0.14); color: #F0D6BC; }
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service__desc { font-size: 0.96rem; color: var(--muted); margin-bottom: 18px; flex: 1; }
.service__price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--copper-dk);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.service--feature .service__price { border-color: rgba(250, 246, 240, 0.2); }

/* =============================================================== Galerie */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--cream-2);
  border: none;
  padding: 0;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 44, 35, 0.55), rgba(62, 44, 35, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }
.gallery__zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.92);
  color: var(--brown);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery__item:hover .gallery__zoom,
.gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: translateY(0); }
.gallery__zoom svg { width: 18px; height: 18px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30, 20, 15, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__caption {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.lightbox__btn {
  position: absolute;
  background: rgba(250, 246, 240, 0.14);
  border: 1px solid rgba(250, 246, 240, 0.3);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.lightbox__btn:hover { background: rgba(250, 246, 240, 0.28); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }

/* =============================================================== Johanna */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(250, 246, 240, 0.94);
  color: var(--brown);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--serif);
  font-style: italic;
  box-shadow: var(--shadow-sm);
}
.about__badge strong { display: block; font-style: normal; color: var(--copper-dk); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.about h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.about__lead { font-size: 1.12rem; color: var(--brown-soft); }
.about__sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--copper-dk);
  margin-top: 10px;
}

/* =============================================================== Avis */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--copper); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review__text { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--brown); margin-bottom: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dk));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
}
.review__name { font-weight: 600; font-size: 0.95rem; }
.review__meta { font-size: 0.82rem; color: var(--muted); }

/* =============================================================== Instagram */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.insta__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(62, 44, 35, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta__icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta__icon svg { width: 30px; height: 30px; }
.insta__item:hover img { transform: scale(1.07); }
.insta__item:hover::after,
.insta__item:hover .insta__icon,
.insta__item:focus-visible .insta__icon { opacity: 1; }
.insta__cta { text-align: center; margin-top: 30px; }

/* =============================================================== Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.contact__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow-sm);
}
.contact__list { display: grid; gap: 22px; margin-bottom: 26px; }
.contact__row { display: flex; gap: 15px; align-items: flex-start; }
.contact__row-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--copper);
  display: grid;
  place-items: center;
}
.contact__row-icon svg { width: 22px; height: 22px; }
.contact__row h3 { font-size: 1rem; margin-bottom: 2px; font-family: var(--sans); font-weight: 700; }
.contact__row a, .contact__row p { color: var(--brown-soft); margin: 0; }
.contact__row a:hover { color: var(--copper-dk); }

.hours { width: 100%; border-collapse: collapse; }
.hours caption {
  text-align: left;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  font-size: 1rem;
}
.hours th, .hours td {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  text-align: left;
}
.hours th { font-weight: 500; color: var(--brown-soft); }
.hours td { text-align: right; color: var(--muted); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours .is-closed td { color: #B24A3C; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  min-height: 360px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* =============================================================== Footer */
.footer {
  background: var(--brown);
  color: rgba(250, 246, 240, 0.8);
  padding-block: clamp(46px, 6vw, 68px) 26px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.14);
}
.footer__brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: 8px; }
.footer__brand p { font-size: 0.95rem; max-width: 320px; }
.footer h4 { color: var(--cream); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { font-size: 0.95rem; transition: color 0.2s ease; }
.footer__links a:hover { color: var(--copper); }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(250, 246, 240, 0.1);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer__social a:hover { background: var(--copper); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.6);
}
.footer__bottom a:hover { color: var(--copper); }

/* =============================================================== Bouton d'appel flottant (mobile) */
.call-fab {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  z-index: 150;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--copper);
  color: var(--white);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(184, 121, 79, 0.5);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.call-fab svg { width: 20px; height: 20px; }
.call-fab.is-visible { transform: translateX(-50%) translateY(0); }

/* =============================================================== Animations scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* =============================================================== Responsive */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; }
  .nav__list, .header .btn--call { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 20px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { display: flex; flex-direction: column; gap: 2px; }
  .nav__link { padding: 13px 12px; border-radius: 12px; font-size: 1.02rem; }
  .header .nav .btn--call { display: inline-flex; margin-top: 12px; }

  .assurance__grid { grid-template-columns: 1fr; gap: 22px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .call-fab { display: inline-flex; }
}

@media (max-width: 420px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* Réglages accessibilité : mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
