
@import url("klaro.min.css");

:root {
  --beige: #FAF8F4;
  --peach: #ffa07a;

  --peach-deep: #e07a4f;
  --peach-soft: #ffd9c4;
  --text: #4a3b33;
  --text-light: #fdf6f0;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  overscroll-behavior: none;
  overflow-x: clip;
}

body {
  font-family: "Klee One", sans-serif;
  font-weight: 400;
  color: #4a3b33;
  background: #FAF8F4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  user-select: none;
  -webkit-user-select: none;
}

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

body.page-loading * { transition: none; }

.nav-trigger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  z-index: 99;
  background: transparent;
  pointer-events: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 66px;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: transparent;
  color: #ffffff;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

.logo {
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 4vw, 1.9rem);
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,0.9);
  user-select: none;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1.5vw, 1.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
}

.nav-item {
  font-family: "Klee One", sans-serif;
  font-weight: 500;
  -webkit-text-stroke: 0.1px currentColor;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0.35em 0.4em;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,1), 0 0 12px rgba(0,0,0,0.8);
}

.btn-lang {
  background: var(--peach);
  color: var(--text-light);
  font-size: 0.98rem;
  border-radius: 2em;
  padding: 0.3em 0.9em;
  min-width: 7rem;
  text-shadow: none;
}

.page-blog .site-header:not(.is-scrolled) #btn-lang {
  background: #FAF8F4;
  color: #ffa07a;
}

@media (hover: hover) {
.nav-inner {
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
transition: background-color 600ms ease, color 600ms ease,
            backdrop-filter 600ms ease, -webkit-backdrop-filter 600ms ease,
            box-shadow 600ms ease;
  }

  .nav-trigger:hover ~ .site-header .nav-inner,
  .site-header:hover .nav-inner {
    opacity: 1;
    background: #FAF8F4;
    color: var(--text);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(74, 59, 51, 0.10);
  }

  .nav-item:hover { color: var(--peach-deep); }

  .btn-lang:hover { color: var(--text-light); background: var(--peach-deep); }
}

@media (hover: none) {
  .nav-inner {
    opacity: 0.95;
    background: #FAF8F4;
    color: var(--text);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(74, 59, 51, 0.10);
  }
  .nav-trigger { display: none; }
}

.site-header.is-scrolled .nav-inner {
  opacity: 1;
  background: #FAF8F4;
  color: var(--text);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(74, 59, 51, 0.10);
}
.site-header.is-scrolled .nav-item,
.site-header.is-scrolled .logo,
.site-header.is-scrolled .btn-menu-mobile {
  text-shadow: none;
}
.site-header.is-scrolled .btn-menu-mobile {
  color: #4a3b33;
  --dash-color: #ffa07a;
  background: transparent;
}

.site-header.is-scrolled.is-on-peach .nav-inner {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: blur(0) !important;
  -webkit-backdrop-filter: blur(0) !important;
  color: var(--text-light) !important;
}
.site-header.is-scrolled.is-on-peach .nav-item,
.site-header.is-scrolled.is-on-peach .logo,
.site-header.is-scrolled.is-on-peach .btn-menu-mobile {
  color: var(--text-light) !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.site-header.is-scrolled.is-on-peach .btn-menu-mobile {
  --dash-color: #FAF8F4;
}

.site-header.is-on-peach #btn-lang {
  background: #FAF8F4;
  color: #ffa07a !important;
}

@media (hover: hover) {
  .nav-trigger:hover ~ .site-header.is-scrolled.is-on-peach .nav-inner,
  .site-header.is-scrolled.is-on-peach:hover .nav-inner {
    background: #FAF8F4 !important;
    color: var(--text) !important;
    box-shadow: 0 4px 14px rgba(74, 59, 51, 0.10) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
  }
  .nav-trigger:hover ~ .site-header.is-scrolled.is-on-peach .nav-item,
  .nav-trigger:hover ~ .site-header.is-scrolled.is-on-peach .logo,
  .nav-trigger:hover ~ .site-header.is-scrolled.is-on-peach .btn-menu-mobile,
  .site-header.is-scrolled.is-on-peach:hover .nav-item,
  .site-header.is-scrolled.is-on-peach:hover .logo,
  .site-header.is-scrolled.is-on-peach:hover .btn-menu-mobile {
    color: var(--text) !important;
    text-shadow: none !important;
  }
  .nav-trigger:hover ~ .site-header.is-scrolled.is-on-peach .btn-menu-mobile,
  .site-header.is-scrolled.is-on-peach:hover .btn-menu-mobile {
    --dash-color: #ffa07a;
  }
}

.nav-list > li { position: relative; overflow: visible; }
.nav-item {
  position: relative;
  overflow: visible !important;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  z-index: 99;
  overflow: visible;
  min-width: 190px;
  margin: 0;
  padding: 18px 0 0.4rem 0;
  list-style: none;
  background: rgba(250, 248, 244, 0.9);
  -webkit-backdrop-filter: blur(38px);
  backdrop-filter: blur(8px);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 22px rgba(74, 59, 51, 0.14);

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
  background: transparent;
}

@media (hover: hover) {
  .nav-list > li:hover > .nav-dropdown,
  .nav-list > li.is-open > .nav-dropdown,
  .nav-list > li > .nav-dropdown:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.nav-list > li:focus-within:not(:hover) > .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Klee One", sans-serif;
  font-weight: 400;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0.5em 1.15em;
  cursor: pointer;
  white-space: nowrap;
}

@media (hover: hover) {
  .dropdown-item:hover {
    color: var(--peach-deep);
    background: rgba(255, 160, 122, 0.10);
  }
}


.lang-dropdown {
  right: 0;
  left: auto;
  min-width: 160px;
  overflow: visible;
}

.connexion-dropdown {
  min-width: 140px;
}

.voyage-dropdown {
  min-width: 160px;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}

.lang-currency {
  color: var(--peach-deep);
  font-size: 0.82rem;
  font-weight: 500;
}

.lang-separator {
  height: 1px;
  background: rgba(74, 59, 51, 0.15);
  margin: 0.4rem 1rem;
  pointer-events: none;
}

.lang-lang-item.is-selected {
  color: var(--peach-deep);
  font-weight: 600;
}

.lang-currency-item.is-selected {
  color: var(--peach-deep);
  font-weight: 600;
}

.lang-arrow { display: none; }

.lang-dropdown.is-locked {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.lang-arrow-curved {
  position: absolute;
  top: calc(100% + 8px);
  right: clamp(1.5rem, 5vw, 4rem);
  width: 60px;
  height: 80px;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 150ms ease;
}

.lang-arrow-curved.is-visible {
  opacity: 1;
}

.lang-arrow-curved path {
  fill: none;
  stroke: #ffa07a;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes langBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.btn-lang.is-blinking {
  animation: langBlink 800ms ease 3;
}

.stabilo {
  position: absolute;
  top: -9px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 18px);
  overflow: visible;
  pointer-events: none;
}

.stabilo path {
  fill: none;
  stroke: #ffa07a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stabilo-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: auto;
  height: 12px;
  overflow: visible;
  pointer-events: none;
}

.stabilo-underline path {
  fill: none;
  stroke: #ffa07a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) {
  .cursor-heart-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
  }

  .cursor-heart-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }

  #cursor-heart {
    fill: none;
    stroke: #ffa07a;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

