/* ==========================================================================
   GHIS University - Feuille de style principale
   Design : vert profond + or, typographie Fraunces / Manrope
   ========================================================================== */

:root {
  --green-900: #07271e;
  --green-800: #0b3d2e;
  --green-700: #11543f;
  --green-600: #176b50;
  --green-100: #e3efe9;
  --gold-500: #e9a83a;
  --gold-400: #f0b95c;
  --gold-100: #fdf3e2;
  --cream: #faf7f1;
  --white: #ffffff;
  --ink: #14211c;
  --ink-soft: #4d5c55;
  --line: rgba(11, 61, 46, 0.12);
  --shadow-sm: 0 2px 10px rgba(7, 39, 30, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 39, 30, 0.12);
  --shadow-lg: 0 24px 60px rgba(7, 39, 30, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

::selection { background: var(--gold-500); color: var(--green-900); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Accessibilite
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  z-index: 2000;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--green-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  z-index: 3000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}
.preloader__bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold-500);
  border-radius: 3px;
  animation: preloaderSlide 1.1s var(--ease-out) infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(233, 168, 58, 0)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 24px rgba(233, 168, 58, 0.45)); }
}
@keyframes preloaderSlide {
  0% { transform: translateX(-160px); }
  100% { transform: translateX(400px); }
}

/* --------------------------------------------------------------------------
   Barre superieure
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  position: relative;
  z-index: 1055;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  flex-wrap: wrap;
  padding-block: 0.3rem;
}
.topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease;
}
.topbar a:hover { color: var(--gold-400); }
.topbar .icon { width: 14px; height: 14px; fill: var(--gold-500); }
.topbar__social { display: flex; gap: 0.9rem; }

@media (max-width: 860px) {
  .topbar__contacts a:nth-child(3) { display: none; }
  .topbar__social { display: none; }
  .topbar__inner { justify-content: center; }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1060;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-900);
}
.nav__brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold-100), 0 0 0 4px rgba(233, 168, 58, 0.4);
  transition: transform 0.5s var(--ease-spring);
}
.nav__brand:hover img { transform: rotate(-8deg) scale(1.06); }
.nav__brand span em {
  font-style: normal;
  color: var(--gold-500);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__link {
  position: relative;
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover { color: var(--green-700); }
.nav__link:hover::after { width: 55%; }
.nav__link.is-active { color: var(--green-800); }
.nav__link.is-active::after { width: 55%; }
.nav__cta { margin-left: 0.6rem; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1102;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--green-900);
  border-radius: 2px;
  margin: 5.5px 0;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav__toggle { display: block; }
  /* Sur mobile, le backdrop-filter du header ferait du header le bloc conteneur
     du drawer en position:fixed (le confinant a la hauteur du header). On le
     retire donc ici pour que le drawer se refere au viewport (plein ecran). */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 85vw);
    background: var(--green-900);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2.2rem 2.5rem;
    gap: 0.4rem;
    transform: translateX(105%);
    transition: transform 0.5s var(--ease-out);
    z-index: 1100;
    box-shadow: var(--shadow-lg);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    width: 100%;
    padding: 0.8rem 0.4rem;
    opacity: 0;
    transform: translateX(30px);
  }
  .nav__menu.is-open .nav__link {
    animation: menuLinkIn 0.5s var(--ease-out) forwards;
  }
  .nav__menu.is-open .nav__link:nth-child(1) { animation-delay: 0.10s; }
  .nav__menu.is-open .nav__link:nth-child(2) { animation-delay: 0.16s; }
  .nav__menu.is-open .nav__link:nth-child(3) { animation-delay: 0.22s; }
  .nav__menu.is-open .nav__link:nth-child(4) { animation-delay: 0.28s; }
  .nav__menu.is-open .nav__link:nth-child(5) { animation-delay: 0.34s; }
  .nav__link.is-active { color: var(--gold-400); }
  .nav__cta { margin: 1.2rem 0 0; opacity: 0; }
  .nav__menu.is-open .nav__cta { animation: menuLinkIn 0.5s var(--ease-out) 0.4s forwards; }
  .nav__toggle.is-open span { background: var(--white); }
}
@keyframes menuLinkIn {
  to { opacity: 1; transform: translateX(0); }
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 39, 30, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1050;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn .icon { width: 16px; height: 16px; fill: currentColor; transition: transform 0.35s var(--ease-out); }
.btn:hover .icon { transform: translateX(4px); }
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 61, 46, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 61, 46, 0.42);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(233, 168, 58, 0.4);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(233, 168, 58, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-3px);
}
.btn--sm { padding: 0.65rem 1.5rem; font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   Titres de section
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section--tinted { background: var(--white); }
.section--dark {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(233, 168, 58, 0.12), transparent 60%),
    linear-gradient(160deg, var(--green-900), var(--green-800));
  color: rgba(255, 255, 255, 0.85);
}
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.9rem;
}
.section-head__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-head--center .section-head__kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-head__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 0.8rem;
}
.section-head__title em {
  font-style: italic;
  color: var(--green-600);
}
.section-head__lead { color: var(--ink-soft); font-size: 1.05rem; }
.section--dark .section-head__lead { color: rgba(255, 255, 255, 0.75); }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Hero (page d'accueil)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  overflow: hidden;
  background: var(--green-900);
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__slide.is-active .hero__media img {
  animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
  0% { transform: scale(1.14) translate(1.5%, 1%); }
  100% { transform: scale(1); translate: 0 0; }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 39, 30, 0.88) 8%, rgba(7, 39, 30, 0.55) 45%, rgba(7, 39, 30, 0.25) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  max-width: 760px;
  padding-block: 6rem;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-400);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1.3rem;
}
.hero__kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold-500);
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-400), #ffd88a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 600px;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__slide.is-active .hero__kicker,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__text,
.hero__slide.is-active .hero__actions {
  animation: heroRise 0.9s var(--ease-out) both;
}
.hero__slide.is-active .hero__title { animation-delay: 0.15s; }
.hero__slide.is-active .hero__text { animation-delay: 0.3s; }
.hero__slide.is-active .hero__actions { animation-delay: 0.45s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__nav {
  position: absolute;
  z-index: 5;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__dot {
  width: 34px;
  height: 5px;
  border-radius: 5px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background 0.3s ease;
}
.hero__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 5px;
}
.hero__dot.is-active::after {
  animation: dotProgress 8s linear forwards;
}
@keyframes dotProgress {
  to { transform: scaleX(1); }
}
.hero__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}
.hero__arrow:hover { background: var(--gold-500); color: var(--green-900); transform: translateY(-50%) scale(1.08); }
.hero__arrow .icon { width: 18px; height: 18px; fill: currentColor; }
.hero__arrow--prev { left: 1.4rem; }
.hero__arrow--next { right: 1.4rem; }
@media (max-width: 720px) {
  .hero__arrow { display: none; }
}

