/* ════════════════════════════════════════════════════
   OH LALA LOCKERS — CSS Principal
   Mobile-first | Premium Navy & Gold
   ════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy-900: #060e1a;
  --navy-800: #0D1B2A;
  --navy-700: #152236;
  --navy-600: #1a2f4a;
  --navy-500: #1e3a5f;
  --navy-400: #2a4d76;
  --gold-500: #C9A84C;
  --gold-400: #d9bc6a;
  --gold-300: #e8d090;
  --gold-100: #fdf6e3;
  --white:    #FFFFFF;
  --off-white:#F7F4EE;
  --gray-100: #f2f4f7;
  --gray-200: #e5e9ef;
  --gray-400: #9aa5b4;
  --gray-600: #627080;
  --text-dark:#1a2030;
  --text-mid: #445566;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.14);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.2);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --header-h: 64px;

  --container: 1140px;
  --container-narrow: 780px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--navy-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── BARRE DE LANGUE ── */
.lang-bar {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: sticky;
  top: 0;
  z-index: 200;
}
.lang-bar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.lang-bar__item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
  letter-spacing: .3px;
}
.lang-bar__item:hover { color: var(--gold-400); }
.lang-bar__item--active { color: var(--gold-500); }
.lang-bar__name { display: none; }
@media (min-width: 640px) { .lang-bar__name { display: inline; } }

/* ── HEADER ── */
.header {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.12);
  position: sticky;
  top: 34px;
  z-index: 150;
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  top: 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}
.header__logo-fallback { display: none; }
.footer__logo {
  mix-blend-mode: lighten;
  height: 44px;
  width: auto;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 900px) { .header__nav { display: flex; } }

.header__nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: .2px;
}
.header__nav-link:hover { color: var(--gold-400); background: rgba(201,168,76,.06); }

.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
@media (min-width: 900px) { .header__burger { display: none; } }
.header__burger:hover { background: rgba(201,168,76,.08); }
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.open .header__burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger.open .header__burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 140;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__link:hover { color: var(--gold-400); padding-left: 12px; }
.mobile-menu__cta { margin-top: 16px; text-align: center; justify-content: center; }
.mobile-menu__langs {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.mobile-menu__lang {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.mobile-menu__lang:hover, .mobile-menu__lang--active { color: var(--gold-400); }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201,168,76,.06);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--gray-200);
}
.btn--outline-dark:hover {
  border-color: var(--gold-500);
  color: var(--navy-800);
  background: var(--gold-100);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(30,62,95,.5) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.hero__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .5;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: heroFadeIn .8s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: heroFadeIn .8s .1s ease both;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.5px;
  animation: heroFadeIn .8s .2s ease both;
}
.hero__title span { color: var(--gold-500); font-style: italic; }
.hero__subtitle {
  font-size: clamp(16px, 4vw, 20px);
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  animation: heroFadeIn .8s .3s ease both;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
  animation: heroFadeIn .8s .4s ease both;
}
@media (min-width: 480px) { .hero__ctas { flex-direction: row; justify-content: center; } }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  animation: heroFadeIn .8s .5s ease both;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.hero__trust-item svg { color: var(--gold-500); flex-shrink: 0; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  margin: 0 auto;
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ── SECTIONS ── */
.section { padding: 80px 20px; }
.section--dark { background: var(--navy-800); }
.section--light { background: var(--off-white); }
.container { max-width: var(--container); margin: 0 auto; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section--dark .section-title { color: var(--white); }
.section--light .section-title { color: var(--navy-800); }
.section-title__line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: 0 auto 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 540px;
  margin: 0 auto;
}
.section--dark .section-subtitle { color: rgba(255,255,255,.5); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.25);
  transform: translateY(-3px);
}
.feature-card__icon { font-size: 32px; margin-bottom: 16px; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card__desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── PRICES GRID ── */
.prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .prices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .prices-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.price-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.price-card--featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.price-card--featured:hover { transform: scale(1.02) translateY(-4px); }

.price-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 var(--radius-xl) 0 var(--radius-md);
}
.price-card__icon { font-size: 40px; margin-bottom: 12px; }
.price-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.price-card__desc { font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.price-card__dims { font-size: 12px; color: var(--gray-400); margin-bottom: 20px; font-family: monospace; }
.price-card__prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.price-card__price { display: flex; flex-direction: column; align-items: center; }
.price-card__amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}
.price-card__period { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }
.price-card__price--day .price-card__amount { color: var(--gold-500); }
.price-card__sep { font-size: 18px; color: var(--gray-200); margin-top: -8px; }
.price-card__cta { width: 100%; justify-content: center; }