.carousel-section {
  width: 100%;
  height: 100vh;
  background: transparent;
  position: relative;
  z-index: 3;
  overflow: visible;
}

#carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-card-wrapper {
  position: absolute;
  top: 65%;
  width: clamp(260px, 21vw, 270px);
  height: clamp(338px, 27.3vw, 350px);
  border-radius: 16px;
  box-shadow: -6px 10px 28px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  will-change: transform;
}

.carousel-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.carousel-card-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  font-family: "Klee One", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.card-img {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 67%;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 0px;
  pointer-events: none;
}

@media (max-width: 768px) {
  #carousel-panel {
    width: 55% !important;
    padding: clamp(0.5rem, 2vw, 1rem) !important;
  }
}

#glitter-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  transition: opacity 600ms ease;
}

#carousel-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35vh;
  z-index: 4;
  box-sizing: border-box;
  padding: var(--nav-h, 66px) 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 5vw, 3.8rem);
  color: #4a3b33;
}
#carousel-title-text { margin: 0; white-space: nowrap; position: relative; }

  #stabilo-svg {
  position: absolute;
  left: -30px;
  top: 0;
     width: calc(100% + 60px);
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}
#stabilo-poly { fill: #ffa07a; opacity: 0.42; }
#stabilo-svg.is-drawn {
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease-out;
}

#s3 { position: relative; }
#amazon-title {
  position: absolute;
  top: 8vh;
  left: 0;
  right: 0;
  height: 35vh;
  z-index: 4;
  box-sizing: border-box;
  padding: var(--nav-h, 66px) 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1rem, 5vw, 3.8rem);
  color: #FAF8F4;
}
#amazon-title-text { margin: 0; white-space: nowrap; position: relative; }
#amazon-title-text span {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}
#amazon-title-text span.is-popped {
  animation: letterPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#amazon-stabilo-svg {
  position: absolute;
  left: -30px;
  top: 0;
  width: calc(100% + 60px);
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}
#amazon-stabilo-poly { fill: #e07a4f; opacity: 0.7; }
#amazon-stabilo-svg.is-drawn {
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease-out;
}

@media (min-width: 601px) and (max-width: 1024px) {
  #s3 { margin-top: -20vh; }
}

@media (max-width: 1250px) and (pointer: coarse) {
  :root { --nav-h: 120px; }
  .carousel-card-wrapper { top: 58%; }
}
@media (max-width: 768px) {
  :root { --nav-h: 160px; }
  .carousel-card-wrapper { top: 64%; }
  .carousel-card-inner {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    bottom: 0;
    width: auto;
    height: auto;
    align-items: center;
    padding-bottom: 0;
    font-size: 0.85rem;
  }
}


#carousel-title-text span {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}
#carousel-title-text span.is-popped {
  animation: letterPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes letterPop {
  0%   { opacity: 0; transform: translateY(28px) scale(0.6); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.12); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

@media (hover: hover) {
  .carousel-card-wrapper:hover {
    box-shadow: 0 16px 48px rgba(74, 59, 51, 0.32);
  }
}

.hero-section {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}

#scroll-chevron {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  transition: opacity 400ms ease;
  padding: 1.5rem 2rem;

}
#scroll-chevron svg {
  display: block;
  width: 40px;
  height: 20px;
     opacity: 0.8;
  animation: chevronBounce 1.6s ease-in-out infinite;
}
@keyframes chevronBounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(10px); }
  100% { transform: translateY(0); }
}
.site-header.is-scrolled ~ main #scroll-chevron {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  #scroll-chevron svg {
    animation: none;
  }
}

.cover-section {
  position: relative;
  z-index: 2;
  height: 400vh;
     background: #F2EBE0;
  box-shadow: 0 -6px 22px rgba(74, 59, 51, 0);
  transition: box-shadow 300ms ease, background-color 400ms ease;
}
.cover-section.is-lifting {
  box-shadow: 0 -6px 22px rgba(74, 59, 51, 0.20);
}

.cover-section-4 {
  position: relative;
  z-index: 3;
  height: 100vh;
  background: #FAF8F4;
  box-shadow: 0 -6px 22px rgba(74, 59, 51, 0.20);
}

.site-footer {
  position: relative;
  z-index: 4;
}

.s4-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
}

#globe-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffa07a;
  opacity: 0.35;
  cursor: pointer;
  flex-shrink: 0;
}
#globe-placeholder:focus-visible {
  outline: 3px solid #1A3A5C;
  outline-offset: 4px;
}

.manga-bubble-wrap {
  position: relative;
  display: inline-block;
  transform: scale(0);
  transform-origin: bottom center;
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.55s ease;
}
.manga-bubble-wrap.is-visible { transform: scale(1); opacity: 1; }
.manga-bubble-wrap svg { width: clamp(180px, 24vw, 300px); max-width: 92vw; display: block; }
.manga-bubble-wrap svg.is-flipped { transform: scaleX(-1); }
.manga-bubble-text {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76%;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(9px, 1.4vw, 16px);
  font-weight: 600;
  color: #1A3A5C;
  line-height: 1.6;
  pointer-events: none;
  word-break: break-word;
  margin: 0;
}
.manga-bubble-text span { display: inline-block; opacity: 0; white-space: pre; }
.manga-bubble-text span.is-popped {
  animation: mangaLetterPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes mangaLetterPop {
  0%   { opacity: 0; transform: translateY(6px)  scale(0.6);  }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.15); }
  80%  {             transform: translateY(1px)  scale(0.97); }
  100% { opacity: 1; transform: translateY(0px)  scale(1);    }
}
@media (prefers-reduced-motion: reduce) {
  .manga-bubble-wrap { transform: scale(1); transition: none; }
  .manga-bubble-text span.is-popped { animation: none; opacity: 1; transform: none; }
}

#mangaBubbleHero {
  position: absolute;
  bottom: 65%;
  right: 33%;
  z-index: 2;
}

@media (min-width: 1025px) {
  #mangaBubbleHero {
    bottom: min(65%, calc(100vh - var(--nav-h, 66px) - 174px - 20px));
  }
}

.cover-title {
  margin: 0;
  padding: 2rem;
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--text-light);
}

main { display: block; }

.hero-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;

  background: #FAF8F4;
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: hidden;
  transform: translateX(100%) scale(0.88);
  transform-origin: right center;
  z-index: 0;
  pointer-events: none;
}

.hero-layer.is-previous {
  visibility: visible;
  transform: none;
  z-index: 1;
}

.hero-layer.is-active {
  visibility: visible;
  transform: none;
  z-index: 2;
  pointer-events: auto;
}

.hero-layer.is-entering {
  animation: manga-page-in 1.3s cubic-bezier(0.1, 0, 0.3, 1) both;
  visibility: visible;
  z-index: 2;
  pointer-events: none;
}

@keyframes manga-page-in {
  0% {
    transform: translateX(100%) scale(0.88);
    box-shadow: -14px 0 32px rgba(74, 59, 51, 0.32);
  }
  55% {
    transform: translateX(0) scale(0.88);
    box-shadow: -14px 0 32px rgba(74, 59, 51, 0.32);
  }
  100% {
    transform: translateX(0) scale(1);
    box-shadow: 0 0 0 rgba(74, 59, 51, 0);
  }
}

