/* =========================================================
   F&S COIFFURE — GALLERY.CSS
   VERSION BLANCHE, ÉLÉGANTE, ARRONDIE ET PREMIUM
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap");

/* =========================================================
   VARIABLES ET BASE
========================================================= */

.gallery-page {
  --white: #ffffff;
  --white-soft: #fdfcf9;

  --cream: #f7f3ec;
  --cream-soft: #fbf8f3;
  --cream-dark: #ece4d8;

  --ink: #171511;
  --ink-soft: #35312b;

  --text: #625d55;
  --muted: #8b857c;

  --gold: #b38a52;
  --gold-dark: #7c5d36;
  --gold-light: #dfc79f;
  --gold-soft: #f4eadb;

  --border: rgba(45, 38, 29, 0.1);
  --border-strong: rgba(45, 38, 29, 0.18);
  --border-gold: rgba(179, 138, 82, 0.36);

  --radius-small: 13px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --radius-extra: 42px;
  --radius-pill: 999px;

  --container:
    min(1180px, calc(100% - 48px));

  --shadow-small:
    0 10px 30px rgba(54, 43, 29, 0.07);

  --shadow-medium:
    0 22px 60px rgba(54, 43, 29, 0.11);

  --shadow-large:
    0 35px 90px rgba(54, 43, 29, 0.16);

  min-width: 320px;
  margin: 0;
  overflow-x: hidden;

  color: var(--ink);
  background: var(--white-soft);

  font-family:
    "Poppins",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.gallery-page.menu-open,
.gallery-page.lightbox-open {
  overflow: hidden;
}

.gallery-page *,
.gallery-page *::before,
.gallery-page *::after {
  box-sizing: border-box;
}

.gallery-page img {
  display: block;
  max-width: 100%;
}

.gallery-page a {
  color: inherit;
  text-decoration: none;
}

.gallery-page button,
.gallery-page input,
.gallery-page select,
.gallery-page textarea {
  font: inherit;
}

.gallery-page button {
  cursor: pointer;
}

.gallery-page h1,
.gallery-page h2,
.gallery-page h3,
.gallery-page h4,
.gallery-page p,
.gallery-page figure,
.gallery-page blockquote {
  margin: 0;
}

.gallery-page ul,
.gallery-page ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-page svg {
  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-page main {
  position: relative;
  z-index: 1;
}

.gallery-page .container {
  width: var(--container);
  max-width: 1180px;
  margin-inline: auto;
}

.gallery-page .section-padding {
  padding: 112px 0;
}

.gallery-page h1,
.gallery-page h2,
.gallery-page h3 {
  color: var(--ink);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;
}

/* =========================================================
   SÉLECTION ET SCROLLBAR
========================================================= */

.gallery-page ::selection {
  color: var(--white);
  background: var(--gold);
}

.gallery-page::-webkit-scrollbar {
  width: 9px;
}

.gallery-page::-webkit-scrollbar-track {
  background: #f2ede5;
}

.gallery-page::-webkit-scrollbar-thumb {
  border: 2px solid #f2ede5;
  border-radius: var(--radius-pill);

  background: #bca47f;
}

.gallery-page::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* =========================================================
   TITRES ET LABELS
========================================================= */

.gallery-page .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 17px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-page .section-label::after {
  content: "";

  width: 35px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

.gallery-page .section-heading {
  max-width: 850px;
  margin: 0 auto 60px;
}

.gallery-page .section-heading.center {
  text-align: center;
}

.gallery-page .section-heading.center .section-label {
  justify-content: center;
}

.gallery-page .section-heading.center .section-label::after {
  display: none;
}

.gallery-page .section-heading h2 {
  color: var(--ink);

  font-size:
    clamp(48px, 5.5vw, 76px);

  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.gallery-page .section-description {
  max-width: 650px;
  margin: 22px auto 0;

  color: var(--text);

  font-size: 13px;
  line-height: 1.85;
}

.gallery-page .small-gold-line {
  width: 55px;
  height: 2px;

  margin: 24px 0 30px;

  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

/* =========================================================
   BOUTONS
========================================================= */

.gallery-page .btn,
.gallery-page .phone-btn,
.gallery-page .reserve-btn {
  position: relative;

  min-height: 52px;
  padding: 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border: 1px solid transparent;
  border-radius: var(--radius-pill);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.gallery-page .btn::after,
.gallery-page .phone-btn::after,
.gallery-page .reserve-btn::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: -120%;

  width: 65%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.42),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.gallery-page .btn:hover::after,
.gallery-page .phone-btn:hover::after,
.gallery-page .reserve-btn:hover::after {
  left: 150%;
}

.gallery-page .btn:hover,
.gallery-page .phone-btn:hover,
.gallery-page .reserve-btn:hover {
  transform: translateY(-3px);
}

.gallery-page .btn-primary,
.gallery-page .reserve-btn {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      #26231f,
      #12110f
    );

  border-color: #171511;

  box-shadow:
    0 14px 34px rgba(23, 21, 17, 0.18);
}

.gallery-page .btn-primary:hover,
.gallery-page .reserve-btn:hover {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-dark)
    );

  border-color: var(--gold);

  box-shadow:
    0 18px 42px rgba(124, 93, 54, 0.25);
}

.gallery-page .btn-outline,
.gallery-page .phone-btn {
  color: var(--ink);

  background:
    rgba(255, 255, 255, 0.88);

  border-color: var(--border-strong);

  box-shadow:
    0 8px 24px rgba(54, 43, 29, 0.05);
}

.gallery-page .btn-outline:hover,
.gallery-page .phone-btn:hover {
  color: var(--gold-dark);

  background: var(--white);
  border-color: var(--gold);

  box-shadow: var(--shadow-small);
}

.gallery-page .btn:focus-visible,
.gallery-page .phone-btn:focus-visible,
.gallery-page .reserve-btn:focus-visible,
.gallery-page .menu-toggle:focus-visible,
.gallery-page button:focus-visible,
.gallery-page input:focus-visible,
.gallery-page a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =========================================================
   LOADER
========================================================= */

.gallery-page .page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(179, 138, 82, 0.08),
      transparent 30%
    ),
    var(--white);

  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.gallery-page .page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gallery-page .loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery-page .loader-inner img {
  width: 150px;
  max-height: 100px;

  object-fit: contain;
}

.gallery-page .loader-line {
  position: relative;

  width: 150px;
  height: 2px;

  overflow: hidden;

  border-radius: var(--radius-pill);

  background:
    rgba(23, 21, 17, 0.1);
}

.gallery-page .loader-line::after {
  content: "";

  position: absolute;
  inset-block: 0;
  left: -70%;

  width: 70%;

  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      transparent
    );

  animation:
    galleryLoader 1.2s ease-in-out infinite;
}

