/*
Theme Name: Studio Yetta
Theme URI: http://studio-yetta.local
Author: Stéphane Duboille
Description: Thème WordPress entièrement codé à la main et avec le 💜.
Version: 1.0
Text Domain: studio-yetta
*/

@font-face {
  font-family: "Jokker";
  src: url("assets/fonts/Jokker-Regular.woff2") format("woff2"),
       url("assets/fonts/Jokker-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jokker";
  src: url("assets/fonts/Jokker-Medium.woff2") format("woff2"),
       url("assets/fonts/Jokker-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jokker";
  src: url("assets/fonts/Jokker-Semibold.woff2") format("woff2"),
       url("assets/fonts/Jokker-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Regular.woff2") format("woff2"),
       url("assets/fonts/Recoleta-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Black.woff2") format("woff2"),
       url("assets/fonts/Recoleta-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BagelFatOne";
  src: url("assets/fonts/BagelFatOne.woff2") format("woff2"),
       url("assets/fonts/BagelFatOne.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  margin-top: 0 !important;
  overflow-y: scroll;
  width: 100%;
  max-width: 100vw;
}

body {
  margin: 0;
  padding-top: 0 !important;
  font-family: -apple-system, BlinkMacSystemFont, Inter, Segoe UI, Roboto, sans-serif;
  background: var(--page-bg, #F5F5F5);
  color: #333333;
  line-height: 1.6;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

#wpadminbar {
  position: fixed !important;
  top: 0 !important;
}

:root {
  --container-width: 1100px;
  --color-text: #222;
  --color-light: #555;
  --color-bg: #fafafa;
  --color-white: #fff;

  --color-accent: #7b5cff;
  --color-accent-dark: #5a3ce0;

  --radius: 12px;
}

body.is-transitioning {
  background: inherit !important;
}

body.is-transitioning.page-intro,
body.is-transitioning.page-qui,
body.is-transitioning.page-quoi,
body.is-transitioning.page-work,
body.is-transitioning.page-mentions-legales,
body.is-transitioning.page-conditions-utilisation,
body.is-transitioning.page-legal-notice,
body.is-transitioning.page-terms-of-use,
body.is-transitioning.page-privacy-policy,
body.is-transitioning.error404 {
  --page-bg: inherit !important;
  background: inherit !important;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

section {
  padding: 3rem 0;
}

section.hero {
  padding: 0 !important;
}

.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  border: none;
  transition:
    transform 0.45s ease,
    opacity 0.3s ease;
}

.site-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.site-header.show {
  transform: translateY(0);
  opacity: 1;
}

.header-inner {
  width: 100%;
  padding: 1% 3% 0 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-center,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-center {
  justify-content: center;
}

.header-right {
  justify-content: flex-end;
}

.logo-img {
  height: 69px;
  width: auto;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-menu a,
.contact-link {
  color: var(--menu-color, #222);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Jokker", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}

.main-menu a:hover,
.contact-link:hover {
  color: inherit !important;
}

.main-menu a,
.contact-link {
  transition: none !important;
}

.main-menu a::after,
.contact-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-menu a:hover::after,
.contact-link:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: var(--popup-overlay);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
}

.popup-overlay.active {
  display: flex;
}

.popup-wrapper {
  position: relative;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 1/1;
}

.popup-shadow-spin {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(1.45);
  width: 110%;
  height: 110%;
  z-index: 1;
  background: var(--popup-shadow);
  filter: blur(55px);
  opacity: 0.55;
  border-radius: 50%;
  animation: flowerSpin 22s linear infinite;
}

.popup-mask-spin {
  position: absolute;
  inset: 0;
  z-index: 3;

  background: var(--popup-bg);

  -webkit-mask-image: url("assets/img/stickers/Sticker_Flower.svg");
  mask-image: url("assets/img/stickers/Sticker_Flower.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;

  animation: flowerSpin 22s linear infinite;
}

@keyframes flowerSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.popup-inner {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 3.4rem;
  pointer-events: none;
}

.popup-inner p {
  font-family: "Recoleta", serif;
  font-weight: 400;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.45;
  color: var(--popup-text);
}

.popup-inner .email {
  font-weight: 900;
  color: var(--popup-text);
  text-decoration: none;
  pointer-events: auto;
}

.popup-inner a,
.popup-inner .email {
  color: var(--popup-text);
}

.popup-close {
  position: absolute;
  bottom:15%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  font-weight: 900;
  font-family: "Recoleta", serif;

  background: none;
  border: none;
  cursor: pointer;

  color: var(--popup-text);
  z-index: 10;

  transition: transform 0.25s ease, opacity 0.2s ease;
  pointer-events: auto;
}

.popup-close:hover {
  transform: translateX(-50%) scale(1.15);
  opacity: 0.8;
}

@media (max-width: 800px) {
  .popup-wrapper {
    max-width: 85vw;
  }

  .popup-inner p {
    font-size: 1.15rem;
  }

  .popup-close {
    font-size: 2rem;
    bottom: 12%;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg img,
.hero-fg img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  user-select: none;
}

.hero-bg img { z-index: 1; }
.hero-fg img { z-index: 3; }

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-text h1 {
  font-family: "BagelFatOne", sans-serif;
  font-size: clamp(3rem, 26.041vw, 500px);
  color: var(--hero-text-color, #333);
  margin: 0;
}

.hero-text-marquee {
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: scroll 100s linear infinite;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 4.5rem;
    animation: scroll 100s linear infinite;
}

.marquee-content h1 {
    white-space: nowrap;
    padding: 0 2rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 800px) {
    .marquee {
        animation: scroll 15s linear infinite;
    }
    
    .marquee-content {
        gap: 2rem;
    }
    
    .marquee-content h1 {
        padding: 0 1rem;
    }
}

.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translateX(-50%);
  z-index: 10;
  width: clamp(14px, 1.8vw, 22px);
  height: auto;
  cursor: var(--app-cursor-pointer) !important;
  transition: transform 0.3s ease;
}

.hero-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 120px;
}

.hero-arrow:hover {
  transform: translateX(-50%) translateY(-3px);
  opacity: 1 !important;
}

.hero-arrow img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

@media (max-width: 800px) {
  .hero-arrow {
    bottom: 10%;
    width: 20px;
  }

  .hero-text {
    top: 32% !important;
  }
}

.intro-text-section {
  padding: 100px 3% 120px 3%;
  max-width: 950px;
  margin: 0 auto;
}

.intro-title {
  font-family: "Recoleta", serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 68px;
  margin: 0 0 80px 0;
  color: var(--intro-title-color, #333);
}

.intro-paragraph {
  font-family: "Jokker", sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 48px;
  margin: 0;
  margin-bottom: 2rem;
  color: var(--intro-paragraph-color, #333);
}

.intro-paragraph a,
.intro-paragraph .email,
.popup-inner a,
.popup-inner .email {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.intro-paragraph a .underline-span,
.intro-paragraph .email .underline-span,
.popup-inner a .underline-span,
.popup-inner .email .underline-span {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10px;
  width: 0;
  background-color: currentColor;
  -webkit-mask-image: url('/wp-content/themes/studio-yetta/assets/img/decorations/Underline_2.webp');
  mask-image: url('/wp-content/themes/studio-yetta/assets/img/decorations/Underline_2.webp');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-paragraph a:hover .underline-span,
.intro-paragraph .email:hover .underline-span,
.popup-inner a:hover .underline-span,
.popup-inner .email:hover .underline-span {
  width: 100%;
}

.intro-paragraph a .underline-span.lower,
.intro-paragraph .email .underline-span.lower {
  bottom: -2px;
}

.intro-paragraph a .underline-span.thick,
.intro-paragraph .email .underline-span.thick {
  height: 17px;
}

@media (max-width: 1200px) {
  .intro-title { font-size: 7vw; line-height: 8vw; }
  .intro-paragraph { font-size: 4.2vw; line-height: 5vw; }
}

@media (max-width: 800px) {
  .intro-title { font-size: 9vw; line-height: 10vw; }
  .intro-paragraph { font-size: 5vw; line-height: 6.5vw; }

  .intro-text-section {
    width: 94%;
    max-width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

.inside-section {
  position: relative;
  background: #D3C3F3;
  min-height: 600px;
  padding: 120px 3% 160px 3%;
  --angle: 15.47deg;

  clip-path: polygon(
    0 calc(0% + tan(var(--angle)) * 100vw),
    100% 0,
    100% calc(100% - tan(var(--angle)) * 100vw),
    0 100%
  );
}

.inside-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.inside-section-title {
  font-family: "Recoleta", serif;
  font-size: 54px;
  font-weight: 900;
  color: #8806CE;
  text-align: center;
  margin-top: 20px;
  transform: rotate(-15.47deg);
}

.back-to-top {
  position: fixed;
  bottom: 85px;
  right: -50%;
  width: 8vw;
  max-width: 100px;
  z-index: 5000;
  cursor: pointer;
  transition: right 0.8s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}

.back-to-top img {
  width: 100%;
  height: auto;
  display: block;
}

.back-to-top.visible {
  right: 3%;
  pointer-events: auto;
}

@media (max-width: 800px) {
  .back-to-top {
    width: 16vw;
    bottom: 14%;
  }
}

.back-to-top [data-sticker-peel] {
  display: block;
  width: 100%;
  height: 100%;
}

.back-to-top .draggable {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}

.back-to-top .sticker-container {
  width: 100%;
  height: 100%;
}

.back-to-top .sticker-image,
.back-to-top .flap-image {
  width: 100% !important;
  height: auto !important;
}

.site-footer {
  padding: 1% 3% 1% 3%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  background: var(--footer-bg, inherit);
  z-index: 2;
}

.footer-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: unset;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-left { justify-content: flex-start; }
.footer-center { justify-content: center; gap: 2rem; }
.footer-right { justify-content: flex-end; gap: 2rem; }

.footer-copy,
.footer-link {
  font-family: "Jokker", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--footer-text-color, #fff);
}

.footer-hand {
  position: fixed;
  bottom: 0;
  right: 23%;
  width: clamp(60px, 10vw, 130px);
  z-index: 4000;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
  pointer-events: auto;
}

.footer-hand.visible {
  transform: translateY(4%);
}

.footer-hand img {
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .footer-hand {
    display: none;
  }
}

@media (max-width: 800px) {

  .header-inner {
    padding: 3%;
  }

  .logo-img {
    height: 40px;
  }

  .header-left,
  .header-center,
  .header-right {
    flex: unset;
  }

  .header-center {
    margin-left: auto;
    justify-content: flex-end;
  }

  .header-right .contact-link {
    margin-left: 1rem;
  }

  .main-menu {
    gap: 1rem;
  }

  .main-menu a,
  .contact-link {
    font-size: 1.1rem;
  }

  .site-footer {
    padding: 5% 4% 4%;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    gap: 0.6rem 1rem;
    padding: 0;
  }

  .footer-center {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-right {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
  }

  .footer-left {
    grid-column: 1 / span 2;
    grid-row: 2;
    justify-content: center;
    text-align: center;
    margin-top: 0.5rem;
  }

  .footer-copy,
  .footer-link {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .footer-figure-wrapper {
    display: none;
  }
}

.hero {
  padding: 0 !important;
  margin: 0 !important;
}

.barba-container {
  padding: 0 !important;
  margin: 0 !important;
  padding-bottom: 5.2vw;
}

@media (max-width: 800px) {
    .barba-container {
        padding-bottom: 7.5vw;
    }
}

body.is-transitioning .site-footer,
body.is-transitioning .footer-hand,
body.is-transitioning header.site-header {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-20px);
}

.error404 .site-footer {
  display: none !important;
}

.error404 .hero {
  height: 100vh !important;
  position: relative;
  overflow: hidden;
}

.error404 .glitch-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

.error404 .hero-bg img {
  position: absolute;
  z-index: 1;
}

.error404 .hero-text {
  position: absolute;
  z-index: 3 !important;
  pointer-events: none;
}

.error404 .hero-fg img {
  position: absolute;
  z-index: 4 !important;
  pointer-events: none;
}

.error404 .site-header {
  z-index: 9999 !important;
}

.sticker-404-fr {
  position: absolute;
  top: 15vh;
  right: 21vw;
  z-index: 10;
  width: clamp(120px, 15vw, 250px);
  pointer-events: auto;
}

.sticker-404-fr img {
  width: 100%;
  height: auto;
  display: block;
}

.sticker-back {
  position: fixed !important;
  bottom: 3% !important;
  left: 3% !important;
  z-index: 100;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
}

.sticker-back * {
  margin: 0 !important;
  padding: 0 !important;
}

.sticker-back img,
.sticker-back canvas {
  width: 100%;
  height: auto;
  display: block;
}

.sticker-back-wrapper {
  position: fixed !important;
  bottom: 6%;
  left: 3% !important;
  z-index: 100 !important;
  width: 140px;
  height: 140px;
}

.sticker-home {
  position: fixed !important;
  bottom: 3% !important;
  right: 3% !important;
  z-index: 100;
  cursor: pointer;
  margin: 0 !important;
  padding: 0 !important;
}

.sticker-home * {
  margin: 0 !important;
  padding: 0 !important;
}

.sticker-home img,
.sticker-home canvas {
  width: 100%;
  height: auto;
  display: block;
}

.sticker-home-wrapper {
  position: fixed !important;
  bottom: 6%;
  right: 3% !important;
  z-index: 100 !important;
  width: 140px;
  height: 140px;
}

.sticker-back-wrapper .draggable,
.sticker-home-wrapper .draggable {
  position: fixed !important;
  left: 3% !important;
  bottom: 3% !important;
}

.sticker-home-wrapper .draggable {
  left: auto !important;
  right: 3% !important;
}

@media (max-width: 1024px) {
  .sticker-404-fr {
    top: 12vh;
    right: 18vw;
    width: clamp(100px, 18vw, 200px);
  }
  
  .sticker-back,
  .sticker-home {
    width: clamp(70px, 12vw, 120px);
  }
}

@media (max-width: 768px) {
  .sticker-404-fr {
    top: 10vh;
    right: 15vw;
    width: clamp(80px, 20vw, 150px);
  }
  
  .sticker-back,
  .sticker-home {
    width: clamp(60px, 15vw, 100px);
    bottom: 5%;
  }
  
  .sticker-back {
    left: 5%;
  }
  
  .sticker-home {
    right: 5%;
  }
}

@media (max-width: 480px) {
  .sticker-404-fr {
    top: 8vh;
    right: 10vw;
    width: clamp(70px, 25vw, 120px);
  }
  
  .sticker-back,
  .sticker-home {
    width: clamp(50px, 18vw, 80px);
  }
}

@media (max-width: 800px) {
  body.page-quoi .hero-fg img,
  body.page-what .hero-fg img {
    object-position: calc(50% - 110px) bottom !important;
  }
}

.sticker-home-wrapper,
.sticker-back-wrapper {
  width: 120px;
  height: 120px;
}

.sticker-home-wrapper [data-sticker-peel],
.sticker-back-wrapper [data-sticker-peel] {
  width: 100%;
  height: 100%;
}

.sticker-home-wrapper .draggable,
.sticker-back-wrapper .draggable {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
}

.sticker-home-wrapper .sticker-container,
.sticker-back-wrapper .sticker-container {
  width: 100% !important;
  height: 100% !important;
}

.sticker-home-wrapper .sticker-image,
.sticker-home-wrapper .flap-image,
.sticker-back-wrapper .sticker-image,
.sticker-back-wrapper .flap-image {
  width: 100% !important;
  height: auto !important;
}

.sticker-back-wrapper,
.sticker-home-wrapper {
  cursor: pointer;
  pointer-events: auto !important;
}

.sticker-back-wrapper > div,
.sticker-home-wrapper > div,
.sticker-back-wrapper img,
.sticker-home-wrapper img {
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .sticker-home-wrapper,
  .sticker-back-wrapper {
    width: 120px;
    height: 120px;
    bottom: 5%;
  }
}

@media (max-width: 768px) {
  .sticker-home-wrapper,
  .sticker-back-wrapper {
    width: 100px;
    height: 100px;
    bottom: 6%;
  }
}

@media (max-width: 480px) {
  .sticker-home-wrapper,
  .sticker-back-wrapper {
    width: 80px;
    height: 80px;
    bottom: 7%;
  }
}

.emoji {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  display: inline-block;
}

body.is-transitioning .site-footer,
body.is-transitioning .footer-hand,
body.is-transitioning header.site-header {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-20px);
}

.error404 .hero-text h1 {
  color: #FFDB58;
}

body:not(.ready) .footer-hand {
  transform: translateY(100%);
  opacity: 0;
}

.error404 .footer-hand {
  display: none !important;
}

body.is-transitioning.error404 .hero-text h1 {
  color: #FFDB58 !important;
}

body.is-transitioning:not(.error404) .hero-text h1 {
  color: var(--hero-text-color) !important;
}

#barba-wrapper,
.barba-container {
  background-color: transparent;
}

body {
  background-color: var(--page-bg, #F5F5F5);
}

#transition-circle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  z-index: 9999;
}

.page-intro .site-footer {
  position: relative;
  z-index: 10;
}

.page-intro .footer-hand {
  z-index: 4001;
}

.page-mentions-legales .intro-text-section,
.page-conditions-utilisation .intro-text-section,
.page-politique-de-confidentialite .intro-text-section,
.page-legal-notice .intro-text-section,
.page-terms-of-use .intro-text-section,
.page-privacy-policy .intro-text-section {
  padding-top: 250px;
}

@media (max-width: 800px) {
.page-mentions-legales .intro-text-section,
.page-conditions-utilisation .intro-text-section,
.page-politique-de-confidentialite .intro-text-section,
.page-legal-notice .intro-text-section,
.page-terms-of-use .intro-text-section,
.page-privacy-policy .intro-text-section {
    padding-top: 150px;
  }
}

.intro-paragraph p {
  margin-bottom: 2rem;
}

.intro-paragraph ul,
.intro-paragraph ol {
  list-style-position: outside;
  padding-left: 2rem;
  margin: 0 0 2rem 0;
}

.intro-paragraph li {
  margin-bottom: 0;
  padding-left: 0.5rem;
  line-height: inherit;
}

.intro-paragraph ul {
  list-style-type: disc;
}

.intro-paragraph ol {
  list-style-type: decimal;
}

.intro-paragraph p + ul,
.intro-paragraph p + ol {
  margin-top: -1.5rem;
}

.kit-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.kit-section-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.kit-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: auto;
}

.kit-sticker {
  position: absolute;
  right: 15.5%;
  bottom: 25%;
  width: auto;
  height: auto;
  z-index: 10;
  pointer-events: auto;
}

.kit-sticker .draggable {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  cursor: default !important;
}

.kit-sticker .sticker-image,
.kit-sticker .flap-image {
  width: 260px !important;
  height: auto;
  display: block;
}

.kit-sticker .sticker-container {
  position: relative;
  width: 260px;
  height: 260px;
}

@media (max-width: 1200px) {
  .kit-image {
    width: 160%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .kit-sticker {
    right: 5%;
    bottom: 20%;
  }
  
  .kit-sticker .sticker-image,
  .kit-sticker .flap-image {
    width: 200px !important;
  }
  
  .kit-sticker .sticker-container {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 800px) {
  .kit-image {
    width: 150%;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .kit-sticker {
    right: 10%;
    bottom: 22%;
  }
  
  .kit-sticker .sticker-image,
  .kit-sticker .flap-image {
    width: 140px !important;
  }
  
  .kit-sticker .sticker-container {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .kit-sticker {
    right: 7%;
    bottom: 20%;
  }
  
  .kit-sticker .sticker-image,
  .kit-sticker .flap-image {
    width: 100px !important;
  }
  
  .kit-sticker .sticker-container {
    width: 100px;
    height: 100px;
  }
}

.page-qui .intro-text-section {
  padding-bottom: 20px;
}

.kit-section {
  margin-top: 0;
}

body.page-qui {
  overflow-x: hidden;
}

.page-qui .portrait-section,
.page-who .portrait-section {
  position: relative;
  overflow: visible;
  padding-bottom: 120px;
}

.page-qui .portrait-section,
.page-who .portrait-section { position: relative; overflow: visible; }

.page-qui .hello-sticker,
.page-who .hello-sticker {
  position: absolute;
  top: -60px;
  right: 5%;
  width: 240px;
  height: auto;
  z-index: 10;
  pointer-events: auto;
  will-change: transform;
}

@media (max-width: 800px){
.page-qui .hello-sticker,
.page-who .hello-sticker {
    width: 140px;
    top: -20px;
    right: 3%;
  }
}

@media (max-width: 1200px) {
  .header-inner{
    padding: 2.2% 3% 0 3%;
  }

  .main-menu{
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .main-menu a,
  .contact-link{
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .header-left,
  .header-center,
  .header-right{
    min-width: 0;
  }
}

.wow-animated-wrapper {
    position: relative;
    display: inline-block;
    z-index: 11;
}

.wow-handwriting {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    vertical-align: middle;
    margin: 0 4px;
}

.wow-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.wow-frame-1 {
    z-index: 4;
    animation: wowFrame1 0.5s ease-in-out infinite;
}

.wow-frame-2 {
    z-index: 3;
    animation: wowFrame2 0.5s ease-in-out infinite;
}

.wow-frame-3 {
    z-index: 2;
    animation: wowFrame3 0.5s ease-in-out infinite;
}

.wow-frame-4 {
    z-index: 1;
    animation: wowFrame4 0.5s ease-in-out infinite;
}

@keyframes wowFrame1 {
    0%, 25% {
        opacity: 1;
    }
    26%, 100% {
        opacity: 0;
    }
}

@keyframes wowFrame2 {
    0%, 24% {
        opacity: 0;
    }
    25%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes wowFrame3 {
    0%, 49% {
        opacity: 0;
    }
    50%, 75% {
        opacity: 1;
    }
    76%, 100% {
        opacity: 0;
    }
}

@keyframes wowFrame4 {
    0%, 74% {
        opacity: 0;
    }
    75%, 100% {
        opacity: 1;
    }
}

@media (max-width: 800px) {
    .wow-handwriting {
        width: 45px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .wow-handwriting {
        width: 40px;
        height: 20px;
    }
}

.lazy-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.lazy-text-delay-1 {
    transition-delay: 0.1s;
}

.lazy-text-delay-2 {
    transition-delay: 0.2s;
}

.lazy-text-delay-3 {
    transition-delay: 0.3s;
}

.lazy-text-delay-4 {
    transition-delay: 0.4s;
}

.lazy-text-delay-5 {
    transition-delay: 0.5s;
}

.lazy-text-subtle {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-text-subtle.visible {
    opacity: 1;
    transform: translateY(0);
}

.lazy-text-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-text-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.lazy-text-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy-text-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.lazy-text-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.lazy-text-fade.visible {
    opacity: 1;
}


@media (max-width: 768px) {
    .lazy-text {
        transform: translateY(20px);
    }
    
    .lazy-text-subtle {
        transform: translateY(10px);
    }
    
    .lazy-text-left {
        transform: translateX(-20px);
    }
    
    .lazy-text-right {
        transform: translateX(20px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lazy-text,
    .lazy-text-subtle,
    .lazy-text-left,
    .lazy-text-right {
        transform: none;
        transition: opacity 0.3s ease-out;
    }
}

.word-circle {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.word-circle-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: auto;
    height: auto;
    max-width: none;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.word-circle.visible .word-circle-img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.word-circle-small .word-circle-img {
    width: 100px;
    height: auto;
}

.word-circle-medium .word-circle-img {
    width: 150px;
    height: auto;
}

.word-circle-large .word-circle-img {
    width: 200px;
    height: auto;
}

.word-circle-auto .word-circle-img {
    width: calc(100% + 40px);
    min-width: 80px;
    max-width: 250px;
    height: auto;
}

.word-circle-delay-1 .word-circle-img {
    transition-delay: 0.1s;
}

.word-circle-delay-2 .word-circle-img {
    transition-delay: 0.2s;
}

.word-circle-delay-3 .word-circle-img {
    transition-delay: 0.3s;
}

.word-circle-delay-4 .word-circle-img {
    transition-delay: 0.4s;
}

.word-circle-delay-5 .word-circle-img {
    transition-delay: 0.5s;
}

.word-circle-slow .word-circle-img {
    transition-duration: 1s;
}

.word-circle-fast .word-circle-img {
    transition-duration: 0.4s;
}

.word-circle-colored .word-circle-img {
    filter: none;
}

.word-circle-rotate-1 .word-circle-img {
    transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
}

.word-circle-rotate-1.visible .word-circle-img {
    transform: translate(-50%, -50%) scale(1) rotate(-5deg);
}

.word-circle-rotate-2 .word-circle-img {
    transform: translate(-50%, -50%) scale(0.8) rotate(3deg);
}

.word-circle-rotate-2.visible .word-circle-img {
    transform: translate(-50%, -50%) scale(1) rotate(3deg);
}

.word-circle-rotate-3 .word-circle-img {
    transform: translate(-50%, -50%) scale(0.8) rotate(-8deg);
}

.word-circle-rotate-3.visible .word-circle-img {
    transform: translate(-50%, -50%) scale(1) rotate(-8deg);
}

.word-circle-slide-left .word-circle-img {
    transform: translate(-60%, -50%) scale(0.8);
}

.word-circle-slide-left.visible .word-circle-img {
    transform: translate(-50%, -50%) scale(1);
}

.word-circle-slide-right .word-circle-img {
    transform: translate(-40%, -50%) scale(0.8);
}

.word-circle-slide-right.visible .word-circle-img {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .word-circle-small .word-circle-img {
        width: 80px;
    }
    
    .word-circle-medium .word-circle-img {
        width: 120px;
    }
    
    .word-circle-large .word-circle-img {
        width: 160px;
    }
    
    .word-circle-auto .word-circle-img {
        width: calc(100% + 30px);
        min-width: 70px;
        max-width: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .word-circle-img {
        transform: translate(-50%, -50%) scale(1);
        transition: opacity 0.3s ease-out;
    }
    
    .word-circle.visible .word-circle-img {
        transform: translate(-50%, -50%) scale(1);
    }
}

h2:has(.annotation-flottante) {
    padding-top: 150px; 
}

.annotation-flottante {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
}

.annotation-flottante img {
    position: absolute;
    bottom: 0.5em;
    left: 0 !important;
    margin-left: 0px !important;
    width: 100px;
    height: auto;
    opacity: 0;
    transform-origin: center bottom !important;
    transform: translateX(-15px) translateY(20px) scale(0) !important;
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.annotation-flottante.visible img {
    opacity: 1;
    transform: translateX(-15px) translateY(0) scale(1) !important;
}

@media (max-width: 768px) {
    h2:has(.annotation-flottante) {
        padding-top: 40px !important;
    }
    
    .annotation-flottante img {
        width: 70px !important;
        transform: translateX(-25px) translateY(20px) scale(0) !important;
    }
    
    .annotation-flottante.visible img {
        transform: translateX(-25px) translateY(0) scale(1) !important;
    }
}

@media (max-width: 480px) {
    h2:has(.annotation-flottante) {
        padding-top: 30px !important;
    }
    
    .annotation-flottante img {
        width: 50px !important;
        transform: translateX(-25px) translateY(20px) scale(0) !important;
    }
    
    .annotation-flottante.visible img {
        transform: translateX(-25px) translateY(0) scale(1) !important;
    }
}

@media (max-width: 800px) {
    .annotation-flottante img {
        width: 50px !important;
        transform: translateX(-10px) translateY(20px) scale(0) !important;
    }
    
    .annotation-flottante.visible img {
        transform: translateX(-10px) translateY(0) scale(1) !important;
    }
}

.highlight-word {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.highlight-word::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: calc(100% + 20px);
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    pointer-events: none;
}

.highlight-word.visible::before {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
}

.highlight-1::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_1.webp');
}

.highlight-2::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_2.webp');
}

.highlight-3::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_3.webp');
}

.highlight-4::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_4.webp');
}

.highlight-5::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_5.webp');
}

.highlight-6::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_6.webp');
}

.highlight-7::before {
    background-image: url('/wp-content/themes/studio-yetta/assets/img/highlights/Highlight_7.webp');
}

.highlight-tight::before {
    width: calc(100% + 10px);
}

.highlight-wide::before {
    width: calc(100% + 30px);
}

.highlight-delay-1::before {
    transition-delay: 0.1s;
}

.highlight-delay-2::before {
    transition-delay: 0.2s;
}

.highlight-delay-3::before {
    transition-delay: 0.3s;
}

.highlight-delay-4::before {
    transition-delay: 0.4s;
}

.highlight-delay-5::before {
    transition-delay: 0.5s;
}

.highlight-from-left::before {
    transform: translate(-60%, -50%) scale(0.5);
}

.highlight-from-left.visible::before {
    transform: translate(-50%, -50%) scale(1);
}

.highlight-from-right::before {
    transform: translate(-40%, -50%) scale(0.5);
}

.highlight-from-right.visible::before {
    transform: translate(-50%, -50%) scale(1);
}

.highlight-slow::before {
    transition-duration: 1s;
}

.highlight-fast::before {
    transition-duration: 0.4s;
}

@media (max-width: 768px) {
    .highlight-word::before {
        width: calc(100% + 15px);
    }
    
    .highlight-tight::before {
        width: calc(100% + 8px);
    }
    
    .highlight-wide::before {
        width: calc(100% + 20px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .highlight-word::before {
        transform: translate(-50%, -50%) scale(1);
        transition: opacity 0.3s ease-out;
    }
    
    .highlight-word.visible::before {
        transform: translate(-50%, -50%) scale(1);
    }
}

.underline-word {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.underline-word-img {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: calc(100% + 20px);
    height: auto;
    max-width: none;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.underline-word.visible .underline-word-img {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.underline-tight .underline-word-img {
    width: calc(100% + 10px);
}

.underline-wide .underline-word-img {
    width: calc(100% + 30px);
}

.underline-close .underline-word-img {
    bottom: -2px;
}

.underline-far .underline-word-img {
    bottom: -8px;
}

.underline-delay-1 .underline-word-img {
    transition-delay: 0.1s;
}

.underline-delay-2 .underline-word-img {
    transition-delay: 0.2s;
}

.underline-delay-3 .underline-word-img {
    transition-delay: 0.3s;
}

.underline-delay-4 .underline-word-img {
    transition-delay: 0.4s;
}

.underline-delay-5 .underline-word-img {
    transition-delay: 0.5s;
}

.underline-slow .underline-word-img {
    transition-duration: 1s;
}

.underline-fast .underline-word-img {
    transition-duration: 0.4s;
}

.underline-from-left .underline-word-img {
    transform: translateX(-100%) scaleX(0);
    transform-origin: left;
}

.underline-from-left.visible .underline-word-img {
    transform: translateX(-50%) scaleX(1);
}

.underline-from-right .underline-word-img {
    transform: translateX(0%) scaleX(0);
    transform-origin: right;
}

.underline-from-right.visible .underline-word-img {
    transform: translateX(-50%) scaleX(1);
}

.underline-rotate-1 .underline-word-img {
    transform: translateX(-50%) scaleX(0) rotate(-2deg);
}

.underline-rotate-1.visible .underline-word-img {
    transform: translateX(-50%) scaleX(1) rotate(-2deg);
}

.underline-rotate-2 .underline-word-img {
    transform: translateX(-50%) scaleX(0) rotate(2deg);
}

.underline-rotate-2.visible .underline-word-img {
    transform: translateX(-50%) scaleX(1) rotate(2deg);
}

@media (max-width: 768px) {
    .underline-word-img {
        width: calc(100% + 15px);
    }
    
    .underline-tight .underline-word-img {
        width: calc(100% + 8px);
    }
    
    .underline-wide .underline-word-img {
        width: calc(100% + 20px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .underline-word-img {
        transform: translateX(-50%) scaleX(1);
        transition: opacity 0.3s ease-out;
    }
    
    .underline-word.visible .underline-word-img {
        transform: translateX(-50%) scaleX(1);
    }
}

.inline-image-push {
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    width: 0;
    height: 1em;
    overflow: visible;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

h2 .inline-image-push {
    height: 0.7em !important;
}

h2 .inline-image-push.visible {
    width: 0.7em !important;
}

h2 .inline-image-push img {
    height: 0.7em !important;
}

.inline-image-push.visible {
    width: 1em;
    margin: 0 0.3em;
}

.inline-image-push img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: center bottom;
    height: 1em;
    width: auto;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.inline-image-push.visible img {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.inline-image-small {
    height: 0.8em;
}

.inline-image-small.visible {
    width: 0.8em;
}

.inline-image-small img {
    height: 0.8em;
}

.inline-image-medium {
    height: 1em;
}

.inline-image-medium.visible {
    width: 1em;
}

.inline-image-medium img {
    height: 1em;
}

.inline-image-large {
    height: 1.3em;
}

.inline-image-large.visible {
    width: 1.3em;
}

.inline-image-large img {
    height: 1.3em;
}

.inline-image-xlarge {
    height: 1.5em;
}

.inline-image-xlarge.visible {
    width: 1.5em;
}

.inline-image-xlarge img {
    height: 1.5em;
}

.inline-image-delay-1 img {
    transition-delay: 0.1s;
}

.inline-image-delay-1 {
    transition-delay: 0.1s;
}

.inline-image-delay-2 img {
    transition-delay: 0.2s;
}

.inline-image-delay-2 {
    transition-delay: 0.2s;
}

.inline-image-delay-3 img {
    transition-delay: 0.3s;
}

.inline-image-delay-3 {
    transition-delay: 0.3s;
}

.inline-image-straight img {
    left: 0;
    transform: translateY(10px) scale(0);
    transform-origin: center bottom;
}

.inline-image-straight.visible img {
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .inline-image-push,
    .inline-image-push img {
        transition-duration: 0.3s;
    }
    
    .inline-image-push img {
        transform: translateX(-50%) scale(1);
    }
}

body.is-transitioning {
    background-color: var(--locked-bg-color, currentColor) !important;
}

body.is-transitioning.page-intro,
body.is-transitioning.page-qui,
body.is-transitioning.page-quoi,
body.is-transitioning.page-work,
body.is-transitioning.page-mentions-legales,
body.is-transitioning.page-conditions-utilisation,
body.is-transitioning.page-politique-de-confidentialite,
body.is-transitioning.page-legal-notice,
body.is-transitioning.page-terms-of-use,
body.is-transitioning.page-privacy-policy,
body.is-transitioning.error404 {
    --page-bg: var(--locked-bg-color) !important;
}

html.is-transitioning,
body.is-transitioning {
    background-color: var(--locked-bg-color) !important;
}

.services-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.triangle-top-quoi {
  width: 100%;
  background: #F9D5E5;
  height: calc(28.1vw + 5px);
  clip-path: polygon(
    -0.5% 100.5%,
    100% 0,
    100% 100.5%
  );
  margin: 0;
  margin-top: -100px !important;
  padding: 0;
  display: block;
}

.services-container {
  background-color: #F9D5E5;
  padding: 80px 0 0;
  position: relative;
}

.triangle-bottom-quoi {
  width: 100%;
  background: #F9D5E5;
  height: calc(28.1vw + 5px);
  clip-path: polygon(
    0 0,
    100.5% 0,
    -0.5% 100.5%
  );
  margin: 0;
  padding: 0;
  display: block;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 0 60px;
}

.service-item:last-child {
  margin-bottom: 0 !important;
}

.service-image-left {
  flex-direction: row;
}

.service-image-left .service-image {
  order: -1;
}

.service-image-left .service-content {
  order: 1;
}

.service-text-left {
  flex-direction: row;
}

.service-text-left .service-content {
  order: -1;
}

.service-text-left .service-image {
  order: 1;
}

.service-image {
  flex: 0 0 350px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.service-content {
  flex: 1;
  min-width: 0;
}

.service-title {
  font-family: 'Recoleta', serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #BE252B;
  margin: 0 0 24px;
}

.service-subtitle {
  font-family: 'Jokker', sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.3;
  color: #BE252B;
  margin: 0 0 20px;
}

.service-description {
  font-family: 'Jokker', sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.4;
  color: #BE252B;
  margin: 0;
}

@media (max-width: 1024px) {
  .service-item {
    gap: 50px;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  
  .service-image {
    flex: 0 0 280px;
    width: 280px;
  }
  
  .service-title {
    font-size: 40px;
  }
  
  .service-subtitle {
    font-size: 28px;
  }
  
  .service-description {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .triangle-top-quoi {
    height: calc(35vw + 5px);
  }
  
  .services-container {
    padding: 50px 0 80px;
  }
  
  .service-item {
    flex-direction: column !important;
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .service-item .service-image {
    order: -1 !important;
    flex: 0 0 220px;
    width: 220px;
    margin: 0 auto;
  }
  
  .service-item .service-content {
    order: 1 !important;
  }
  
  .service-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .service-subtitle {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .service-description {
    font-size: 20px;
  }
  
  .triangle-bottom-quoi {
    height: calc(35vw + 5px);
  }
}

@media (max-width: 480px) {
  .service-item .service-image {
    flex: 0 0 180px;
    width: 180px;
  }
  
  .service-title {
    font-size: 28px;
  }
  
  .service-subtitle {
    font-size: 20px;
  }
  
  .service-description {
    font-size: 18px;
  }
}

.service-image {
  flex: 0 0 350px;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-image .sticker-normal {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.service-image .sticker-animated {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  animation: stickerPulse 5s infinite;
}

@keyframes stickerPulse {
  0% {
    opacity: 0;
  }
  5.4% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.service-item:nth-child(1) .sticker-animated {
  animation-delay: 0s;
}

.service-item:nth-child(2) .sticker-animated {
  animation-delay: 1.25s;
}

.service-item:nth-child(3) .sticker-animated {
  animation-delay: 2.5s;
}

.service-item:nth-child(4) .sticker-animated {
  animation-delay: 3.75s;
}

.service-text-left .service-image {
  flex: 0 0 350px;
  width: 350px;
  height: 350px;
}

.service-text-left .service-image .sticker-normal,
.service-text-left .service-image .sticker-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .service-image {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .service-item .service-image {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .service-item .service-image {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
  }
}

:root {
  --app-cursor-default: url('assets/img/cursors/cursor-default.svg') 16 16, auto;
  --app-cursor-pointer: url('assets/img/cursors/cursor-pointer.svg') 24 8, pointer;
  --app-cursor-grab: url('assets/img/cursors/cursor-grab.svg') 32 32, grab;
  --app-cursor-grabbing: url('assets/img/cursors/cursor-grabbing.svg') 32 32, grabbing;
  --app-cursor-active: url('assets/img/cursors/cursor-pointer.svg') 24 8, pointer;
  --app-cursor-special: url('assets/img/cursors/cursor-special.svg') 32 32, pointer;
  --app-cursor-social: url('assets/img/cursors/cursor-stalk-me.svg') 32 32, pointer;
  --app-cursor-more: url('assets/img/cursors/cursor-see-more.svg') 32 32, pointer;
  --app-cursor-not-allowed: not-allowed;
}

html {
  cursor: var(--app-cursor-default);
}

html a,
html button,
html label,
.contact-link,
.cookies-btn {
  cursor: var(--app-cursor-pointer) !important;
}

html a:active,
html button:active,
html label:active {
  cursor: var(--app-cursor-active);
}

[data-sticker-peel] {
  cursor: var(--app-cursor-grab) !important;
}

[data-sticker-peel]:active {
  cursor: var(--app-cursor-grabbing) !important;
}

.hero,
.sticker-home-wrapper,
.sticker-back-wrapper,
.back-to-top,
.kit-image,
.footer-hand,
.service-image,
.hello-sticker,
.hello-sticker:hover,
.projet-hero {
  cursor: var(--app-cursor-special) !important;
}

.hello-sticker * {
  pointer-events: none !important;
  cursor: inherit !important;
}

:disabled,
[disabled],
.disabled {
  cursor: var(--app-cursor-not-allowed) !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea {
  cursor: text !important;
}

.draggable,
.gsap-draggable,
[data-sticker-peel] .draggable,
.sticker-peel .draggable {
  cursor: var(--app-cursor-grab) !important;
}

.draggable:active,
.gsap-draggable:active,
[data-sticker-peel] .draggable:active,
.sticker-peel .draggable:active,
body.dragging .draggable,
body.dragging [data-sticker-peel] .draggable {
  cursor: var(--app-cursor-grabbing) !important;
}

.gu-mirror,
.gu-transit {
  cursor: var(--app-cursor-grabbing) !important;
}

* {
  cursor: inherit;
}

html * {
  cursor: inherit;
}

[draggable="true"],
.draggable-item,
.sticker-image,
.flap-image {
  cursor: var(--app-cursor-grab) !important;
}

[draggable="true"]:active,
.draggable-item:active,
.sticker-image:active,
.flap-image:active {
  cursor: var(--app-cursor-grabbing) !important;
}

.footer-right a[href*="instagram"],
.footer-right a[href*="twitter"] {
  cursor: var(--app-cursor-social) !important;
}

.footer-right a[href*="instagram"]:hover,
.footer-right a[href*="twitter"]:hover {
  cursor: var(--app-cursor-social) !important;
}

footer a,
footer a:hover,
footer button,
footer button:hover,
.social-links a,
.social-links a:hover {
  cursor: var(--app-cursor-pointer) !important;
}

footer a *,
footer a *:hover,
footer a *:focus,
footer button *,
footer button *:hover,
.social-links a *,
.social-links a *:hover {
  pointer-events: none !important;
}

footer a svg,
footer a img,
footer a span,
footer a div,
footer button svg,
footer button img,
.social-links a svg,
.social-links a img {
  cursor: inherit !important;
  pointer-events: none !important;
}

footer a::before,
footer a::after,
footer button::before,
footer button::after {
  pointer-events: none !important;
  cursor: inherit !important;
}

footer a,
footer button,
.social-links a {
  pointer-events: auto !important;
}

footer a,
.footer-link {
  display: inline-block;
  padding: 4px 8px;
  margin: -4px -8px;
  cursor: var(--app-cursor-pointer) !important;
}

footer a:active,
.footer-link:active {
  cursor: var(--app-cursor-active) !important;
}

.projects-item-clickable,
.projects-item-clickable:hover,
.project-overlay-link,
.projects-item.service-image-left {
  cursor: var(--app-cursor-more) !important;
}

.projects-item-clickable *,
.projects-item-clickable img,
.projects-content,
.projects-image {
  cursor: inherit !important;
}

.popup-close,
.popup-close:hover,
.popup-close:focus,
.popup-close:active {
  cursor: var(--app-cursor-pointer) !important;
}

.popup-close * {
  pointer-events: none !important;
  cursor: inherit !important;
}

.popup-close span,
.popup-close div {
  pointer-events: none !important;
}

.popup-overlay,
.popup-wrapper,
.popup-inner {
  cursor: var(--app-cursor-default);
}

.popup-overlay a,
.popup-wrapper a,
.popup-inner a {
  cursor: var(--app-cursor-pointer) !important;
}

.scroll-arrow,
.scroll-down,
.hero-arrow,
.arrow-down,
[class*="scroll"],
[class*="arrow"] {
  cursor: var(--app-cursor-pointer) !important;
}

.scroll-arrow:hover,
.scroll-arrow:focus,
.scroll-arrow:active,
.scroll-down:hover,
.scroll-down:focus,
.scroll-down:active {
  cursor: var(--app-cursor-pointer) !important;
}

.scroll-arrow *,
.scroll-down *,
.hero-arrow *,
.arrow-down * {
  pointer-events: none !important;
  cursor: inherit !important;
}

.scroll-arrow svg,
.scroll-down svg {
  pointer-events: none !important;
}

.projects-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}

.triangle-top-work {
  width: 100%;
  background: #D1DFFA;
  height: calc(28.1vw + 5px);
  clip-path: polygon(
    -0.5% 100.5%,
    100% 0,
    100% 100.5%
  );
  margin: 0;
  margin-top: -100px !important;
  padding: 0;
  display: block;
}

.projects-container {
  background-color: #D1DFFA;
  padding: 80px 0 0;
  position: relative;
}

.projects-item-clickable {
  position: relative;
  cursor: var(--app-cursor-pointer);
}

.project-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  text-decoration: none;
}

.triangle-bottom-work {
  width: 100%;
  background: #D1DFFA;
  height: calc(28.1vw + 5px);
  clip-path: polygon(
    0 0,
    100.5% 0,
    -0.5% 100.5%
  );
  margin: 0;
  padding: 0;
  display: block;
}

.projects-item {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 0 60px;
}

.projects-item:last-child {
  margin-bottom: 0 !important;
}

.projects-image-left {
  flex-direction: row;
}

.projects-image-left .projects-image {
  order: -1;
}

.projects-image-left .projects-content {
  order: 1;
}

.projects-text-left {
  flex-direction: row;
}

.projects-text-left .projects-content {
  order: -1;
}

.projects-text-left .projects-image {
  order: 1;
}

.projects-image {
  flex: 0 0 350px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.projects-content {
  flex: 1;
  min-width: 0;
}

.projects-title {
  font-family: 'Recoleta', serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #FF7900;
  margin: 0 0 24px;
}

.projects-subtitle {
  font-family: 'Jokker', sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.3;
  color: #FF7900;
  margin: 0 0 20px;
}

.projects-description {
  font-family: 'Jokker', sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.4;
  color: #FF7900;
  margin: 0;
}

@media (max-width: 1024px) {
  .projects-item {
    gap: 50px;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  
  .projects-image {
    flex: 0 0 280px;
    width: 280px;
  }
  
  .projects-title {
    font-size: 40px;
  }
  
  .projects-subtitle {
    font-size: 28px;
  }
  
  .projects-description {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .triangle-top-work {
    height: calc(35vw + 5px);
  }
  
  .projects-container {
    padding: 50px 0 80px;
  }
  
  .projects-item {
    flex-direction: column !important;
    gap: 30px;
    padding: 0 20px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .projects-item .projects-image {
    order: -1 !important;
    flex: 0 0 220px;
    width: 220px;
    margin: 0 auto;
  }
  
  .projects-item .projects-content {
    order: 1 !important;
  }
  
  .projects-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .projects-subtitle {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .projects-description {
    font-size: 20px;
  }
  
  .triangle-bottom-work {
    height: calc(35vw + 5px);
  }
}

@media (max-width: 480px) {
  .projects-item .projects-image {
    flex: 0 0 180px;
    width: 180px;
  }
  
  .projects-title {
    font-size: 28px;
  }
  
  .projects-subtitle {
    font-size: 20px;
  }
  
  .projects-description {
    font-size: 18px;
  }
}

.projects-image {
  flex: 0 0 350px;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.projects-image .sticker-animated-1 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: stickerPulse 2s infinite;
}

.projects-image .sticker-animated-2 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  animation: stickerPulse 2s infinite;
  animation-delay: 0.5s;
}

.projects-image .sticker-animated-3 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 3;
  animation: stickerPulse 2s infinite;
  animation-delay: 1s;
}

.projects-image .sticker-animated-4 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 4;
  animation: stickerPulse 2s infinite;
  animation-delay: 1.5s;
}

@keyframes stickerPulse {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  26% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.projects-item:nth-child(1) .sticker-animated {
  animation-delay: 0s;
}

.projects-item:nth-child(2) .sticker-animated {
  animation-delay: 1.25s;
}

.projects-item:nth-child(3) .sticker-animated {
  animation-delay: 2.5s;
}

.projects-item:nth-child(4) .sticker-animated {
  animation-delay: 3.75s;
}

.projects-text-left .projects-image {
  flex: 0 0 350px;
  width: 350px;
  height: 350px;
}

.projects-text-left .projects-image .sticker-normal,
.projects-text-left .projects-image .sticker-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .projects-image {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .projects-item .projects-image {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .projects-item .projects-image {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
  }
}

.projet-meta-section {
  width: 100%;
  padding: 120px 3% 150px 3%;
  background: #F5F5F5;
  margin-top: 90px;
}

.projet-meta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.meta-col {
  flex-shrink: 0;
}

.meta-col-annee {
  width: 120px;
}

.meta-col-realisations {
  width: 180px;
}

.meta-col-titre {
  flex: 1;
  min-width: 0;
}

.meta-label {
  font-family: 'Jokker', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #8806CE;
  margin: 0 0 25px 0;
  line-height: 1;
  text-transform: uppercase;
}

.meta-value {
  font-family: 'Jokker', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #333333;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.meta-value:last-child {
  margin-bottom: 0;
}

.projet-titre {
  font-family: "Recoleta", serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 1.1;
  color: #333333;
  margin: 0 0 60px 0;
}

.projet-copy-wrapper {
  margin-top: 0;
}

.projet-copy {
  font-family: 'Jokker', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 20px 0;
}

.projet-copy:last-child {
  margin-bottom: 0;
}

.projet-hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.projet-hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.projet-content-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 3%;
}

.projet-description-section {
  width: 100%;
  padding: 0 3%;
  background: #F5F5F5;
}

.projet-description-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.description-col {
  flex-shrink: 0;
}

.description-col-titre {
  width: 380px;
}

.description-col-texte {
  flex: 1;
  min-width: 0;
}

.description-titre {
  font-family: "Recoleta", serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.2;
  color: #333333;
  margin: 0;
  padding: 130px 0;
}

.description-texte-wrapper {
  padding: 130px 0;
}

.description-texte {
  font-family: 'Jokker', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 20px 0;
}

.description-texte:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .projet-meta-container {
    gap: 60px;
  }
  
  .projet-titre {
    font-size: 48px;
    margin-bottom: 40px;
  }
  
  .projet-copy {
    font-size: 17px;
  }
  
  .projet-description-container {
    gap: 60px;
  }
  
  .description-titre {
    font-size: 30px;
    padding: 100px 0;
  }
  
  .description-texte-wrapper {
    padding: 100px 0;
  }
  
  .description-texte {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .projet-meta-section {
    padding: 100px 5% 60px 5%;
    margin-top: 70px;
  }
  
  .projet-description-section {
    padding: 0 5%;
  }
  
  .projet-meta-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .meta-col-annee,
  .meta-col-realisations {
    width: 100%;
  }
  
  .projet-titre {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .projet-copy {
    font-size: 16px;
  }
  
  .projet-content-section {
    margin: 60px auto;
  }
  
  .projet-description-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .description-col-titre {
    width: 100%;
  }
  
  .description-titre {
    font-size: 28px;
    padding: 60px 0 0 0;
  }
  
  .description-texte-wrapper {
    padding: 0 0 60px 0;
  }
  
  .description-texte {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .projet-meta-section {
    padding: 80px 5% 40px 5%;
    margin-top: 60px;
  }
  
  .projet-titre {
    font-size: 28px;
  }
  
  .meta-label,
  .meta-value {
    font-size: 14px;
  }
  
  .projet-copy {
    font-size: 15px;
  }
  
  .description-titre {
    font-size: 24px;
    padding: 40px 0 0 0;
  }
  
  .description-texte-wrapper {
    padding: 0 0 40px 0;
  }
  
  .description-texte {
    font-size: 15px;
  }
}

.gradient-colors {
  background: linear-gradient(
    90deg,
    #F7C5DB,
    #C3ACEE,
    #FBCC49,
    #23A172,
    #C0D4F8,
    #F7C5DB
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
  display: inline-block;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.bouncing-word {
  display: inline-block;
}

.bouncing-word span {
  display: inline-block;
  animation: letterBounce 1.5s ease-in-out infinite;
}

.bouncing-word span:nth-child(1) {
  animation-delay: 0s;
}

.bouncing-word span:nth-child(2) {
  animation-delay: 0.15s;
}

.bouncing-word span:nth-child(3) {
  animation-delay: 0.3s;
}

.bouncing-word span:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes letterBounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-8px);
  }
}

.language-selector {
  position: fixed;
  bottom: 85px;
  left: -50%;
  width: 8vw;
  max-width: 100px;
  z-index: 5000;
  cursor: var(--app-cursor-default) !important;
  transition: left 0.8s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
}

.language-selector.visible {
  left: 3%;
  pointer-events: auto;
}

.language-selector img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  cursor: var(--app-cursor-default) !important;
}

.lang-link {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  pointer-events: auto;
}

.lang-fr {
  left: 0;
}

.lang-en {
  right: 0;
}

@media (max-width: 800px) {
  .language-selector {
    width: 16vw;
    bottom: 14%;
  }
}

#language-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--popup-overlay);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: var(--app-cursor-default) !important;
}

#language-popup.active {
  display: flex !important;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.popup-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.language-popup-sticker {
  position: relative;
  width: min(90vw, 400px);
  height: auto;
  cursor: pointer;
  cursor: var(--app-cursor-default) !important;
   filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12)) 
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.language-popup-sticker img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  cursor: var(--app-cursor-default) !important;
}

.lang-popup-link {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.lang-popup-fr {
  left: 0;
}

.lang-popup-en {
  right: 0;
}

@media (max-width: 800px) {
  .language-popup-sticker {
    width: 80vw;
  }
}

#cookies-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cookies-popup.active {
  display: flex;
  opacity: 1;
}

.cookies-popup-content {
  position: relative;
  width: min(90vw, 600px);
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-3deg);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12)) 
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.cookies-background {
  width: 94%;
  height: auto;
  display: block;
}

.cookies-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  padding: 20px;
}

.cookies-title {
  font-family: 'Recoleta', serif;
  font-size: clamp(24px, 4vw, 36px);
  color: #8806CE;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.cookies-description {
  font-family: 'Jokker', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  color: #333333;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.cookies-buttons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.cookies-btn {
  font-family: 'Recoleta', serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #8806CE;
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cookies-btn:hover {
  color: #6a0599;
  transform: translateY(-2px);
}

@media (max-width: 800px) {
  .cookies-popup-content {
    width: 95vw;
    max-width: 400px;
  }
  
  .cookies-text-wrapper {
    width: 85%;
    padding: 10px;
  }
  
  .cookies-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .cookies-description {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .cookies-buttons {
    flex-direction: flex;
    gap: 6px;
  }
  
  .cookies-btn {
    font-size: 14px;
    padding: 6px 12px;
    line-height: 1.3;
  }
}

.error404 .site-footer {
  display: none !important;
}

.error404 .hero {
  height: 100vh !important;
  position: relative;
  overflow: hidden;
}

.error404 .hero-bg img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 1;
}

.error404 .glitch-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

.error404 .hero-text {
  position: absolute;
  z-index: 3 !important;
  pointer-events: none;
}

.error404 .hero-fg img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 4 !important;
  pointer-events: none;
}

.error404 .site-header {
  z-index: 9999 !important;
}

@media (max-width: 800px) {
  .error404 .hero {
    min-height: 100dvh;
  }
  
  .error404 .hero-bg img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 1;
  }
  
  .error404 .hero-fg img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 4;
  }
  
  .error404 .glitch-video {
    display: none !important;
  }

  .error404 .back-to-projects-link,
  .error404 .site-header a {
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative;
  }

  .error404 .language-selector {
  display: none !important;
}
}