.layer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--beige) 0%, var(--peach-soft) 55%, var(--peach) 100%);
}

.hero-layer[data-theme="default"] .layer-bg {
  background-image: url('../images/Homepage/mika_homepage_desktop.webp');
  background-size: cover;
  background-position: center;
}

@media (max-width: 1024px) {
  .hero-layer[data-theme="default"] .layer-bg {
    background-image: url('../images/Homepage/mika_homepage_tablet.webp');
    background-position: center;
  }
}

@media (max-width: 600px) {
  .hero-layer[data-theme="default"] .layer-bg {
    background-image: url('../images/Homepage/mika_homepage_smartphone.jpeg');
    background-position: center top;
  }
}

.layer-label {
  position: relative;
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--text-light);
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
}

.hero-intro {
  position: absolute;
  top: clamp(8rem, 12vh, 7rem);
  left: clamp(4rem, 6vw, 5rem);
  max-width: clamp(280px, 40vw, 520px);
  width: max-content;
  text-align: left;
  z-index: 6;
}

.hero-intro-title {
  margin: 0 0 1.2rem 0;
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  color: var(--text-light);
  text-shadow: 0 2px 12px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,0.9);
  user-select: none;
  position: relative;
  z-index: 6;
}

.hero-intro-sub {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-light);
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0,0,0,1), 0 0 5px rgba(0,0,0,0.5);
  white-space: nowrap;
  user-select: none;
}

@media (max-width: 1250px) {
  .hero-intro-sub {
    white-space: normal;
    max-width: 28ch;
  }
}

.hero-intro-sub strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-card {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  border-radius: 2em;
  overflow: hidden;
  box-shadow: none;
  transition: background 300ms ease,
              box-shadow 300ms ease,
              border-radius 300ms ease;
}

.promo-card.is-expanded {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.50);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(74, 59, 51, 0.15);
  overflow: visible;
}

.promo-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 0.8rem;
  order: 1;
  transition: max-height 250ms ease-in, opacity 60ms ease 0ms;
}

.promo-card.is-expanded .promo-content {
  max-height: 400px;
  opacity: 1;
}

.promo-langs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.promo-lang-item {
  position: relative;
  display: inline-block;
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  cursor: default;
  padding-bottom: 4px;
}

.promo-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--peach);
  color: var(--text-light);
  border: none;
  border-radius: 2em;
  padding: 0.6em 1.8em;
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0.8rem 0.8rem;
  cursor: pointer;
  transition: background 200ms ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.mika-info-close { display: none; }

.social-links {
  position: relative;
  height: 80px;
  margin-left: 0.8rem;
  transition: none;
}
.mika-info-panel.is-open ~ .social-links {
  opacity: 0;
  pointer-events: none;
}
.social-links a {
  position: absolute;
}

.social-links a[aria-label="YouTube"]   { top: 25px;  left: 0px; }
.social-links a[aria-label="Instagram"] { top: 30px;  left: 72px; }
.social-links a[aria-label="Pinterest"] { top: 31px;  left: 132px; }

.social-links a {
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.social-links a img {
  filter: brightness(0) invert(96%) sepia(5%) saturate(200%) hue-rotate(320deg);
}
.social-links a:hover {
  opacity: 1;
  transform: scale(1.15);
}
.social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(600%) hue-rotate(330deg) brightness(105%);
}
.promo-btn.is-fading {
  opacity: 0;
  transition: opacity 200ms ease;
}

.promo-btn.is-visible {
  opacity: 1;
  transition: opacity 300ms ease 800ms;
}

.promo-card.is-expanded .promo-btn {
  margin: 0.8rem 0 0.8rem 0.8rem;
}

.promo-langs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.promo-lang-item {
  position: relative;
  display: inline-block;
  font-family: "Klee One", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  cursor: pointer;
  padding-bottom: 4px;
  user-select: none;
}

.promo-waiting {
  margin: 0.5rem 0;
  font-family: "Klee One", sans-serif;
  font-size: 0.9rem;
  color: #A9A9A9;
  opacity: 0.75;
  font-style: italic;
}

.promo-country-wrap {
  position: relative;
  width: 100%;
}

.promo-country-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--peach);
  background: transparent;
  font-family: "Klee One", sans-serif;
  font-size: 1.1rem;
  color: #A9A9A9;
  padding: 0.4em 0.2em;
  outline: none;
  cursor: text;
}

.promo-country-input::placeholder {
  color: #A9A9A9;
}

.promo-country-list {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  background: #FAF8F4;
  border-radius: 12px;
  box-shadow: 0 -6px 20px rgba(74, 59, 51, 0.12);
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffa07a transparent;
}
.promo-country-list::-webkit-scrollbar {
  width: 6px;
}
.promo-country-list::-webkit-scrollbar-track {
  background: transparent;
}
.promo-country-list::-webkit-scrollbar-thumb {
  background: var(--peach);
  border-radius: 3px;
}

.promo-country-option {
  padding: 0.45em 1em;
  font-family: "Klee One", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

@media (hover: hover) {
  .promo-country-option:hover {
    background: rgba(255, 160, 122, 0.12);
    color: var(--peach-deep);
  }
}

@media (hover: hover) {
  .promo-btn:hover { background: var(--peach-deep); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-inner { transition: none; }
  .nav-dropdown { transition: none; }
  .hero-layer { transition: none; }
  .hero-layer.is-entering { animation: none; }
  .promo-card { transition: none; }
  .promo-content { transition: none; }

}

.hero-intro-title,
.hero-intro-sub,
.layer-label {
  padding: 8px 16px;
  opacity: 0;
}

.lang-li { position: relative; }
.lang-spiral {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 125%;
  height: 220%;
  overflow: visible;
  pointer-events: none;
}

.lang-li.lang-selected:hover .lang-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
}

.lang-dropdown:focus-within,
.lang-li .btn-lang:focus ~ .lang-dropdown,
#btn-lang:focus ~ .lang-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
}

.nav-trigger:hover ~ .site-header .nav-item,
.site-header:hover .nav-item {
  text-shadow: none;
}

.nav-trigger:hover ~ .site-header .logo,
.site-header:hover .logo {
  text-shadow: none;
}

.dropdown-item {
  text-shadow: none;
}

.mika-info {
  position: relative;
  margin-top: 1.5rem;
  display: inline-block;
}

.mika-info-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  background: rgba(250, 248, 244, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 4rem 1.2rem 1rem 1.2rem;
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 400ms ease, opacity 300ms ease;
}

.mika-info-panel.is-open {
  max-height: 400px;
  opacity: 1;
}

@media (max-width: 600px) {
.hero-intro {
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
    width: auto;
    top: 100px !important;
  }

  .mika-info-panel {
    width: calc(100vw - 2.5rem);
    max-width: 400px;
  }

  .mika-info-panel.is-open {
    max-height: 75vh;
  }
}

.menu-mobile-li { display: none; }
.menu-mobile-single-li { display: none; }