.prices-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-600);
}
.prices-note svg { color: var(--gold-500); flex-shrink: 0; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 1px; } }
@media (min-width: 1020px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  display: flex;
  gap: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(201,168,76,.1);
  background: rgba(255,255,255,.03);
  transition: background var(--transition);
}
@media (min-width: 1020px) { .step { flex-direction: column; gap: 16px; } }
.step:hover { background: rgba(201,168,76,.05); }

.step__number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,168,76,.12);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
  min-width: 64px;
}
.step:hover .step__number { color: rgba(201,168,76,.25); }
.step__content {}
.step__icon { font-size: 28px; margin-bottom: 12px; }
.step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step__desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

.steps__cta-wrap { text-align: center; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gold-300); }
.faq-item:has([aria-expanded="true"]) { border-color: var(--gold-500); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  transition: color var(--transition), background var(--transition);
  background: var(--white);
}
.faq-item__question:hover { color: var(--navy-600); background: var(--gray-100); }
.faq-item:has([aria-expanded="true"]) .faq-item__question {
  color: var(--gold-500);
  background: var(--gold-100);
}
.faq-item__icon {
  flex-shrink: 0;
  color: var(--gold-500);
  transition: transform .25s ease;
}
.faq-item:has([aria-expanded="true"]) .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-item__answer[hidden] { display: none; }
.faq-item__answer p { padding-top: 16px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  aspect-ratio: 4/3;
  background: var(--navy-700);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.3);
  padding: 24px;
  text-align: center;
}
.map-placeholder svg { color: var(--gold-500); opacity: .5; }
.map-placeholder p { font-size: 14px; }
.map-placeholder__sub { font-size: 12px; opacity: .6; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__block {}
.contact-info__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-info__address {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.contact-info__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 15px;
  color: rgba(255,255,255,.7);
}
.contact-info__row:last-child { border-bottom: none; }
.contact-info__row svg { color: var(--gold-500); flex-shrink: 0; }
.contact-info__link { color: rgba(255,255,255,.8); transition: color var(--transition); }
.contact-info__link:hover { color: var(--gold-400); }
.contact-info__link--whatsapp:hover { color: #25D366; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,168,76,.1);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
    text-align: left;
  }
}
.footer__logo { margin: 0 auto 12px; }
@media (min-width: 640px) { .footer__logo { margin: 0 0 12px; } }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer__brand {}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media (min-width: 640px) { .footer__nav { align-items: flex-start; } }
.footer__link { font-size: 13px; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer__link:hover { color: var(--gold-400); }

.footer__langs { display: flex; gap: 8px; justify-content: center; }
@media (min-width: 640px) { .footer__langs { justify-content: flex-end; } }
.footer__lang { font-size: 20px; opacity: .4; transition: opacity var(--transition); padding: 4px; }
.footer__lang:hover, .footer__lang--active { opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 20px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__seo-text a { color: rgba(255,255,255,.25); transition: color var(--transition); }
.footer__seo-text a:hover { color: var(--gold-400); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition);
  color: white;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ── ACCESSIBILITÉ ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── ANIMATIONS d'entrée au scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