.gallery-page .loader-inner span {
  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes galleryLoader {
  to {
    left: 120%;
  }
}

/* =========================================================
   SKIP LINK
========================================================= */

.gallery-page .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;

  padding: 12px 18px;

  color: var(--white);
  background: var(--ink);

  border-radius: var(--radius-pill);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;
  font-weight: 700;

  transform: translateY(-160%);

  transition: transform 0.25s ease;
}

.gallery-page .skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   HEADER
========================================================= */

.gallery-page .site-header {
  position: fixed;
  top: 12px;
  right: 18px;
  left: 18px;
  z-index: 1000;

  height: 78px;

  display: flex;
  align-items: center;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid rgba(45, 38, 29, 0.08);

  border-radius: var(--radius-medium);

  box-shadow:
    0 14px 42px rgba(54, 43, 29, 0.1);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition:
    top 0.3s ease,
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-page .site-header.is-scrolled {
  top: 8px;
  height: 70px;

  background:
    rgba(255, 255, 255, 0.98);

  box-shadow:
    0 16px 48px rgba(54, 43, 29, 0.14);
}

.gallery-page .header-inner {
  width:
    min(1280px, calc(100% - 34px));

  height: 100%;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.gallery-page .logo {
  width: 128px;
  min-width: 128px;
  height: 62px;

  display: flex;
  align-items: center;
}

.gallery-page .logo img {
  width: 100%;
  max-height: 59px;

  object-fit: contain;
  object-position: left center;
}

.gallery-page .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap:
    clamp(17px, 2vw, 28px);
}

.gallery-page .main-nav a {
  position: relative;

  padding: 27px 0;

  color: #575149;

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;

  transition: color 0.25s ease;
}

.gallery-page .main-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;

  width: 0;
  height: 2px;
  margin-inline: auto;

  border-radius: var(--radius-pill);

  background: var(--gold);

  transition: width 0.3s ease;
}

.gallery-page .main-nav a:hover,
.gallery-page .main-nav a.active {
  color: var(--ink);
}

.gallery-page .main-nav a:hover::after,
.gallery-page .main-nav a.active::after {
  width: 100%;
}

.gallery-page .header-actions {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: 10px;

  flex-shrink: 0;
}

.gallery-page .phone-btn,
.gallery-page .reserve-btn {
  min-height: 42px;
  padding-inline: 17px;
}

.gallery-page .phone-btn {
  background: var(--cream);
}

.gallery-page .phone-btn svg {
  width: 17px;
  height: 17px;

  stroke: var(--gold-dark);
}

.gallery-page .menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  border:
    1px solid var(--border-strong);

  border-radius: 50%;

  background: var(--white);
}

.gallery-page .menu-toggle span {
  width: 19px;
  height: 1.5px;

  background: var(--ink);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.gallery-page .menu-toggle.active span:nth-child(1) {
  transform:
    translateY(7.5px)
    rotate(45deg);
}

.gallery-page .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.gallery-page .menu-toggle.active span:nth-child(3) {
  transform:
    translateY(-7.5px)
    rotate(-45deg);
}

/* =========================================================
   HERO GALERIE
========================================================= */

.gallery-page .gallery-hero {
  position: relative;

  min-height: 820px;
  margin: 0 18px;
  padding-top: 105px;

  overflow: hidden;
  isolation: isolate;

  display: flex;
  align-items: center;

  border-radius:
    0 0 var(--radius-extra) var(--radius-extra);

  background: var(--cream);
}

.gallery-page .gallery-hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;

  overflow: hidden;
}

.gallery-page .gallery-hero-background img {
  width: 100%;
  height: 110%;

  object-fit: cover;
  object-position: 64% center;

  filter:
    saturate(0.96)
    contrast(1.02)
    brightness(1.02);

  transform: scale(1.04);

  transition: transform 0.1s linear;
}

.gallery-page .gallery-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 31%,
      rgba(255, 255, 255, 0.78) 55%,
      rgba(255, 255, 255, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(247, 243, 236, 0.75),
      transparent 50%
    );
}

.gallery-page .gallery-hero-content {
  position: relative;
  z-index: 2;

  min-height: 715px;
  padding: 115px 0 125px;

  display: flex;
  align-items: center;
}

.gallery-page .gallery-hero-copy {
  width:
    min(660px, 60%);

  max-width: 660px;
}

.gallery-page .gallery-hero-copy h1 {
  max-width: 680px;

  color: var(--ink);

  font-size:
    clamp(62px, 7vw, 102px);

  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.045em;

  text-shadow:
    0 12px 35px rgba(255, 255, 255, 0.75);
}