@media (max-width: 1250px) {
  .nav-list > li:not(.lang-li):not(.menu-mobile-li):not(.menu-mobile-single-li) { display: none; }
  .menu-mobile-li { display: block; }
  .lang-spiral { display: none; }

    .site-header { min-height: 120px; }
  .nav-inner {
    min-height: 120px;
    align-items: center;
  }
  .nav-list {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1250px) {
  .lang-dropdown { display: none !important; }
  .lang-spiral { display: none; }
}


@media (max-width: 600px) {
  .site-header { 
    min-height: 110px; 
  }
  .nav-inner { 
    min-height: 110px; 
  }

  .nav-inner {
    justify-content: center;
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem;
    row-gap: 1.4rem;
    justify-content: center;
    justify-items: center;
    width: fit-content;
    margin: 0 auto;
  }

  .btn-menu-mobile,
  .btn-lang,
  #btn-lang {
    width: 100%;
    text-align: center;
  }
  .lang-spiral { display: none; }
  .lang-dropdown { display: none !important; }

  .menu-mobile-li { display: none; }
  .menu-mobile-single-li { display: block; }
}


@media (min-width: 601px) and (max-width: 1200px) and (pointer: coarse) {
  :root { --nav-h: 101px; }
  .site-header { min-height: 101px; }
  .nav-inner {
    min-height: 101px;
    padding-inline: clamp(0.85rem, 2vw, 1.25rem);
  }

  .nav-list { gap: 0.5rem; }

  .btn-menu-mobile {
    min-width: 0;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    padding: 0.35em 1em;
  }
  .btn-lang,
  #btn-lang {
    min-width: 0;
    font-size: 1rem;
    padding: 0.35em 1em;
  }

  .carousel-card-wrapper { top: 62%; }
}

.btn-menu-mobile {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: transparent;
  border: 2px solid transparent;
  --dash-color: #ffa07a;
  position: relative;
  border-radius: 2em;
  padding: 0.3em 1.1em;
  min-width: 7.5rem;
  cursor: pointer;
  text-shadow: none;
  transition: color 200ms, border-color 200ms, filter 200ms, background-color 200ms;
}

@media (hover: hover) {
  .btn-menu-mobile {
    background: rgba(0, 0, 0, 0.3);
    --dash-color: #ffa07a;
  }
}

@media (hover: hover) {
  .btn-menu-mobile:hover {
    color: #fff;
    background: transparent;
    --dash-color: #fff;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
  }
}

.nav-trigger:hover ~ .site-header .btn-menu-mobile,
.site-header:hover .btn-menu-mobile,
.site-header.is-scrolled .btn-menu-mobile {
  color: #4a3b33;
  background: transparent;
}

@media (hover: hover) {
  .nav-trigger:not(:hover) ~ .site-header:not(.is-scrolled):not(:hover) .btn-menu-mobile {
    color: #FAF8F4 !important;
  }
}

@media (hover: hover) {
  .nav-trigger:hover ~ .site-header .btn-menu-mobile:hover,
  .site-header:hover .btn-menu-mobile:hover {
    color: #c05a2f;
    --dash-color: #e07a4f;
    filter: none;
  }
}

.dash-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.dash-border > rect {
  fill: none;
  stroke: var(--dash-color, #ffa07a);
  stroke-width: 2;
  stroke-dasharray: 6 4;
  stroke-dashoffset: 0;
  transition: stroke 200ms;
}

@keyframes dash-travel {
  to { stroke-dashoffset: -200; }
}

@media (hover: hover) {
  .btn-menu-mobile:hover .dash-border > rect,
  .dash-travel:hover .dash-border > rect {
    animation: dash-travel 4s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dash-border > rect { animation: none !important; }
}


#mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

#mob-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease, visibility 0s;
}

#mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  z-index: 1001;
  background: #FAF8F4;
  box-shadow: -10px 0 30px rgba(74, 59, 51, 0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

#mob-drawer.is-open {
  transform: translateX(0);
  transition: transform 280ms ease;
}

#drawer-hearts-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.mob-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 1rem;
  cursor: pointer;
}

@media (hover: hover) {
  .mob-drawer-close:hover { color: var(--peach-deep); }
}

.mob-drawer-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 3.25rem 0 1.5rem 0;
}

.mob-drawer-list > li { margin: 0; }

.mob-drawer-cat {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0.85em 1.5em;
  cursor: pointer;
}

.mob-drawer-sub {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0.65em 1.5em;
  cursor: pointer;
}

.mob-drawer-back {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--peach);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(74, 59, 51, 0.1);
  padding: 0.85em 1.5em;
  cursor: pointer;
}

@media (hover: hover) {
  .mob-drawer-cat:hover,
  .mob-drawer-sub:hover,
  .mob-drawer-back:hover {
    background: rgba(255, 160, 122, 0.1);
    color: var(--peach-deep);
  }
}

@media (prefers-reduced-motion: reduce) {
  #mob-drawer,
  #mob-drawer.is-open { transition: none; }
  #mob-overlay,
  #mob-overlay.is-open { transition: none; }
}
.btn-menu-mobile,
.btn-lang:not(.btn-menu-mobile) {
  min-width: 7.5rem;
  text-align: center;
  justify-content: center;
}
#mika-info-btn {
  opacity: 0;
  transition: opacity 0.8s ease;
}
#mika-info-btn.is-visible {
  opacity: 1;
}

.legal-page {
  max-width: 70ch;
  margin: 0 auto 5rem;
  padding: 6rem 1.25rem 0;
  color: #4a3b33;
  font-size: 1rem;
  line-height: 1.7;
}
.legal-page h1 {
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ffa07a;
  color: #4a3b33;
  font-size: 1.75rem;
  line-height: 1.2;
}
.legal-page h2 {
  margin: 2.25rem 0 0.75rem;
  color: #ffa07a;
  font-size: 1.15rem;
}
.legal-page p { margin: 0 0 1rem; }
.legal-page ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}
.legal-page li { margin: 0 0 0.4rem; }
.legal-page a {
  color: #ffa07a;
  text-decoration: underline;
  word-break: break-word;
}

@media (min-width: 768px) {
  .legal-page {
    padding-top: 7rem;
    font-size: 1.05rem;
  }
  .legal-page h1 { font-size: 2.25rem; }
  .legal-page h2 { font-size: 1.4rem; }
}

.site-footer {
  position: relative;
  z-index: 4;
  background: #FAF8F4;
  color: #4a3b33;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  padding: 3rem 1rem;
}
.site-footer__disclosure {
  max-width: none;
  white-space: nowrap;
  margin: 0 auto 1rem;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}
.site-footer__links a {
  color: #4a3b33;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__links a:hover,
.site-footer__links a:focus { color: #e07a4f; }



.blog-s1.blog-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: auto;
  background: var(--beige);
}
.blog-hero {
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: calc(66px + 2.5rem) clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 6vh, 4rem);
}

.blog-hero__text {
  flex: 1 1 55%;
  max-width: 55%;
  min-width: 0;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
  padding-left: clamp(0rem, 3vw, 4rem);
  opacity: 0;
  animation: blogHeroFadeIn 1s ease 0.15s forwards;
}

#heroTitle {
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.9vw, 3.4rem);
  line-height: 1.1;
  text-wrap: balance;
  margin: 0 0 0.5rem;
  color: #4a3b33;
  opacity: 1 !important;
  animation: none !important;
}

.blog-hero__hook {
  font-size: clamp(1rem, 0.9rem + 0.52vw, 1.35rem);
  font-weight: 500;
  color: var(--peach-deep);
  margin: 0 0 1.25rem;
}

.blog-hero__intro {
  font-size: clamp(0.9rem, 0.86rem + 0.22vw, 1.05rem);
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.75rem;
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 5rem;
}

