/* AJEP — crème, encre, or. CTA WhatsApp inchangé. */
:root {
  --paper: #f4eee4;
  --paper-2: #ece4d6;
  --white: #fffbf5;
  --ink: #241c16;
  --ink-soft: #5d5045;
  --gold: #c4a265;
  --gold-deep: #9a7540;
  --espresso: #2a221c;
  --wa: #1f8b4d;
  --line: rgba(36, 28, 22, 0.1);
  --line-strong: rgba(36, 28, 22, 0.2);
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --header: 4.25rem;
  --shadow: 0 16px 40px -20px rgba(36, 28, 22, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font: "Figtree", system-ui, sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space: clamp(4rem, 7vw, 7.5rem);
  --gutter: clamp(1.15rem, 4vw, 1.75rem);
  --wrap: 1120px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
}

p {
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: var(--space-4);
  top: var(--space-4);
  z-index: 80;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.wrap {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(1280px, calc(100% - (var(--gutter) * 2)));
  max-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  height: 42px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}
.brand-text span {
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 550;
}
.nav a:hover {
  color: var(--ink);
}

.btn.nav-cta {
  display: none;
}

.burger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
body.nav-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .burger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: var(--header) 0 0 0;
  background: var(--paper);
  padding: var(--space-5) var(--gutter) 6rem;
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  z-index: 39;
}
body.nav-open .nav-panel {
  display: flex;
}
.nav-panel a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  padding: 0.55rem 0.2rem;
  border-bottom: 1px solid var(--line);
}
.nav-panel .btn {
  margin-top: var(--space-4);
  font-family: var(--font);
  font-size: 1rem;
  border-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--espresso);
  color: var(--white);
  box-shadow: 0 8px 20px -12px rgba(36, 28, 22, 0.55);
}
.btn-primary:hover {
  background: #3b3028;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: #d4b57a;
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 22px -12px rgba(31, 139, 77, 0.7);
}
.btn-wa:hover {
  background: #187543;
}
.btn-full {
  width: 100%;
}
.hero-actions .btn,
.join-actions .btn,
.btn.nav-cta {
  white-space: nowrap;
}

/* Photos */
.photo-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.6s var(--ease);
}
.axe:hover .photo-slot img,
.rdv-card:hover .photo-slot img,
.lieu-highlight:hover .photo-slot img {
  transform: scale(1.045);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.kicker::before {
  content: "";
  width: 1.4rem;
  height: 1.5px;
  background: var(--gold);
}

.lead {
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 38rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: var(--space-6);
}
.section-head h2 {
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3.2rem);
  margin-bottom: 0.75rem;
}

/* Hero
   Photo source ~2.19:1. On mobile a tall cover crop would hide most of it.
   3:2 ≈ 68% de l’image ; à partir de 720px on se rapproche du format photo. */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  min-height: 0;
}
.hero-bg {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36, 28, 22, 0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.35rem var(--gutter) 1.5rem;
  background: var(--espresso);
}
.hero h1,
.hero .lead,
.section-head h2 {
  text-wrap: pretty;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.hero-org {
  margin: 0.4rem 0 0.9rem;
  color: color-mix(in srgb, white 78%, transparent);
  font-size: 0.88rem;
}
.hero h1 {
  font-size: clamp(1.35rem, 0.95rem + 1.6vw, 2.05rem);
  max-width: 22ch;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.hero .lead {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, white 82%, transparent);
  font-size: 0.95rem;
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 22rem;
}
.hero .btn-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}
.hero .btn-primary:hover {
  background: var(--paper);
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.marquee {
  position: relative;
  z-index: 1;
  margin-top: 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  background: color-mix(in srgb, var(--paper-2) 65%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.8rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.marquee-track span {
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Lieu */
.lieu {
  padding: var(--space) 0 0;
}
.lieu-highlight {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.lieu-highlight .photo-slot {
  min-height: 210px;
  height: 210px;
  border-radius: 0;
}
.lieu-highlight__copy {
  padding: var(--space-5);
}
.lieu-highlight__copy h3 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0.3rem 0 0.65rem;
}
.lieu-highlight__copy p:last-child {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Axes */
.axes {
  padding: var(--space-6) 0 var(--space);
}
.axes-grid {
  display: grid;
  gap: var(--space-4);
}
.axe {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.axe:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.axe .photo-slot {
  height: 150px;
  border-radius: 0;
}
.axe-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.axe-num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.axe h3 {
  font-size: 1.32rem;
}
.axe p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.axe--featured {
  border-color: color-mix(in srgb, var(--gold) 40%, var(--line));
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.65rem;
}
.chip {
  font-size: 0.72rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* Rendez-vous */
.rdv {
  padding: 0 0 var(--space);
}
.rdv-list {
  display: grid;
  gap: var(--space-4);
}
.rdv-card {
  display: flex;
  flex-direction: column;
  background: var(--espresso);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
}
.rdv-card .photo-slot {
  height: 148px;
  min-height: 148px;
  border-radius: 0;
}
.rdv-body {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rdv-when {
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.rdv-card h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  margin-bottom: 0.5rem;
}
.rdv-card p {
  color: color-mix(in srgb, var(--white) 76%, transparent);
  font-size: 0.94rem;
}
.rdv-card .chips {
  margin-top: 0.9rem;
}
.rdv-card .chip {
  background: transparent;
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 40%, transparent);
}

/* Join */
.join {
  padding: 0 0 var(--space);
}
.join-card {
  background: var(--espresso);
  color: var(--white);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: var(--space-6) var(--space-5) var(--space-5);
  position: relative;
  overflow: hidden;
}
.join-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -90px;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 32%, transparent), transparent 70%);
  pointer-events: none;
}
.join-card h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  position: relative;
}
.join-card .lead {
  color: color-mix(in srgb, white 74%, transparent);
  margin-bottom: var(--space-4);
  position: relative;
}
.place {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
  color: var(--gold);
  margin-bottom: var(--space-5);
  position: relative;
}
.join-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}
.join-card.is-open,
.join-card.is-success {
  display: block;
}
.join-card.is-open .join-actions,
.join-card.is-success .join-actions {
  display: none;
}
.join-card.is-success .join-intro .lead,
.join-card.is-success .join-intro .place,
.join-card.is-success .join-intro .kicker {
  display: none;
}
.join-form {
  position: relative;
  margin-top: var(--space-2);
  max-width: 40rem;
}
.join-form .field span,
.join-form legend {
  color: color-mix(in srgb, white 88%, transparent);
}
.join-form .field input,
.join-form .field textarea {
  background: var(--white);
  border-color: transparent;
  color: var(--ink);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3);
}
@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}
.interests {
  border: 0;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.interests legend {
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 0.65rem;
}
.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.88rem;
  cursor: pointer;
  user-select: none;
}
.choice input {
  accent-color: var(--gold);
}
.choice:has(input:checked) {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}
.success-msg {
  position: relative;
  padding: var(--space-2) 0;
}
.success-msg__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.success-msg p {
  color: color-mix(in srgb, white 80%, transparent);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
}
.field span {
  font-size: 0.82rem;
  font-weight: 650;
}
.field input,
.field textarea {
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  outline: none;
  min-height: 3rem;
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 28%, transparent);
}