.gallery-page .gallery-hero-copy h1 span {
  display: block;

  margin-top: 22px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(15px, 1.9vw, 24px);

  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-page .hero-divider {
  width: 95px;
  margin: 28px 0 24px;

  display: flex;
  align-items: center;
  gap: 13px;

  color: var(--gold-dark);
}

.gallery-page .hero-divider svg {
  width: 24px;
  height: 24px;
}

.gallery-page .hero-divider i {
  width: 54px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

.gallery-page .gallery-hero-copy p {
  max-width: 560px;

  color: #514b43;

  font-size: 13px;
  line-height: 1.9;
}

.gallery-page .gallery-hero-actions {
  margin-top: 38px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   CARTE REDA DU HERO
========================================================= */

.gallery-page .gallery-hero-card {
  position: absolute;
  right: 0;
  bottom: 52px;

  width: 405px;
  max-width: 42%;
  padding: 30px;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid var(--border-gold);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-large);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-page .gallery-hero-card > span {
  display: block;
  margin-bottom: 9px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-page .gallery-hero-card > strong {
  display: block;
  max-width: 330px;
  margin-bottom: 12px;

  color: var(--ink);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.gallery-page .gallery-hero-card > p {
  max-width: 320px;

  color: var(--text);

  font-size: 10px;
  line-height: 1.7;
}

.gallery-page .gallery-hero-card-footer {
  margin-top: 24px;
  padding-top: 21px;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  border-top:
    1px solid var(--border);
}

.gallery-page .gallery-hero-card-footer > div {
  position: relative;

  padding-inline: 18px;
}

.gallery-page .gallery-hero-card-footer > div:first-child {
  padding-left: 0;
}

.gallery-page .gallery-hero-card-footer > div:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 1px;
  height: 100%;

  background: var(--border);
}

.gallery-page .gallery-hero-card-footer b {
  display: block;
  margin-bottom: 4px;

  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 24px;
  font-weight: 700;
}

.gallery-page .gallery-hero-card-footer small {
  display: block;

  color: var(--muted);

  font-size: 8px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* =========================================================
   INDICATEUR HERO
========================================================= */

.gallery-page .scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;

  color: var(--ink-soft);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transform: translateX(-50%);
}

.gallery-page .scroll-indicator span {
  position: relative;

  width: 1px;
  height: 36px;

  overflow: hidden;

  background:
    rgba(23, 21, 17, 0.18);
}

.gallery-page .scroll-indicator span::after {
  content: "";

  position: absolute;
  top: -100%;
  left: 0;

  width: 1px;
  height: 100%;

  background: var(--gold);

  animation:
    galleryScrollLine 1.8s ease-in-out infinite;
}

@keyframes galleryScrollLine {
  to {
    top: 100%;
  }
}

/* =========================================================
   AVANTAGES
========================================================= */

.gallery-page .gallery-benefits {
  position: relative;
  z-index: 4;

  margin: 28px 18px 0;
  padding: 16px 0;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}

.gallery-page .gallery-benefits-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.gallery-page .gallery-benefit {
  position: relative;

  min-height: 128px;
  padding: 28px;

  display: flex;
  align-items: center;
  gap: 16px;

  border-right:
    1px solid var(--border);
}

.gallery-page .gallery-benefit:last-child {
  border-right: 0;
}

.gallery-page .gallery-benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold-dark);
  background: var(--gold-soft);

  border-radius: 50%;
}

.gallery-page .gallery-benefit-icon svg {
  width: 25px;
  height: 25px;
}

.gallery-page .gallery-benefit h3 {
  margin-bottom: 5px;

  color: var(--ink);

  font-size: 21px;
  font-weight: 700;
}

.gallery-page .gallery-benefit p {
  color: var(--text);

  font-size: 10px;
  line-height: 1.6;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.gallery-page .gallery-introduction {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(179, 138, 82, 0.08),
      transparent 24%
    ),
    var(--cream);
}

.gallery-page .gallery-introduction-grid {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.88fr)
    minmax(500px, 1.12fr);

  gap: 76px;
  align-items: center;
}

.gallery-page .gallery-introduction-copy h2 {
  max-width: 650px;

  font-size:
    clamp(50px, 5.5vw, 75px);

  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.gallery-page .gallery-introduction-copy h2 span {
  display: block;

  color: var(--gold-dark);
}

.gallery-page .gallery-introduction-copy > p {
  max-width: 540px;
  margin-bottom: 19px;

  color: var(--text);

  font-size: 13px;
  line-height: 1.9;
}

.gallery-page .gallery-introduction-list {
  margin: 30px 0 36px;

  display: grid;
  gap: 12px;
}

.gallery-page .gallery-introduction-list li {
  padding: 13px 15px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--ink-soft);

  background:
    rgba(255, 255, 255, 0.78);

  border:
    1px solid var(--border);

  border-radius: var(--radius-small);

  font-size: 11px;
}

.gallery-page .gallery-introduction-list svg {
  width: 18px;
  height: 18px;
  min-width: 18px;

  color: var(--gold-dark);

  stroke-width: 2;
}

.gallery-page .gallery-introduction-visual {
  position: relative;

  min-height: 570px;
}

.gallery-page .gallery-introduction-main {
  position: absolute;
  top: 0;
  right: 0;

  width: 86%;
  height: 500px;

  overflow: hidden;

  background: #ddd7cc;

  border:
    9px solid var(--white);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-large);
}

.gallery-page .gallery-introduction-small {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;

  width: 250px;
  height: 300px;

  overflow: hidden;

  background: #ddd7cc;

  border:
    7px solid var(--white);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-medium);
}

.gallery-page .gallery-introduction-main img,
.gallery-page .gallery-introduction-small img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    saturate(0.96)
    contrast(1.02)
    brightness(1.03);

  transition:
    transform 0.85s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-page .gallery-introduction-main:hover img,
.gallery-page .gallery-introduction-small:hover img {
  transform: scale(1.05);
}

.gallery-page .gallery-introduction-badge {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 5;

  width: 290px;
  padding: 22px 24px;

  background:
    rgba(255, 255, 255, 0.94);

  border:
    1px solid var(--border-gold);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-medium);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-page .gallery-introduction-badge span {
  display: block;
  margin-bottom: 6px;

  color: var(--muted);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-page .gallery-introduction-badge strong {
  color: var(--ink);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 21px;
  font-weight: 700;
}

.gallery-page .gallery-introduction-number {
  position: absolute;
  top: -45px;
  right: -4px;
  z-index: 3;

  color:
    rgba(124, 93, 54, 0.07);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 150px;
  font-weight: 700;
  line-height: 1;

  pointer-events: none;
}

/* =========================================================
   COLLECTION GALERIE
========================================================= */

.gallery-page .gallery-collection {
  position: relative;

  overflow: hidden;

  margin: 0 18px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);
}

.gallery-page .gallery-collection::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 40%;
  height: 100%;

  background:
    linear-gradient(
      135deg,
      transparent,
      rgba(179, 138, 82, 0.055)
    );

  pointer-events: none;
}

.gallery-page .gallery-collection-heading {
  position: relative;
  z-index: 2;

  margin-bottom: 45px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.55fr);

  gap: 80px;
  align-items: end;
}