.blog-hero__btn-compose,
.blog-hero__btn-destinations {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  font-family: "Quicksand", "Klee One", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: clamp(0.8rem, 0.72rem + 0.35vw, 1rem);
  line-height: 1;
  padding: 0.75em 1.4em;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

@media (max-width: 520px) {
  .blog-hero__btn-compose,
  .blog-hero__btn-destinations {
    flex: 1 1 100%;
  }
}

.blog-hero__btn-compose {
  border: 0;
  color: var(--text-light);
  background: var(--peach);
  box-shadow: 0 6px 18px rgba(224, 122, 79, 0.35);
}
.blog-hero__btn-compose:hover,
.blog-hero__btn-compose:focus-visible {
  background: var(--peach-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 122, 79, 0.45);
}

.blog-hero__btn-destinations {
  border: 2px solid var(--peach-deep);
  color: var(--peach-deep);
  background: transparent;
}
.blog-hero__btn-destinations:hover,
.blog-hero__btn-destinations:focus-visible {
  transform: translateY(-2px);
  background: var(--peach-soft);
}

.blog-hero__media {
  flex: 0 1 45%;
  align-self: flex-start;
  margin-top: clamp(1.5rem, 8vw, 8.3rem);
  display: flex;
  padding-left: clamp(0rem, 4vw, 4rem);
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: blogHeroSlideInRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.blog-hero__video {
  width: min(100%, 420px, 47.8vh);
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 18px 50px rgba(74, 59, 51, 0.28);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

@keyframes blogHeroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blogHeroSlideInRight {
  from { opacity: 0; transform: translateX(120%); }
  to   { opacity: 1; transform: translateX(0); }
}

.pop-text span {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}
.pop-text span.is-popped {
  animation: mangaLetterPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes mangaLetterPop {
  0%   { opacity: 0; transform: translateY(6px)  scale(0.6);  }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.15); }
  80%  {             transform: translateY(1px)  scale(0.97); }
  100% { opacity: 1; transform: translateY(0px)  scale(1);    }
}
@media (prefers-reduced-motion: reduce) {
  .pop-text span.is-popped { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .blog-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: calc(66px + 1.5rem) clamp(1.25rem, 5vw, 4rem) clamp(2rem, 6vh, 4rem);
  }
  .blog-hero__media {
    order: -1;
    flex: 0 0 auto;
    margin-top: 0;
    padding-left: 0;
  }
  .blog-hero__text {
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 0;
  }
  .blog-hero__actions {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .blog-hero__video {
    height: auto;
    width: min(80vw, 300px);
    max-height: 70vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-hero__text,
  .blog-hero__media {
    animation: none;
    opacity: 1;
  }
  .blog-hero__video {
    transition: none;
    transform: none;
  }
}

.compose-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.compose-modal[hidden] { display: none; }

.compose-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 92, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: composeOverlayIn 0.25s ease both;
}

.compose-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  background: var(--beige);
  border-radius: 22px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 70px rgba(74, 59, 51, 0.4);
  animation: composeDialogIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.compose-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.compose-modal__close:hover,
.compose-modal__close:focus-visible {
  background: var(--peach-soft);
  color: var(--peach-deep);
}

.compose-modal__title {
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.compose-modal__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.compose-modal__option {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5em;
  width: 100%;
  padding: 1em 1.1em;
  border-radius: 14px;
  border: 0;
  background: var(--peach);
  color: var(--text-light);
  font-family: "Quicksand", "Klee One", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.compose-modal__option:hover,
.compose-modal__option:focus-visible {
  background: var(--peach-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 122, 79, 0.32);
}

@media (max-width: 420px) {
  .compose-modal__options { grid-template-columns: 1fr; }
}

@keyframes composeOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes composeDialogIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.blog-s2.blog-carousel {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  min-height: 100vh;
  background: #FAF8F4;
  border-radius: 0;
  box-shadow: 0 -10px 34px rgba(74, 59, 51, 0.16);
}
.blog-carousel {
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.blog-s4, .blog-s5, .blog-s6 {
  position: relative;
  z-index: 2;
  background: var(--beige);
}

#blog-carousel-title {
  text-align: center;
  margin: 2rem 0 2.5rem;
}
#blog-carousel-title-text {
  display: inline-block;
  position: relative;
  margin: 0;
  white-space: nowrap;
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: #4a3b33;
}
#blog-carousel-title-text span {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}
#blog-carousel-title-text span.is-popped {
  animation: mangaLetterPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#blog-stabilo-svg {
  position: absolute;
  left: -18px;
  top: 0;
  width: calc(100% + 36px);
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}
#blog-stabilo-poly { fill: #ffa07a; opacity: 0.45; }
#blog-stabilo-svg.is-drawn {
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease-out;
}

.blog-carousel__track-wrap {
  position: relative;
  width: 100%;
  margin-top: 0rem;
}

.blog-carousel__track {
  position: relative;
  height: clamp(400px, 60vh, 520px);
  clip-path: inset(-90px 0);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.blog-polaroid {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(220px, 70vw, 304px);
  background: #ffffff;
  border-radius: clamp(18px, 6.4vw, 28px);
  padding: clamp(11px, 3.7vw, 16px) clamp(11px, 3.7vw, 16px) clamp(28px, 9.2vw, 40px);
  box-shadow: 4px 12px 36px rgba(74, 59, 51, 0.2);
  cursor: grab;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.blog-polaroid__photo {
  width: 100%;
  aspect-ratio: 272 / 240;
  border-radius: 0px;
  overflow: hidden;
}
.blog-polaroid__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.blog-polaroid__caption {
  margin-top: 16px;
  text-align: center;
  font-family: "Klee One", sans-serif;
  font-size: 0.95rem;
  color: #4a3b33;
}

@media (max-width: 860px) {
  .blog-polaroid {
    width: clamp(160px, 60vw, 260px);
    max-width: 80vw;
  }
  .blog-polaroid__photo,
  .blog-polaroid__img {
    max-width: 100%;
  }
}

.blog-s3.blog-video-text {
  position: relative;
  z-index: 3;
  margin-top: 0;
  height: 300vh;
  min-height: 400vh;
  transform-origin: right top;
  will-change: transform;
  border-radius: 0;
  box-shadow: 0 -10px 34px rgba(74, 59, 51, 0.16);
}

.blog-s3-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: #FAF8F4;
  opacity: 0;
  pointer-events: none;
}
.blog-s3-backdrop.is-active { opacity: 1; }

.blog-s3__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.blog-s3__hscroll {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  will-change: transform;
}

.blog-s3__panel {
  flex: 0 0 100vw;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  box-sizing: border-box;
  padding: calc(66px + 2rem) 8vw 3rem;
  color: var(--text-light);
}

.blog-s3__text-col {
  flex: 1 1 0;
  max-width: 540px;
  align-self: flex-start;
  padding-top: clamp(1.5rem, 5vw, 7rem);
  padding-left: clamp(0rem, 6vw, 9rem);
}

.blog-s3__title {
  position: relative;
  display: inline-block;
  margin: 0 0 1.25rem;
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(1.28rem, 2.56vw, 2.18rem);
  line-height: 1.15;
  color: var(--text-light);
}
.blog-s3__title-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.blog-s3__panel.is-active .blog-s3__title-text {
  opacity: 1;
  transform: none;
  transition-delay: 0.65s;
}
.blog-s3__title-underline {
  position: absolute;
  z-index: 0;
  left: -18px;
  top: 0;
  width: calc(100% + 36px);
  height: 100%;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}
.blog-s3__title-underline svg { display: block; width: 100%; height: 100%; }
.blog-s3__title-underline path { fill: #7a3a1a; }
.blog-s3__panel.is-active .blog-s3__title-underline {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.6s ease-out;
}

.blog-s3__body {
  margin: 0;
  max-width: 46ch;
  font-family: "Quicksand", "Klee One", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.blog-s3__panel.is-active .blog-s3__body {
  opacity: 1;
  transform: none;
  transition-delay: 0.9s;
}

.blog-s3__video-1,
.blog-s3__video-2,
.blog-s3__video-3 {
  flex: 0 0 auto;
  width: clamp(172px, 20.3vw, 265px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 18px 50px rgba(74, 59, 51, 0.35);
  display: block;
  align-self: flex-start;
  margin-top: 2rem;
}

.blog-s3__video-1 {
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-s3__panel-1.is-active .blog-s3__video-1 { opacity: 1; transform: none; }
.blog-s3__video-2 {
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-s3__panel-2.is-active .blog-s3__video-2 { opacity: 1; transform: none; }
.blog-s3__video-3 {
  opacity: 0;
  transform: translateY(-120%);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-s3__panel-3.is-active .blog-s3__video-3 { opacity: 1; transform: none; }

.blog-s3__lava {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 860px) {
  .blog-s3__panel {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
    padding: calc(66px + 1.5rem) clamp(1.25rem, 5vw, 8vw) 2.5rem;
  }
  .blog-s3__text-col {
    padding-top: 0;
    padding-left: 0;
    max-width: 100%;
  }
  .blog-s3__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  .blog-s3__title-text,
  .blog-s3__body,
  .blog-s3__video-1,
  .blog-s3__video-2,
  .blog-s3__video-3 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .blog-s3__title-underline { clip-path: inset(0 0 0 0) !important; transition: none !important; }
}

.blog-s3 .blog-s3__video-wrap { border-radius: 0 !important; }

.blog-s4 {
  position: relative;
  z-index: 4;
  min-height: 300vh;
  background: #FAF8F4;
  padding: clamp(1.5rem, 4vh, 3rem) clamp(1.25rem, 5vw, 4rem);
  will-change: transform;
}

#blog-s4-title {
  text-align: center;
  margin: 0 0 2.5rem;
}
#blog-s4-title-text {
  display: inline-block;
  position: relative;
  margin: 0;
  white-space: nowrap;
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: #4a3b33;
}
#blog-s4-title-text span {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}
#blog-s4-title-text span.is-popped {
  animation: mangaLetterPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#blog-s4-stabilo-svg {
  position: absolute;
  left: -18px;
  top: 0;
  width: calc(100% + 36px);
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}
#blog-s4-stabilo-poly { fill: #ffa07a; opacity: 0.45; }
#blog-s4-stabilo-svg.is-drawn {
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease-out;
}

.blog-s4__content {
  max-width: 1100px;
  margin: 0 auto;
}

.s4-postits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 40px);
  max-width: 940px;
  margin: 0 auto;
  justify-items: center;
}
@media (max-width: 600px) {
  .s4-postits-grid { grid-template-columns: 1fr; }
}

.s4-postit {
  position: relative;
  width: min(100%, clamp(240px, 80vw, 390px));
  cursor: pointer;
  opacity: 0;
  filter: drop-shadow(0 8px 16px rgba(74, 59, 51, 0.2));
  transition: filter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.s4-postit.is-shown { opacity: 1; }
.s4-postit:hover {
  z-index: 5;
  filter: drop-shadow(0 18px 34px rgba(74, 59, 51, 0.34));
}

.s4-postit__svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 220 / 240;
  overflow: visible;
}
.s4-postit__paper {
  transition: d 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.s4-postit__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5% 9% 0;
  box-sizing: border-box;
  text-align: center;
}

.s4-postit__svg,
.s4-postit__content {
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.s4-postit:hover .s4-postit__svg,
.s4-postit:hover .s4-postit__content {
  transform: scale(1.1) translateY(-8px);
}

.s4-postit__title {
  margin: 0;
  height: clamp(20px, 5vw, 26px);
  line-height: clamp(20px, 5vw, 26px);
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 0.95rem + 1vw, 1.6rem);
  color: #fff;
}

.s4-postit__text {
  margin: clamp(8px, 3%, 12px) 0 0;
  font-family: "Caveat", sans-serif;
  font-size: clamp(1.4rem, 1rem + 2vw, 2rem);
  line-height: 1.5;
  color: #4a3b33;
}

@media (max-width: 860px) {
  .s4-postit { max-width: 100%; }
  .s4-postit__title {
    height: clamp(18px, 3.5vw, 24px);
    line-height: clamp(18px, 3.5vw, 24px);
    font-size: clamp(1rem, 0.8rem + 1vw, 1.4rem);
  }
  .s4-postit__text {
    font-size: clamp(1.1rem, 0.8rem + 1.6vw, 1.6rem);
  }
}

.s4-postit__link {
  font-weight: 600;
  text-decoration: underline;
}

.s4-postit.is-in.dep0 { animation: s4PostitIn0 0.95s ease-out both; }
.s4-postit.is-in.dep1 { animation: s4PostitIn1 0.95s ease-out both; }
.s4-postit.is-in.dep2 { animation: s4PostitIn2 0.95s ease-out both; }
.s4-postit.is-in.dep3 { animation: s4PostitIn3 0.95s ease-out both; }

@keyframes s4PostitIn0 {
  0%   { opacity: 0; transform: scale(3.2) rotate(-16deg); }
  55%  { opacity: 1; transform: scale(0.88) rotate(5deg); }
  72%  { transform: scale(1.09) rotate(-3deg); }
  86%  { transform: scale(0.96) rotate(1.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes s4PostitIn1 {
  0%   { opacity: 0; transform: scale(3.2) rotate(20deg); }
  55%  { opacity: 1; transform: scale(0.88) rotate(-6deg); }
  72%  { transform: scale(1.09) rotate(3deg); }
  86%  { transform: scale(0.96) rotate(-1.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes s4PostitIn2 {
  0%   { opacity: 0; transform: scale(3.2) rotate(-24deg); }
  55%  { opacity: 1; transform: scale(0.88) rotate(6deg); }
  72%  { transform: scale(1.09) rotate(-3deg); }
  86%  { transform: scale(0.96) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes s4PostitIn3 {
  0%   { opacity: 0; transform: scale(3.2) rotate(14deg); }
  55%  { opacity: 1; transform: scale(0.88) rotate(-5deg); }
  72%  { transform: scale(1.09) rotate(3deg); }
  86%  { transform: scale(0.96) rotate(-1.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.s4-postit.is-leaving.dep0 { animation: s4PostitOut0 0.95s ease-in both; }
.s4-postit.is-leaving.dep1 { animation: s4PostitOut1 0.95s ease-in both; }
.s4-postit.is-leaving.dep2 { animation: s4PostitOut2 0.95s ease-in both; }
.s4-postit.is-leaving.dep3 { animation: s4PostitOut3 0.95s ease-in both; }

@keyframes s4PostitOut0 {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  14%  { transform: scale(0.96) rotate(1.5deg); }
  28%  { transform: scale(1.09) rotate(-3deg); }
  45%  { opacity: 1; transform: scale(0.88) rotate(5deg); }
  100% { opacity: 0; transform: scale(3.2) rotate(-16deg); }
}
@keyframes s4PostitOut1 {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  14%  { transform: scale(0.96) rotate(-1.5deg); }
  28%  { transform: scale(1.09) rotate(3deg); }
  45%  { opacity: 1; transform: scale(0.88) rotate(-6deg); }
  100% { opacity: 0; transform: scale(3.2) rotate(20deg); }
}
@keyframes s4PostitOut2 {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  14%  { transform: scale(0.96) rotate(2deg); }
  28%  { transform: scale(1.09) rotate(-3deg); }
  45%  { opacity: 1; transform: scale(0.88) rotate(6deg); }
  100% { opacity: 0; transform: scale(3.2) rotate(-24deg); }
}
@keyframes s4PostitOut3 {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  14%  { transform: scale(0.96) rotate(-1.5deg); }
  28%  { transform: scale(1.09) rotate(3deg); }
  45%  { opacity: 1; transform: scale(0.88) rotate(-5deg); }
  100% { opacity: 0; transform: scale(3.2) rotate(14deg); }
}

.s4-postit.is-gone { opacity: 0; }

.blog-s5 {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vh, 3.5rem);
  padding: clamp(1.5rem, 4vh, 3rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--beige);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  will-change: opacity;
}
.blog-s5.is-revealed {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease 0.38s;
}

.blog-s4 > #blog-s4-title,
.blog-s4 > .blog-s4__content {
  position: relative;
  z-index: 2;
}

#blog-s5-title {
  text-align: center;
  margin: 0 0 0.5rem;
}
#blog-s5-title-text {
  display: inline-block;
  position: relative;
  margin: 0;
  white-space: nowrap;
  font-family: "Klee One", sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: #4a3b33;
}
#blog-s5-title-text span {
  display: inline-block;
  opacity: 0;
  white-space: pre;
}
#blog-s5-title-text span.is-popped {
  animation: mangaLetterPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
#blog-s5-stabilo-svg {
  position: absolute;
  left: -18px;
  top: 0;
  width: calc(100% + 36px);
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}
#blog-s5-stabilo-poly { fill: #ffa07a; opacity: 0.45; }
#blog-s5-stabilo-svg.is-drawn {
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease-out;
}

.blog-s5__widgets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 1000px;
}
.blog-s5__widget {
  flex: 1 1 320px;
  max-width: 460px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px dashed var(--peach-soft);
  border-radius: 28px;
  box-shadow: 4px 12px 36px rgba(74, 59, 51, 0.2);
}
.blog-s5__widget::after {
  font-family: "Caveat", sans-serif;
  font-size: 1.6rem;
  color: var(--peach-deep);
  opacity: 0.65;
}
.blog-s5__widget--flights::after { content: "Widget vols"; }
.blog-s5__widget--hotels::after  { content: "Widget hôtels"; }

@media (max-width: 720px) {
  .blog-s5__widget { flex-basis: 100%; min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .s4-postit.is-leaving { animation: none !important; }
  .blog-s5 { transition: none !important; }
}

#fm-overlay {
  position: fixed;
  inset: 0;
  background: #FAF8F4;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 350ms ease-in-out, transform 380ms ease-in-out;
}


body.fm-leaving > :not(.site-header):not(.nav-trigger):not(#fm-overlay) {
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}

@keyframes fm-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.fm-entering > :not(.site-header):not(.nav-trigger):not(#fm-overlay) {
  animation: fm-enter 380ms ease-in-out both;
}

@media (prefers-reduced-motion: reduce) {
  #fm-overlay { transition: none; }
  body.fm-leaving > :not(.site-header):not(.nav-trigger):not(#fm-overlay) { transition: none; opacity: 1; }
  body.fm-entering > :not(.site-header):not(.nav-trigger):not(#fm-overlay) { animation: none; }
}


.klaro {
  --green1: var(--peach);
  --green2: var(--peach);
  --green3: var(--peach-soft);
}

.klaro .cookie-modal a:hover,
.klaro .context-notice a:hover,
.klaro .cookie-notice a:hover {
  color: var(--peach-deep);
}
.klaro .cookie-modal .cm-btn.cm-btn-success:hover,
.klaro .context-notice .cm-btn.cm-btn-success:hover,
.klaro .cookie-notice .cm-btn.cm-btn-success:hover,
.klaro .cookie-modal .cm-btn.cm-btn-success-var:hover,
.klaro .context-notice .cm-btn.cm-btn-success-var:hover,
.klaro .cookie-notice .cm-btn.cm-btn-success-var:hover {
  background-color: var(--peach-deep);
}

.klaro .cookie-modal .cm-btn.cm-btn-info,
.klaro .context-notice .cm-btn.cm-btn-info,
.klaro .cookie-notice .cm-btn.cm-btn-info {
  background-color: var(--peach) !important;
}
.klaro .cookie-modal .cm-btn.cm-btn-info:hover,
.klaro .context-notice .cm-btn.cm-btn-info:hover,
.klaro .cookie-notice .cm-btn.cm-btn-info:hover {
  background-color: var(--peach-deep);
}
.klaro .cookie-modal .cm-list-label .slider::before,
.klaro .context-notice .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-label .slider::before {
  background-color: #333;
}

.klaro #id-cookie-notice > span {
  font-size: 0;
}
.klaro #id-cookie-notice > span > * {
  font-size: var(--font-size, 14px);
}
.klaro #id-cookie-notice > span::before {
  content: "Hi! We use third-party widgets (flights, hotels, activities…) that may set cookies.\A You can choose which ones to allow.";
  content: "Hi! We use third-party widgets (flights, hotels, activities…) that may set cookies.\A You can choose which ones to allow." / "";
  white-space: pre-line;
  font-size: var(--font-size, 14px);
}


@media (min-width: 769px) {

  .nav-inner {
    justify-content: space-between;
  }

.btn-menu-mobile {
    color: #ffffff;
  }

  .nav-trigger:hover ~ .site-header .btn-menu-mobile,
  .site-header:hover .btn-menu-mobile,
  .site-header.is-scrolled .btn-menu-mobile {
    color: #4a3b33;
    --dash-color: #ffa07a;
  }
}

@media (min-width: 1250px) {
  .nav-inner {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .nav-list {
    justify-content: flex-end !important;
    flex-grow: 0 !important;
    margin-left: auto !important;
    width: auto !important;
    display: flex !important;
  }
}


@media (min-width: 1025px) {
  .nav-inner {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .nav-list {
    justify-content: flex-end !important;
    flex-grow: 0 !important;
    margin-left: auto !important;
    width: auto !important;
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    justify-content: center !important;
  }

  .nav-list {
    justify-content: center !important;
    margin: 0 auto !important;
  }
}


@media (max-width: 600px) {
  .mob-drawer-cat {
    font-size: 1.375rem;
    padding: 1em 1.5em;
    font-family: "Klee One", sans-serif;
  }
  .mob-drawer-sub {
    font-size: 1.25rem;
    padding: 0.8em 1.5em;
    font-family: "Klee One", sans-serif;
  }
  .mob-drawer-back {
    font-size: 1.25rem;
    padding: 1em 1.5em;
    font-family: "Klee One", sans-serif;
  }
}

@media (max-width: 600px) {
  .site-header { min-height: 100px !important; }
  .nav-inner   { min-height: 100px !important; }
  .social-links { display: none !important; }
  .logo { display: none !important; }

.btn-menu-mobile {
    font-size: 1.3rem !important;
  }
  .btn-lang, #btn-lang {
    font-size: 1.3rem !important;
  }

.btn-menu-mobile {
    font-size: 1.3rem !important;
    color: #4a3b33 !important;
  }

#mangaBubbleHero {
    bottom: auto !important;
    top: 230px;
    right: auto !important;
    left: calc(50% - 110px);
    width: 220px !important;
  }
  #mangaBubbleHero svg {
    width: 220px !important;
  }
  #mangaBubbleHero .manga-bubble-text {
    font-size: 12.5px !important;
  }

  .promo-btn {
    position: absolute !important;
    bottom: -40vh !important;
    margin-top: 0 !important;
  }

  .carousel-card-wrapper {
    width: clamp(200px, 80vw, 320px) !important;
    height: clamp(260px, 104vw, 416px) !important;
    top: 60% !important;
  }

#carousel-title-text {
    white-space: nowrap !important;
    text-align: center !important;
    font-size: clamp(1.2rem, 6.5vw, 1.8rem) !important;
    line-height: 1.2 !important;
  }

  #carousel-title-text span {
    white-space: pre !important;
    word-break: keep-all !important;
    hyphens: none !important;
  }

  #carousel-title {
    padding-top: 25px !important;
  }

  #amazon-title-text {
    white-space: nowrap;
    font-size: clamp(1.2rem, 6.5vw, 1.8rem) !important;
  }
  #amazon-title-text svg {
    height: 100% !important;
    width: calc(100% + 60px) !important;
  }

  #mika-info-panel {
    position: absolute !important;
    bottom: -32vh !important;
    left: 0rem !important;
    right: 0rem !important;
    padding-top: 3rem;
    padding-left: 40px;
  }

  #mika-info-panel #mika-info-close {
    display: inline-block;
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0 0 0.6rem 0 !important;
  }