/* Formes flottantes decoratives */
.floaters { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floaters span {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(233, 168, 58, 0.35);
  animation: floatY 9s ease-in-out infinite;
}
.floaters span:nth-child(1) { width: 90px; height: 90px; top: 18%; right: 12%; animation-delay: 0s; }
.floaters span:nth-child(2) { width: 46px; height: 46px; top: 62%; right: 24%; animation-delay: 1.6s; background: rgba(233, 168, 58, 0.12); border: 0; }
.floaters span:nth-child(3) { width: 26px; height: 26px; top: 32%; right: 34%; animation-delay: 3s; background: rgba(255, 255, 255, 0.1); border: 0; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(8deg); }
}

/* --------------------------------------------------------------------------
   Bandeau assistance
   -------------------------------------------------------------------------- */
.assist {
  position: relative;
  z-index: 3;
  margin-top: -3.2rem;
}
.assist__card {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-500));
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.6rem, 5vw, 3.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.assist__card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.18);
}
.assist__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-900);
}
.assist__title span { font-weight: 400; font-style: italic; }
.assist__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--green-900);
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-spring);
}
.assist__phone:hover { transform: scale(1.04); }
.assist__phone .icon {
  width: 44px;
  height: 44px;
  padding: 12px;
  background: var(--green-900);
  fill: var(--gold-400);
  border-radius: 50%;
  animation: phoneRing 2.4s ease-in-out infinite;
}
@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  6%, 18% { transform: rotate(-14deg); }
  12%, 24% { transform: rotate(12deg); }
  30% { transform: rotate(0); }
}