.gallery-page .gallery-collection-heading h2 {
  max-width: 770px;

  font-size:
    clamp(50px, 5.7vw, 78px);

  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.gallery-page .gallery-collection-heading h2 span {
  display: block;

  color: var(--gold-dark);
}

.gallery-page .gallery-collection-heading > p {
  padding-bottom: 6px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.85;
}

/* =========================================================
   FILTRES
========================================================= */

.gallery-page .gallery-filters {
  position: relative;
  z-index: 2;

  margin-bottom: 38px;

  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.gallery-page .gallery-filter {
  min-height: 44px;
  padding: 0 20px;

  color: var(--ink-soft);
  background: var(--cream-soft);

  border:
    1px solid var(--border);

  border-radius: var(--radius-pill);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-page .gallery-filter:hover {
  color: var(--gold-dark);

  background: var(--white);
  border-color: var(--gold);

  transform: translateY(-2px);
}

.gallery-page .gallery-filter.active {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-dark)
    );

  border-color: var(--gold);

  box-shadow:
    0 13px 32px rgba(124, 93, 54, 0.2);
}

/* =========================================================
   MOSAÏQUE
========================================================= */

.gallery-page .gallery-masonry {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(12, minmax(0, 1fr));

  grid-auto-flow: dense;
  grid-auto-rows: 118px;

  gap: 16px;
}

.gallery-page .gallery-item {
  position: relative;

  min-height: 236px;

  overflow: hidden;

  opacity: 1;

  background: #ddd7cc;

  border:
    1px solid var(--border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);

  transform: scale(1);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.gallery-page .gallery-item:hover {
  transform: translateY(-5px);

  border-color: var(--border-gold);

  box-shadow: var(--shadow-medium);
}

.gallery-page .gallery-item-large {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-page .gallery-item-medium {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-page .gallery-item-small {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-page .gallery-item-wide {
  grid-column: span 8;
  grid-row: span 3;
}

.gallery-page .gallery-item-tall {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-page .gallery-item.is-hidden {
  display: none;
}

.gallery-page .gallery-item:not(.is-filter-visible) {
  opacity: 0;
  transform: scale(0.95);
}

.gallery-page .gallery-open {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;

  overflow: hidden;

  display: block;

  color: inherit;
  background: transparent;

  border: 0;
  border-radius: inherit;

  text-align: left;

  isolation: isolate;
}

.gallery-page .gallery-open > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(0.95)
    contrast(1.03)
    brightness(0.94);

  transform: scale(1.01);

  transition:
    transform 0.85s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.gallery-page .gallery-item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      transparent 22%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.8) 100%
    );
}

.gallery-page .gallery-open::after {
  content: "";

  position: absolute;
  inset: 12px;
  z-index: 2;

  opacity: 0;

  border:
    1px solid rgba(255, 255, 255, 0.55);

  border-radius:
    calc(var(--radius-large) - 10px);

  pointer-events: none;

  transition: opacity 0.4s ease;
}

.gallery-page .gallery-open:hover > img,
.gallery-page .gallery-open:focus-visible > img {
  transform: scale(1.075);

  filter:
    saturate(1)
    contrast(1.03)
    brightness(1);
}

.gallery-page .gallery-open:hover::after,
.gallery-page .gallery-open:focus-visible::after {
  opacity: 1;
}

.gallery-page .gallery-open figcaption {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  z-index: 3;

  transform: translateY(6px);

  transition: transform 0.4s ease;
}

.gallery-page .gallery-open:hover figcaption,
.gallery-page .gallery-open:focus-visible figcaption {
  transform: translateY(0);
}

.gallery-page .gallery-open figcaption > span {
  display: block;
  margin-bottom: 8px;

  color: var(--gold-light);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-page .gallery-open figcaption h3 {
  max-width: 570px;
  margin-bottom: 7px;

  color: var(--white);

  font-size:
    clamp(22px, 2.4vw, 34px);

  font-weight: 700;
  line-height: 1.1;
}

.gallery-page .gallery-open figcaption p {
  max-width: 460px;

  color:
    rgba(255, 255, 255, 0.76);

  font-size: 10px;
  line-height: 1.65;
}

.gallery-page .gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold-dark);

  opacity: 0;

  background:
    rgba(255, 255, 255, 0.9);

  border:
    1px solid rgba(255, 255, 255, 0.9);

  border-radius: 50%;

  box-shadow: var(--shadow-small);

  transform: translateY(-8px);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-page .gallery-zoom-icon svg {
  width: 23px;
  height: 23px;
}

.gallery-page .gallery-open:hover .gallery-zoom-icon,
.gallery-page .gallery-open:focus-visible .gallery-zoom-icon {
  opacity: 1;

  transform: translateY(0);
}

.gallery-page .gallery-collection-footer {
  position: relative;
  z-index: 2;

  margin-top: 44px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.gallery-page .gallery-collection-footer p {
  color: var(--text);

  font-size: 11px;
}

/* =========================================================
   SECTION CINÉMATOGRAPHIQUE
========================================================= */

.gallery-page .gallery-cinematic {
  position: relative;

  min-height: 720px;
  margin: 0 18px;

  overflow: hidden;
  isolation: isolate;

  display: flex;
  align-items: center;

  border-radius: var(--radius-extra);

  background: var(--cream-dark);
}

.gallery-page .gallery-cinematic-background {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.gallery-page .gallery-cinematic-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(0.94)
    contrast(1.02)
    brightness(0.9);

  transition:
    transform 1.1s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-page .gallery-cinematic:hover
.gallery-cinematic-background img {
  transform: scale(1.035);
}

.gallery-page .gallery-cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.87) 47%,
      rgba(255, 255, 255, 0.18) 100%
    );
}

.gallery-page .gallery-cinematic-content {
  position: relative;
  z-index: 2;

  width: var(--container);
  padding: 48px;

  background:
    rgba(255, 255, 255, 0.86);

  border:
    1px solid rgba(255, 255, 255, 0.92);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-large);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-page .gallery-cinematic-content > * {
  max-width: 690px;
}

.gallery-page .gallery-cinematic-content h2 {
  color: var(--ink);

  font-size:
    clamp(50px, 5.7vw, 78px);

  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.gallery-page .gallery-cinematic-content h2 span {
  display: block;

  color: var(--gold-dark);
}

.gallery-page .gallery-cinematic-content > p {
  max-width: 530px;
  margin: 27px 0 36px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.86;
}

.gallery-page .gallery-cinematic-stats {
  max-width: 670px;
  margin-bottom: 36px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);
}

.gallery-page .gallery-cinematic-stats article {
  position: relative;

  padding: 23px 20px;
}

.gallery-page .gallery-cinematic-stats article:first-child {
  padding-left: 0;
}

.gallery-page .gallery-cinematic-stats article:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 20%;
  right: 0;

  width: 1px;
  height: 60%;

  background: var(--border);
}

.gallery-page .gallery-cinematic-stats strong {
  display: block;
  margin-bottom: 7px;

  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 27px;
  font-weight: 700;
}

.gallery-page .gallery-cinematic-stats span {
  color: var(--text);

  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   AVANT / APRÈS
========================================================= */

.gallery-page .gallery-transformations {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(179, 138, 82, 0.08),
      transparent 28%
    ),
    var(--cream);
}

.gallery-page .transformations-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}

.gallery-page .transformation-card {
  overflow: hidden;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-small);

  transition:
    transform 0.4s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-page .transformation-card:hover {
  transform: translateY(-7px);

  border-color: var(--border-gold);

  box-shadow: var(--shadow-medium);
}

.gallery-page .comparison {
  position: relative;

  height: 490px;

  overflow: hidden;

  background: #ddd7cc;

  isolation: isolate;
}

.gallery-page .comparison-before,
.gallery-page .comparison-after {
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.gallery-page .comparison-before {
  position: absolute;
  inset: 0;

  width: 100%;
}

.gallery-page .comparison-after-wrapper {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;

  width: 50%;

  overflow: hidden;
}

.gallery-page .comparison-after {
  position: absolute;
  inset: 0;

  width:
    min(
      calc((100vw - 90px) / 2),
      579px
    );

  max-width: none;
}

.gallery-page .comparison::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 3;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      transparent 65%,
      rgba(0, 0, 0, 0.18)
    );

  pointer-events: none;
}