#mika-info-panel.is-open {
    position: fixed !important;
    inset: 0 !important;
    width: auto !important;
    max-width: none !important;
    min-height: 100dvh;
    max-height: none !important;
    border-radius: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 60;
    padding-top: 9.5rem;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #mika-info-panel.is-open #mika-info-close {
    display: block !important;
    position: relative !important;
    margin: 2rem auto 1.5rem auto !important;
    left: auto !important;
    transform: none !important;
    bottom: auto !important;
  }

  #mika-info-panel.is-open ~ #mika-info-btn {
    display: none !important;
  }
}

@media (max-width: 600px) {
#mobile-card-modal {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: #FAF8F4;
    display: none;
    flex-direction: column;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-top: 84px;
    overscroll-behavior: contain;
  }

  #mobile-card-modal.is-open {
    display: flex;
  }

  #mobile-card-modal .modal-img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
  }

  #mobile-card-modal .modal-title {
    font-family: "Klee One", sans-serif;
    font-size: 1.4rem;
    padding: 1rem;
    color: #4a3b33;
  }

  #mobile-card-modal .modal-desc {
    font-size: 0.95rem;
    padding: 0 1rem;
    color: #4a3b33;
    line-height: 1.6;
    flex-grow: 1;
  }

#mobile-card-modal .modal-btns {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 1rem;
    justify-content: center;
  }
  #mobile-card-modal .modal-btn-back {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #4a3b33;
    background: transparent;
    border: 2px dashed #ffa07a;
    border-radius: 2em;
    padding: 0.4em 1.2em;
    cursor: pointer;
  }
  #mobile-card-modal .modal-btn-discover {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fdf6f0;
    background: #ffa07a;
    border: none;
    border-radius: 2em;
    padding: 0.4em 1.2em;
    cursor: pointer;
  }

  #amazon-title {
    padding-top: 75px !important;
    top: 0vh !important;
  }
}