/* --------------------------------------------------------------------------
   Section A propos
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(233, 168, 58, 0.18), transparent 45%);
}
.about-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.about-media:hover .about-media__frame img { transform: scale(1.05); }
.about-media::before {
  content: "";
  position: absolute;
  inset: auto auto -22px -22px;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 2px 2px, rgba(233, 168, 58, 0.8) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: -1;
}
.about-media__badge {
  position: absolute;
  right: -14px;
  bottom: 26px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation: floatY 7s ease-in-out infinite;
}
.about-media__badge strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-400);
  line-height: 1;
}
.about-media__badge small { font-size: 0.82rem; opacity: 0.85; line-height: 1.35; display: block; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
  margin: 1.4rem 0 2rem;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.about-points .icon {
  width: 20px;
  height: 20px;
  fill: var(--green-600);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .about-points { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Compteurs
   -------------------------------------------------------------------------- */
.stats { position: relative; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), background 0.35s ease;
}
.stat:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); }
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat__value sup { font-size: 0.5em; color: var(--white); }
.stat__label {
  margin-top: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; } .stat { padding: 1.4rem 0.8rem; } }

/* --------------------------------------------------------------------------
   Carrousel horizontal (formations, atouts, blog)
   -------------------------------------------------------------------------- */
.rail-wrap { position: relative; }
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(270px, 30%, 360px);
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.6rem 0.2rem 1.6rem;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail-nav { display: flex; gap: 0.7rem; }
.rail-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}
.rail-nav__btn:hover {
  background: var(--green-800);
  color: var(--white);
  transform: scale(1.08);
  border-color: var(--green-800);
}
.rail-nav__btn .icon { width: 17px; height: 17px; fill: currentColor; }

/* Carte formation */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.card__media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.1) rotate(0.5deg); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 39, 30, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.card:hover .card__media::after { opacity: 1; }
.card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-500);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-800);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  z-index: 1;
}
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-size: 1.28rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}
.card:hover .card__title { color: var(--green-600); }
.card__text { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  margin-top: 1.1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green-700);
  flex-wrap: wrap;
}
.card__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.card__meta .icon { width: 14px; height: 14px; fill: var(--gold-500); }

/* --------------------------------------------------------------------------
   Grille des filieres / atouts
   -------------------------------------------------------------------------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.6rem;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.blog-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-meta .icon { width: 13px; height: 13px; fill: var(--gold-500); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green-700);
  margin-top: 1.1rem;
}
.card__link .icon { width: 15px; height: 15px; fill: currentColor; transition: transform 0.3s var(--ease-out); }
.card__link:hover .icon { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Temoignages
   -------------------------------------------------------------------------- */
.testimonials { position: relative; overflow: hidden; }
.testi-viewport { overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}
.testi-slide {
  flex: 0 0 100%;
  padding: 0.5rem;
}
.testi-card {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  position: relative;
}
.testi-card .icon-quote {
  width: 52px;
  height: 52px;
  fill: var(--gold-500);
  margin: 0 auto 1.2rem;
  display: block;
  opacity: 0.9;
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-style: italic;
  color: var(--green-900);
  line-height: 1.55;
  margin-bottom: 1.6rem;
}
.testi-card figcaption strong {
  display: block;
  font-size: 1.05rem;
  color: var(--green-800);
}
.testi-card figcaption span { font-size: 0.88rem; color: var(--ink-soft); }
.testi-stars { display: flex; justify-content: center; gap: 0.25rem; margin-top: 0.8rem; }
.testi-stars .icon { width: 16px; height: 16px; fill: var(--gold-500); }
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 61, 46, 0.2);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.testi-dot.is-active { width: 30px; border-radius: 6px; background: var(--gold-500); }

/* --------------------------------------------------------------------------
   Marquee partenaires
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink-soft);
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.marquee__item:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.marquee__item img { height: 54px; width: auto; object-fit: contain; }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Hero interne (sous-pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(233, 168, 58, 0.2), transparent 55%),
    linear-gradient(150deg, var(--green-900) 20%, var(--green-800));
  color: var(--white);
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(233, 168, 58, 0.12);
}
.page-hero__title {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 0.9rem;
  animation: heroRise 0.8s var(--ease-out) both;
}
.page-hero__title em { font-style: italic; color: var(--gold-400); }
.page-hero__lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  animation: heroRise 0.8s var(--ease-out) 0.15s both;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  animation: heroRise 0.8s var(--ease-out) both;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .icon { width: 12px; height: 12px; fill: rgba(255, 255, 255, 0.5); }

/* --------------------------------------------------------------------------
   Mission / valeurs
   -------------------------------------------------------------------------- */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--gold-500);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.mission-card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.mission-card p { color: var(--ink-soft); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.value-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease, border-color 0.3s ease;
}
.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 168, 58, 0.5);
}
.value-item .icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 14px;
  background: var(--green-100);
  fill: var(--green-700);
  margin-bottom: 1rem;
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, fill 0.3s ease;
}
.value-item:hover .icon {
  background: var(--gold-500);
  fill: var(--green-900);
  transform: rotate(-8deg) scale(1.08);
}
.value-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-item p { color: var(--ink-soft); font-size: 0.92rem; }

/* Equipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.6rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem 1.2rem 1.6rem;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 4px var(--gold-100), 0 0 0 6px rgba(233, 168, 58, 0.45);
  transition: transform 0.45s var(--ease-spring);
}
.team-card:hover img { transform: scale(1.07); }
.team-card h3 { font-size: 1.1rem; }
.team-card span { font-size: 0.85rem; color: var(--gold-500); font-weight: 700; }

/* --------------------------------------------------------------------------
   Filieres : listes de specialisations
   -------------------------------------------------------------------------- */
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.spec-list li {
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.card:hover .spec-list li { background: var(--gold-100); color: var(--green-900); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.1rem;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.info-card .icon {
  width: 48px;
  height: 48px;
  padding: 13px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  fill: var(--gold-400);
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 0.93rem; display: block; }
.info-card a:hover { color: var(--green-700); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 340px; border: 0; }

/* --------------------------------------------------------------------------
   Formulaires
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4.5vw, 3rem);
}
.form-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.4rem; }
.form-card > p { color: var(--ink-soft); margin-bottom: 1.8rem; font-size: 0.95rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.86rem; color: var(--green-900); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(233, 168, 58, 0.18);
}
.form-legend {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}
.form-legend::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.form-note {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-note.is-visible { display: block; animation: heroRise 0.5s var(--ease-out) both; }
.form-note--ok { background: var(--green-100); color: var(--green-800); border: 1px solid rgba(23, 107, 80, 0.3); }

/* --------------------------------------------------------------------------
   CTA large
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(233, 168, 58, 0.25), transparent 55%),
    linear-gradient(140deg, var(--green-800), var(--green-900));
  color: var(--white);
  padding: clamp(2.5rem, 7vw, 4.5rem);
  text-align: center;
}
.cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  max-width: 680px;
  margin: 0 auto 1rem;
}
.cta h2 em { font-style: italic; color: var(--gold-400); }
.cta p { color: rgba(255, 255, 255, 0.78); max-width: 560px; margin: 0 auto 2rem; }
.cta .floaters span:nth-child(1) { top: 10%; left: 8%; right: auto; }
.cta .floaters span:nth-child(2) { top: 60%; right: 10%; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.footer {
  background:
    radial-gradient(900px 380px at 10% -10%, rgba(233, 168, 58, 0.09), transparent 60%),
    var(--green-900);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
}
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2.5px;
  background: var(--gold-500);
  border-radius: 2px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer__brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer__brand em { font-style: normal; color: var(--gold-400); }
.footer p { font-size: 0.92rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-spring);
}
.footer__social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateY(-4px);
}
.footer__social .icon { width: 16px; height: 16px; fill: var(--white); transition: fill 0.3s ease; }
.footer__social a:hover .icon { fill: var(--green-900); }
.footer__links li { margin-bottom: 0.65rem; }
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}
.footer__links a:hover { color: var(--gold-400); transform: translateX(5px); }
.footer__links .icon { width: 12px; height: 12px; fill: var(--gold-500); }
.footer__contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}
.footer__contact .icon { width: 16px; height: 16px; fill: var(--gold-500); flex-shrink: 0; margin-top: 5px; }
.footer__contact a:hover { color: var(--gold-400); }
.newsletter-form { display: flex; margin-top: 1rem; border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0.85rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  border: 0;
  background: var(--gold-500);
  color: var(--green-900);
  font-weight: 800;
  padding: 0 1.4rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-form button:hover { background: var(--gold-400); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.footer__bottom a { color: var(--gold-400); }
.footer__bottom a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Retour en haut
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--green-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s var(--ease-spring);
  box-shadow: var(--shadow-md);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-500); color: var(--green-900); transform: translateY(-4px); }
.to-top .icon { width: 18px; height: 18px; fill: currentColor; }

/* --------------------------------------------------------------------------
   Animations d'apparition au defilement
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal--left { transform: translateX(-52px); }
.reveal--right { transform: translateX(52px); }
.reveal--zoom { transform: scale(0.88); }
.reveal.is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