.gallery-page .comparison-range {
  position: absolute;
  inset: 0;
  z-index: 7;

  width: 100%;
  height: 100%;
  margin: 0;

  opacity: 0;

  cursor: ew-resize;
}

.gallery-page .comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 6;

  width: 2px;

  background:
    rgba(255, 255, 255, 0.92);

  transform: translateX(-50%);

  pointer-events: none;
}

.gallery-page .comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-dark)
    );

  border:
    3px solid rgba(255, 255, 255, 0.9);

  border-radius: 50%;

  box-shadow:
    0 15px 38px rgba(0, 0, 0, 0.3);

  transform:
    translate(-50%, -50%);
}

.gallery-page .comparison-line svg {
  width: 24px;
  height: 24px;
}

.gallery-page .comparison-label {
  position: absolute;
  top: 20px;
  z-index: 5;

  padding: 9px 13px;

  color: var(--white);

  background:
    rgba(23, 21, 17, 0.72);

  border:
    1px solid rgba(255, 255, 255, 0.3);

  border-radius: var(--radius-pill);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-page .comparison-label.before {
  left: 20px;
}

.gallery-page .comparison-label.after {
  right: 20px;

  color: var(--gold-light);
}

.gallery-page .transformation-content {
  padding: 27px 28px 30px;
}

.gallery-page .transformation-content > span {
  display: block;
  margin-bottom: 8px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-page .transformation-content h3 {
  margin-bottom: 9px;

  color: var(--ink);

  font-size: 29px;
  font-weight: 700;
}

.gallery-page .transformation-content p {
  color: var(--text);

  font-size: 10px;
  line-height: 1.7;
}

/* =========================================================
   INSTAGRAM
========================================================= */

.gallery-page .gallery-instagram {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(179, 138, 82, 0.08),
      transparent 28%
    ),
    var(--white);
}

.gallery-page .gallery-instagram-grid {
  display: grid;

  grid-template-columns:
    minmax(340px, 0.78fr)
    minmax(560px, 1.22fr);

  gap: 76px;
  align-items: center;
}

.gallery-page .gallery-instagram-copy h2 {
  max-width: 620px;

  font-size:
    clamp(50px, 5.4vw, 73px);

  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.gallery-page .gallery-instagram-copy h2 span {
  display: block;

  color: var(--gold-dark);
}

.gallery-page .gallery-instagram-copy > p {
  max-width: 500px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.86;
}

.gallery-page .instagram-profile {
  max-width: 500px;
  margin-top: 35px;
  padding: 18px;

  display: grid;

  grid-template-columns:
    50px 1fr 24px;

  gap: 15px;
  align-items: center;

  background: var(--cream-soft);

  border:
    1px solid var(--border);

  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-page .instagram-profile:hover {
  transform: translateX(7px);

  background: var(--white);
  border-color: var(--border-gold);

  box-shadow: var(--shadow-medium);
}

.gallery-page .instagram-profile-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold-dark);
  background: var(--gold-soft);

  border-radius: 50%;
}

.gallery-page .instagram-profile-icon svg {
  width: 25px;
  height: 25px;
}

.gallery-page .instagram-profile strong {
  display: block;
  margin-bottom: 4px;

  color: var(--ink);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;
  font-weight: 700;
}

.gallery-page .instagram-profile span {
  color: var(--muted);

  font-size: 9px;
}

.gallery-page .instagram-arrow {
  width: 22px;
  height: 22px;

  color: var(--gold-dark);

  transition: transform 0.3s ease;
}

.gallery-page .instagram-profile:hover
.instagram-arrow {
  transform: translateX(4px);
}

.gallery-page .instagram-preview {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.gallery-page .instagram-preview a {
  position: relative;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background: #ddd7cc;

  border:
    1px solid var(--border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}

.gallery-page .instagram-preview img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    saturate(0.95)
    contrast(1.03)
    brightness(0.95);

  transition:
    transform 0.7s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.gallery-page .instagram-preview a::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0, 0, 0, 0.72)
    );
}

.gallery-page .instagram-preview a > span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 2;

  color: var(--gold-light);

  opacity: 0;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transform: translateY(8px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-page .instagram-preview a:hover img {
  transform: scale(1.075);

  filter:
    saturate(1)
    contrast(1.03)
    brightness(1);
}

.gallery-page .instagram-preview a:hover > span {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   CTA FINAL
========================================================= */

.gallery-page .gallery-final-cta {
  position: relative;

  min-height: 690px;
  margin: 0 18px 18px;

  overflow: hidden;
  isolation: isolate;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-radius: var(--radius-extra);

  background: var(--cream-dark);
}

.gallery-page .gallery-final-background {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.gallery-page .gallery-final-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(0.94)
    contrast(1.02)
    brightness(0.9);

  transition:
    transform 1.1s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-page .gallery-final-cta:hover
.gallery-final-background img {
  transform: scale(1.035);
}

.gallery-page .gallery-final-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.48),
      rgba(255, 255, 255, 0.76)
    );
}

.gallery-page .gallery-final-content {
  width:
    min(900px, calc(100% - 40px));

  padding: 52px 48px;

  background:
    rgba(255, 255, 255, 0.9);

  border:
    1px solid rgba(255, 255, 255, 0.94);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-large);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-page .gallery-final-content > img {
  width: auto;
  max-width: 190px;
  max-height: 116px;
  margin: 0 auto 27px;

  object-fit: contain;
}

.gallery-page .gallery-final-content
.section-label {
  justify-content: center;
}

.gallery-page .gallery-final-content h2 {
  max-width: 800px;
  margin-inline: auto;

  color: var(--ink);

  font-size:
    clamp(49px, 5.7vw, 76px);

  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.gallery-page .gallery-final-content > p {
  max-width: 650px;
  margin: 24px auto 34px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.85;
}

.gallery-page .gallery-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-page .gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;

  visibility: hidden;
  opacity: 0;

  transition:
    visibility 0.4s ease,
    opacity 0.4s ease;
}

.gallery-page .gallery-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.gallery-page .lightbox-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  padding: 0;

  background:
    rgba(20, 17, 13, 0.92);

  border: 0;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-page .lightbox-container {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;
  padding: 40px 95px;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}

.gallery-page .lightbox-close,
.gallery-page .lightbox-navigation,
.gallery-page .lightbox-figure {
  pointer-events: auto;
}