#tablet-rotate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 2rem;
  text-align: center;
  background: #FAF8F4;
  color: #4a3b33;
  font-family: "Klee One", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
#tablet-rotate-overlay.is-visible { display: flex; }
#tablet-rotate-overlay .rotate-icon {
  font-size: 5rem;
  line-height: 1;
  color: #ffa07a;
  animation: rotateHint 2s ease-in-out infinite;
  display: block;
}
#tablet-rotate-overlay .rotate-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a3b33;
  margin: 0;
}
#tablet-rotate-overlay .rotate-msg {
  margin: 0;
  max-width: 18em;
  color: #4a3b33;
  opacity: 0.75;
  font-size: 1.1rem;
}
@keyframes rotateHint {
  0%, 100% { transform: rotate(0deg); }
  40%       { transform: rotate(80deg); }
  60%       { transform: rotate(80deg); }
}
@media (prefers-reduced-motion: reduce) {
  #tablet-rotate-overlay .rotate-icon { animation: none; }
}

#phone-rotate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 2rem;
  text-align: center;
  background: #FAF8F4;
  color: #4a3b33;
  font-family: "Klee One", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}
#phone-rotate-overlay.is-visible { display: flex; }
#phone-rotate-overlay .rotate-icon {
  font-size: 5rem;
  line-height: 1;
  color: #ffa07a;
  animation: rotateHint 2s ease-in-out infinite;
  display: block;
}
#phone-rotate-overlay .rotate-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a3b33;
  margin: 0;
}
#phone-rotate-overlay .rotate-msg {
  margin: 0;
  max-width: 18em;
  color: #4a3b33;
  opacity: 0.75;
  font-size: 1.1rem;
}
@media (prefers-reduced-motion: reduce) {
  #phone-rotate-overlay .rotate-icon { animation: none; }
}