.form-status {
  font-size: 0.9rem;
  margin: 0.4rem 0 0.8rem;
  color: var(--gold);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-6) 0 7.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  gap: var(--space-5);
}
.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.3rem;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}
.foot-links a:hover {
  color: var(--ink);
}

.fab-wa {
  position: fixed;
  right: var(--space-4);
  bottom: 5.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -8px rgba(31, 139, 77, 0.7);
  z-index: 45;
  text-decoration: none;
}
.fab-wa:hover {
  background: #187543;
}
.fab-wa svg {
  width: 28px;
  height: 28px;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 44;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

/* Mentions */
.legal {
  padding: var(--space) 0 6rem;
  overflow-wrap: break-word;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-5);
}
.legal h2 {
  font-size: 1.3rem;
  margin: 1.8rem 0 0.5rem;
}
.legal p {
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}

body.nav-open .fab-wa,
body.nav-open .mobile-bar,
body.form-open .fab-wa {
  opacity: 0;
  pointer-events: none;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 0.6rem);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.in {
  animation: rise 0.75s var(--ease) forwards;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    max-width: none;
  }
  .hero-actions .btn {
    width: auto;
  }
  .axes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .axe--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  }
  .axe--featured .photo-slot {
    height: 188px;
    min-height: 188px;
  }
  .axe--featured .axe-body {
    justify-content: center;
    padding: 1.25rem 1.5rem;
  }
  .lieu-highlight {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .lieu-highlight .photo-slot {
    height: 100%;
    min-height: 240px;
  }
  .hero {
    display: grid;
    min-height: 0;
  }
  .hero-bg,
  .hero-inner {
    grid-area: 1 / 1;
  }
  .hero-bg {
    aspect-ratio: 16 / 9;
    height: 100%;
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(36, 28, 22, 0.22) 0%, rgba(36, 28, 22, 0.2) 40%, rgba(36, 28, 22, 0.7) 100%),
      linear-gradient(90deg, rgba(36, 28, 22, 0.5) 0%, rgba(36, 28, 22, 0.16) 58%, transparent 100%);
  }
  .hero-inner {
    align-self: end;
    width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
    padding: 4.5rem 0 2.4rem;
    background: transparent;
  }
  .rdv-list {
    grid-template-columns: 1fr 1fr;
  }
  .rdv-list .rdv-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .burger,
  .nav-panel,
  .mobile-bar {
    display: none;
  }
  .nav {
    display: flex;
  }
  .btn.nav-cta {
    display: inline-flex;
  }
  .fab-wa {
    bottom: 1.4rem;
    right: 1.4rem;
  }
  .site-footer {
    padding-bottom: 2.8rem;
  }
  .brand img {
    height: 48px;
  }

  .hero-bg {
    aspect-ratio: 2.1 / 1;
  }
  .hero-inner {
    padding: 5.5rem 0 2.8rem;
  }
  .hero-actions {
    flex-wrap: wrap;
  }

  .axes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .axe--featured {
    grid-column: span 6;
  }
  .axe:nth-child(2),
  .axe:nth-child(3),
  .axe:nth-child(4),
  .axe:nth-child(5) {
    grid-column: span 3;
  }
  .axe .photo-slot {
    height: 168px;
  }

  .rdv-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .rdv-list .rdv-card:last-child {
    grid-column: auto;
  }
  .rdv-card .photo-slot {
    height: 158px;
    min-height: 158px;
  }

  .join-card {
    padding: 3.2rem 3rem 2.6rem;
  }
  .join-card:not(.is-open):not(.is-success) {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-6);
    align-items: center;
  }
  .join-actions .btn {
    width: 100%;
  }
  .lieu-highlight__copy {
    padding: 2.1rem 2rem;
  }
  .foot-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track,
  .reveal,
  .reveal.in,
  .axe,
  .btn,
  .photo-slot img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