.gallery-page .lightbox-close {
  position: absolute;
  top: 28px;
  right: 31px;
  z-index: 5;

  width: 50px;
  height: 50px;
  padding: 0;

  background:
    rgba(255, 255, 255, 0.94);

  border:
    1px solid rgba(255, 255, 255, 0.4);

  border-radius: 50%;

  box-shadow: var(--shadow-medium);

  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.gallery-page .lightbox-close:hover {
  border-color: var(--gold);

  transform: rotate(90deg);
}

.gallery-page .lightbox-close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 22px;
  height: 1.5px;

  background: var(--ink);
}

.gallery-page .lightbox-close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.gallery-page .lightbox-close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.gallery-page .lightbox-navigation {
  position: absolute;
  top: 50%;
  z-index: 4;

  width: 55px;
  height: 55px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--ink);

  background:
    rgba(255, 255, 255, 0.94);

  border:
    1px solid rgba(255, 255, 255, 0.4);

  border-radius: 50%;

  box-shadow: var(--shadow-medium);

  transform: translateY(-50%);

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.gallery-page .lightbox-navigation:hover {
  color: var(--white);

  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.gallery-page .lightbox-navigation svg {
  width: 28px;
  height: 28px;
}

.gallery-page .lightbox-previous {
  left: 28px;
}

.gallery-page .lightbox-next {
  right: 28px;
}

.gallery-page .lightbox-previous:hover {
  transform:
    translateY(-50%)
    translateX(-4px);
}

.gallery-page .lightbox-next:hover {
  transform:
    translateY(-50%)
    translateX(4px);
}

.gallery-page .lightbox-figure {
  width:
    min(1120px, 100%);

  max-height:
    calc(100vh - 80px);

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    245px;

  overflow: hidden;

  background: var(--white);

  border:
    1px solid rgba(255, 255, 255, 0.5);

  border-radius: var(--radius-extra);

  box-shadow:
    0 45px 140px rgba(0, 0, 0, 0.5);
}

.gallery-page .lightbox-image-wrapper {
  position: relative;

  min-height: 500px;
  max-height:
    calc(100vh - 80px);

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #171511;
}

.gallery-page .lightbox-image {
  width: 100%;
  height: 100%;
  max-height:
    calc(100vh - 80px);

  object-fit: contain;

  opacity: 0;

  transition: opacity 0.35s ease;
}

.gallery-page .lightbox-image.is-loaded {
  opacity: 1;
}

.gallery-page .lightbox-loader {
  position: absolute;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  background: #171511;
}

.gallery-page .lightbox-loader.is-loading {
  display: flex;
}

.gallery-page .lightbox-loader span {
  width: 42px;
  height: 42px;

  border:
    2px solid rgba(255, 255, 255, 0.15);

  border-top-color: var(--gold-light);

  border-radius: 50%;

  animation:
    galleryLightboxLoader 0.8s linear infinite;
}

@keyframes galleryLightboxLoader {
  to {
    transform: rotate(360deg);
  }
}

.gallery-page .lightbox-figure figcaption {
  padding: 35px 28px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(179, 138, 82, 0.13),
      transparent 38%
    ),
    var(--white);

  border-left:
    1px solid var(--border);
}

.gallery-page .lightbox-subtitle {
  display: block;
  margin-bottom: 10px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-page .lightbox-figure h2 {
  margin-bottom: 24px;

  color: var(--ink);

  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-page .lightbox-counter {
  padding-top: 20px;

  color: var(--muted);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 9px;
  letter-spacing: 0.18em;

  border-top:
    1px solid var(--border);
}

/* =========================================================
   FOOTER
========================================================= */

.gallery-page .site-footer {
  margin: 18px;
  padding: 72px 0 0;

  color: var(--ink);

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f2ede5
    );

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);
}

.gallery-page .footer-grid {
  display: grid;

  grid-template-columns:
    1.35fr
    repeat(3, 1fr);

  gap: 52px;
  padding-bottom: 56px;
}

.gallery-page .footer-brand img {
  width: 150px;
  max-height: 95px;
  margin-bottom: 20px;

  object-fit: contain;
}

.gallery-page .footer-brand p,
.gallery-page .footer-grid > div > p {
  width: fit-content;
  margin-bottom: 11px;

  color: var(--text);

  font-size: 10.5px;
  line-height: 1.8;
}

.gallery-page .footer-grid h3 {
  margin: 0 0 21px;

  color: var(--gold-dark);

  font-size: 22px;
  font-weight: 700;
}

.gallery-page .footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;

  color: var(--text);

  font-size: 10.5px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.gallery-page .footer-grid a:hover {
  color: var(--gold-dark);

  transform: translateX(4px);
}

.gallery-page .footer-bottom {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border-top:
    1px solid var(--border);
}

.gallery-page .footer-bottom p {
  color: #827c73;

  font-size: 9.5px;
}

/* =========================================================
   WHATSAPP FLOTTANT
========================================================= */

.gallery-page .floating-whatsapp {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 900;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-dark)
    );

  border:
    1px solid rgba(255, 255, 255, 0.56);

  border-radius: 50%;

  box-shadow:
    0 18px 45px rgba(62, 47, 30, 0.28);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-page .floating-whatsapp::before {
  content: "";

  position: absolute;
  inset: -6px;

  border:
    1px solid rgba(179, 138, 82, 0.48);

  border-radius: 50%;

  animation:
    galleryWhatsappPulse 2.4s ease-out infinite;
}

.gallery-page .floating-whatsapp:hover {
  transform:
    translateY(-5px)
    scale(1.04);

  background: var(--ink);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28);
}

.gallery-page .floating-whatsapp svg {
  width: 25px;
  height: 25px;
}

@keyframes galleryWhatsappPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.86);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

/* =========================================================
   ANIMATIONS
========================================================= */