@media (pointer: coarse) and (orientation: landscape) and (min-height: 600px) {
  .menu-mobile-li,
  .menu-mobile-single-li { display: none; }

  .nav-list > li:not(.lang-li):not(.menu-mobile-li):not(.menu-mobile-single-li) { display: list-item; }
  .lang-li { display: list-item; }

  .nav-inner { justify-content: space-between !important; }
  .logo { display: block !important; }
  .nav-list {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-end !important;
    align-items: center;
    flex-grow: 0 !important;
    width: auto !important;
    margin: 0 0 0 auto !important;
    gap: clamp(0.4rem, 1.5vw, 1.1rem);
  }

  .nav-dropdown { top: calc(100% + 16px); }
  .lang-dropdown { display: block !important; }
  .nav-list > li.is-open > .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-trigger { display: block; }
}

@media (pointer: coarse) and (orientation: landscape) and (min-height: 600px) and (max-height: 800px) {
  .logo { display: none !important; }
}

@media (min-width: 1201px) and (hover: hover) {
  .nav-trigger:not(:hover) ~ .site-header:not(.is-scrolled):not(:hover) {
    background: transparent;
  }

  .nav-trigger:hover ~ .site-header .btn-menu-mobile,
  .site-header:hover .btn-menu-mobile {
    color: #4a3b33 !important;
    --dash-color: #ffa07a;
    text-shadow: none;
  }
}