.gallery-page [data-reveal] {
  opacity: 0;

  transform: translateY(34px);

  transition:
    opacity 0.85s
    cubic-bezier(0.22, 1, 0.36, 1),

    transform 0.85s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-page [data-reveal="left"] {
  transform: translateX(-40px);
}

.gallery-page [data-reveal="right"] {
  transform: translateX(40px);
}

.gallery-page [data-reveal="scale"] {
  transform: scale(0.95);
}

.gallery-page [data-reveal].is-visible {
  opacity: 1;

  transform:
    translate(0)
    scale(1);
}

.gallery-page [data-delay="100"] {
  transition-delay: 0.1s;
}

.gallery-page [data-delay="200"] {
  transition-delay: 0.2s;
}

.gallery-page [data-delay="300"] {
  transition-delay: 0.3s;
}

.gallery-page [data-delay="400"] {
  transition-delay: 0.4s;
}

.gallery-page [data-delay="500"] {
  transition-delay: 0.5s;
}

/* =========================================================
   TABLETTES
========================================================= */

@media (max-width: 1120px) {
  .gallery-page .main-nav {
    gap: 16px;
  }

  .gallery-page .phone-btn span {
    display: none;
  }

  .gallery-page .gallery-introduction-grid,
  .gallery-page .gallery-instagram-grid {
    gap: 44px;
  }
}

/* =========================================================
   MENU MOBILE ET TABLETTE
========================================================= */

@media (max-width: 950px) {
  .gallery-page .site-header,
  .gallery-page .site-header.is-scrolled {
    top: 8px;
    height: 70px;
  }

  .gallery-page .phone-btn {
    display: none;
  }

  .gallery-page .menu-toggle {
    display: flex;
  }

  body.gallery-page.menu-open::before {
    content: "";

    position: fixed;
    inset: 0;
    z-index: 1000;

    background:
      rgba(22, 18, 14, 0.42);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .gallery-page .site-header,
  .gallery-page .site-header.is-scrolled {
    z-index: 1300;
  }

  .gallery-page .main-nav {
    position: fixed !important;

    top: 88px !important;
    right: 14px !important;
    bottom: auto !important;
    left: 14px !important;
    z-index: 1400 !important;

    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 14px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;

    overflow: visible !important;

    color: var(--ink) !important;

    background: var(--white) !important;
    background-color: var(--white) !important;
    background-image: none !important;

    border:
      1px solid var(--border) !important;

    border-radius: 26px !important;

    box-shadow:
      0 30px 80px rgba(30, 24, 18, 0.24) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform:
      translateY(-12px)
      scale(0.98) !important;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.35s
      cubic-bezier(0.22, 1, 0.36, 1) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .gallery-page .main-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
      translateY(0)
      scale(1) !important;
  }

  .gallery-page .main-nav a {
    width: 100% !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    color: var(--ink) !important;
    background: var(--cream-soft) !important;

    border:
      1px solid transparent !important;

    border-radius: 15px !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .gallery-page .main-nav a::before {
    content: "→";

    order: 2;

    color: var(--gold);

    font-size: 15px;

    opacity: 0;

    transform: translateX(-5px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .gallery-page .main-nav a::after {
    display: none !important;
  }

  .gallery-page .main-nav a:hover,
  .gallery-page .main-nav a.active {
    color: var(--gold-dark) !important;
    background: var(--gold-soft) !important;

    border-color:
      rgba(179, 138, 82, 0.18) !important;

    padding-left: 22px !important;
  }

  .gallery-page .main-nav a:hover::before,
  .gallery-page .main-nav a.active::before {
    opacity: 1;

    transform: translateX(0);
  }

  .gallery-page .menu-toggle {
    position: relative;
    z-index: 1500;
  }

  .gallery-page .gallery-hero {
    min-height: 790px;
  }

  .gallery-page .gallery-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.91) 67%,
        rgba(255, 255, 255, 0.4)
      );
  }

  .gallery-page .gallery-hero-copy {
    width: 72%;
  }

  .gallery-page .gallery-hero-card {
    right: 0;
    bottom: 42px;

    width: 360px;
    max-width: 47%;
  }

  .gallery-page .gallery-benefits-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .gallery-page .gallery-benefit:nth-child(2) {
    border-right: 0;
  }

  .gallery-page .gallery-benefit:nth-child(-n + 2) {
    border-bottom:
      1px solid var(--border);
  }

  .gallery-page .gallery-introduction-grid,
  .gallery-page .gallery-instagram-grid,
  .gallery-page .gallery-collection-heading {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-introduction-visual {
    min-height: 560px;
  }

  .gallery-page .gallery-masonry {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-auto-rows: 330px;
  }

  .gallery-page .gallery-item,
  .gallery-page .gallery-item-large,
  .gallery-page .gallery-item-medium,
  .gallery-page .gallery-item-small,
  .gallery-page .gallery-item-wide,
  .gallery-page .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-page .gallery-item-large,
  .gallery-page .gallery-item-wide {
    grid-column: 1 / -1;
  }

  .gallery-page .transformations-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page .comparison-after {
    width:
      calc(100vw - 60px);

    max-width: none;
  }

  .gallery-page .instagram-preview {
    max-width: 760px;
  }

  .gallery-page .lightbox-container {
    padding:
      80px 55px 35px;
  }

  .gallery-page .lightbox-figure {
    grid-template-columns: 1fr;
  }

  .gallery-page .lightbox-image-wrapper {
    min-height: 450px;
  }

  .gallery-page .lightbox-figure figcaption {
    min-height: 155px;

    border-top:
      1px solid var(--border);

    border-left: 0;
  }

  .gallery-page .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .gallery-page {
    --container:
      min(100% - 30px, 1180px);

    --radius-large: 24px;
    --radius-extra: 30px;
  }

  .gallery-page .section-padding {
    padding: 76px 0;
  }

  .gallery-page .site-header {
    right: 10px;
    left: 10px;

    border-radius: 18px;
  }

  .gallery-page .header-inner {
    width:
      calc(100% - 24px);
  }

  .gallery-page .logo {
    width: 108px;
    min-width: 108px;
  }

  .gallery-page .reserve-btn {
    display: none;
  }

  .gallery-page .main-nav {
    top: 86px !important;
    right: 10px !important;
    left: 10px !important;

    padding: 12px !important;

    border-radius: 22px !important;
  }

  .gallery-page .main-nav a {
    min-height: 48px !important;
    padding: 0 16px !important;

    border-radius: 13px !important;

    font-size: 10.5px !important;
  }

  .gallery-page .main-nav a:hover,
  .gallery-page .main-nav a.active {
    padding-left: 20px !important;
  }

  .gallery-page .gallery-hero,
  .gallery-page .gallery-collection,
  .gallery-page .gallery-cinematic,
  .gallery-page .gallery-final-cta,
  .gallery-page .site-footer {
    margin-right: 10px;
    margin-left: 10px;
  }

  .gallery-page .gallery-hero {
    min-height: 790px;
  }

  .gallery-page .gallery-hero-background img {
    object-position:
      63% center;
  }

  .gallery-page .gallery-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.91)
      );
  }

  .gallery-page .gallery-hero-content {
    min-height: 740px;
    padding-top: 105px;
    padding-bottom: 85px;

    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .gallery-page .gallery-hero-copy {
    width: 100%;
  }

  .gallery-page .gallery-hero-copy h1 {
    font-size:
      clamp(53px, 15vw, 76px);

    line-height: 0.84;
  }

  .gallery-page .gallery-hero-copy h1 span {
    margin-top: 20px;

    font-size:
      clamp(13px, 4vw, 18px);
  }

  .gallery-page .gallery-hero-actions {
    display: grid;
  }

  .gallery-page .gallery-hero-actions .btn {
    width: 100%;
  }

  .gallery-page .gallery-hero-card {
    position: relative;
    right: auto;
    bottom: auto;

    width: 100%;
    max-width: none;
    margin-top: 34px;
  }

  .gallery-page .scroll-indicator {
    display: none;
  }

  .gallery-page .gallery-benefits {
    margin-right: 10px;
    margin-left: 10px;
  }

  .gallery-page .gallery-benefits-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-benefit {
    border-right: 0 !important;

    border-bottom:
      1px solid var(--border);
  }

  .gallery-page .gallery-benefit:last-child {
    border-bottom: 0;
  }

  .gallery-page .gallery-introduction-grid,
  .gallery-page .gallery-instagram-grid,
  .gallery-page .gallery-collection-heading {
    gap: 36px;
  }

  .gallery-page .gallery-introduction-copy h2,
  .gallery-page .gallery-instagram-copy h2,
  .gallery-page .gallery-collection-heading h2,
  .gallery-page .gallery-cinematic-content h2,
  .gallery-page .gallery-final-content h2 {
    font-size:
      clamp(43px, 13vw, 62px);
  }

  .gallery-page .gallery-introduction-visual {
    min-height: 440px;
  }

  .gallery-page .gallery-introduction-main {
    position: relative;

    width: 100%;
    height: 380px;
  }

  .gallery-page .gallery-introduction-small {
    bottom: -20px;

    width: 155px;
    height: 190px;
  }

  .gallery-page .gallery-introduction-badge {
    right: 8px;
    bottom: -20px;

    width: 205px;
    padding: 17px;
  }

  .gallery-page .gallery-introduction-number {
    display: none;
  }

  .gallery-page .gallery-filters {
    display: grid;

    grid-template-columns:
      repeat(2, 1fr);
  }

  .gallery-page .gallery-filter {
    width: 100%;
    padding-inline: 12px;
  }

  .gallery-page .gallery-masonry {
    grid-template-columns: 1fr;

    grid-auto-rows: 330px;
  }

  .gallery-page .gallery-item,
  .gallery-page .gallery-item-large,
  .gallery-page .gallery-item-medium,
  .gallery-page .gallery-item-small,
  .gallery-page .gallery-item-wide,
  .gallery-page .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;

    min-height: 330px;
  }

  .gallery-page .gallery-open figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .gallery-page .gallery-zoom-icon {
    top: 15px;
    right: 15px;
  }

  .gallery-page .gallery-collection-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .gallery-page .gallery-cinematic {
    min-height: 690px;
  }

  .gallery-page .gallery-cinematic-overlay {
    background:
      rgba(255, 255, 255, 0.6);
  }

  .gallery-page .gallery-cinematic-content {
    padding: 30px 21px;
  }

  .gallery-page .gallery-cinematic-stats {
    grid-template-columns: 1fr;
  }

  .gallery-page .gallery-cinematic-stats article {
    padding: 18px 0;
  }

  .gallery-page .gallery-cinematic-stats
  article:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;
  }

  .gallery-page .comparison {
    height: 400px;
  }

  .gallery-page .comparison-after {
    width:
      calc(100vw - 50px);
  }

  .gallery-page .transformation-content {
    padding: 24px 20px 26px;
  }

  .gallery-page .instagram-profile {
    grid-template-columns:
      44px 1fr 20px;

    padding: 14px;
  }

  .gallery-page .instagram-profile-icon {
    width: 44px;
    height: 44px;
  }

  .gallery-page .instagram-preview {
    gap: 9px;
  }

  .gallery-page .instagram-preview a {
    border-radius: 18px;
  }

  .gallery-page .gallery-final-cta {
    min-height: 650px;
  }

  .gallery-page .gallery-final-content {
    padding: 32px 20px;
  }

  .gallery-page .gallery-final-actions {
    display: grid;
  }

  .gallery-page .gallery-final-actions .btn {
    width: 100%;
  }

  .gallery-page .lightbox-container {
    padding:
      72px 12px 20px;
  }

  .gallery-page .lightbox-close {
    top: 13px;
    right: 13px;

    width: 46px;
    height: 46px;
  }

  .gallery-page .lightbox-navigation {
    top: auto;
    bottom: 18px;

    width: 48px;
    height: 48px;
  }

  .gallery-page .lightbox-previous {
    left: 18px;
  }

  .gallery-page .lightbox-next {
    right: 18px;
  }

  .gallery-page .lightbox-figure {
    max-height:
      calc(100vh - 92px);

    border-radius: 24px;
  }

  .gallery-page .lightbox-image-wrapper {
    min-height: 330px;
  }

  .gallery-page .lightbox-figure figcaption {
    min-height: 150px;
    padding: 22px;
  }

  .gallery-page .lightbox-figure h2 {
    font-size: 22px;
  }

  .gallery-page .footer-grid {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .gallery-page .footer-bottom {
    padding: 20px 0;

    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .gallery-page .floating-whatsapp {
    right: 15px;
    bottom: 15px;

    width: 52px;
    height: 52px;
  }
}

/* =========================================================
   PETITS MOBILES
========================================================= */

@media (max-width: 420px) {
  .gallery-page {
    --container:
      min(100% - 22px, 1180px);
  }

  .gallery-page .gallery-hero-copy h1 {
    font-size: 49px;
  }

  .gallery-page .gallery-introduction-visual {
    min-height: 405px;
  }

  .gallery-page .gallery-introduction-main {
    height: 345px;
  }

  .gallery-page .gallery-introduction-small {
    width: 135px;
    height: 165px;
  }

  .gallery-page .gallery-introduction-badge {
    width: 190px;
  }

  .gallery-page .gallery-masonry {
    grid-auto-rows: 310px;
  }

  .gallery-page .gallery-item {
    min-height: 310px;
  }

  .gallery-page .comparison {
    height: 355px;
  }

  .gallery-page .comparison-label {
    top: 14px;
    padding: 8px 10px;
  }

  .gallery-page .comparison-label.before {
    left: 14px;
  }

  .gallery-page .comparison-label.after {
    right: 14px;
  }

  .gallery-page .comparison-line span {
    width: 48px;
    height: 48px;
  }

  .gallery-page .gallery-final-content > img {
    max-width: 160px;
  }

  .gallery-page .lightbox-image-wrapper {
    min-height: 280px;
  }
}

/* =========================================================
   MOUVEMENTS RÉDUITS
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .gallery-page *,
  .gallery-page *::before,
  .gallery-page *::after {
    scroll-behavior: auto !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .gallery-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-page .floating-whatsapp::before,
  .gallery-page .scroll-indicator span::after {
    display: none;
  }
}