﻿:root {
  color-scheme: light;
  --color-signature-green: #2f6138;
  --color-bg-offwhite: #d6d2c8;
  --color-bg-offwhite-bottom: #d6d2c8;
  --color-light-text: #f4eedf;
  --color-accent-ochre: #dd9f24;
  --color-text-anthracite: #3b3b3d;
  --candal-letter-spacing: 0.05em;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/Jost-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("assets/fonts/Jost-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Candal";
  src: url("assets/fonts/Candal-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("assets/fonts/LeagueSpartan-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #be3c13;
  color: var(--color-text-anthracite);
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: "League Spartan", "Segoe UI", sans-serif;
}

.center-stage {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.center-logo {
  display: block;
  width: min(68vw, 920px);
  height: auto;
  transform: translate(-2.5vw, -23vh);
}

.after-logo {
  width: 100%;
  margin-top: -68vh;
  min-height: 120vh;
  background: var(--color-light-text);
  padding: 48px 24px 24px;
}

.after-logo-title {
  margin: 50px auto 0;
  width: min(92vw, 980px);
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.34rem, 2.45vw, 2.38rem);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
}

.after-logo-initial {
  font-size: 1em;
  line-height: inherit;
  font-weight: inherit;
}

.after-logo-title::after {
  content: none;
}

.after-logo-subtitle {
  margin: -2px auto 0;
  width: min(92vw, 980px);
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.04rem, 1.78vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.after-logo-subtitle::before {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 0 auto 8px;
  background: #be3c13;
  border-radius: 999px;
  transform: translateY(-5px);
}

.after-logo-text {
  width: min(56vw, 500px);
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.86rem, 1.14vw, 1.04rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: justify;
  background: #f7f2e5;
  padding: 24px 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.after-logo-grid {
  margin: 66px auto 0;
  width: min(86vw, 860px);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
  transform: translateX(1.8%);
}

.after-logo-side {
  width: clamp(200px, 25.5vw, 285px);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.after-logo-card {
  flex: 1;
  min-height: 0;
  background: #f7f2e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.after-logo-card-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.after-logo-card-link:hover,
.after-logo-card-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.after-logo-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 14px;
  padding-right: 10px;
  gap: 8px;
}

.after-logo-feather {
  display: block;
  width: clamp(26px, 3.3vw, 42px);
  aspect-ratio: 1 / 1;
  background: #be3c13;
  -webkit-mask: url("assets/system.png") center / contain no-repeat;
  mask: url("assets/system.png") center / contain no-repeat;
}

.after-logo-feather-loupe {
  -webkit-mask-image: url("assets/search.png");
  mask-image: url("assets/search.png");
  width: clamp(21px, 2.7vw, 33px);
  margin-left: 4px;
}

.after-logo-card-label {
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.8rem, 0.98vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  transform: translateY(2px);
  margin-left: 1px;
}

.after-logo-card-label-bottom {
  margin-left: 11px;
}

.after-logo-text p {
  margin: 0 0 10px;
}

.after-logo-text p:last-child {
  margin-bottom: 0;
}

.text-regular {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: var(--candal-letter-spacing);
}

.topbar {
  width: 100%;
  height: 84px;
  background: transparent;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  isolation: isolate;
}

.topbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 210px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.26) 0%,
    rgba(0, 0, 0, 0.14) 45%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.topbar-inner {
  width: 100%;
  height: 84px;
  margin: 0;
  padding: 0 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
}

.topbar-logo {
  display: block;
  width: auto;
  height: 132px;
  transform: translateY(4px);
  position: relative;
  z-index: 2;
}

.topbar-brand {
  display: block;
}

.topbar-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0;
  z-index: 1;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--color-light-text);
  color: var(--color-light-text);
  border-radius: 16px;
  text-decoration: none;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: var(--candal-letter-spacing);
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.topbar-cta:visited {
  color: var(--color-light-text);
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  filter: brightness(1.08);
}

.topbar-link {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-light-text);
  text-decoration: none;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.topbar-link:visited {
  color: var(--color-light-text);
}

.topbar-link:hover,
.topbar-link:focus-visible {
  filter: brightness(1.08);
}

.home {
  width: 100%;
  min-height: 0;
  background: none;
}

.main-visual {
  width: 100%;
  position: relative;
}

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

.main-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overlay-section {
  position: absolute;
  top: 118vh;
  left: 50%;
  transform: translateX(-86%);
  width: min(42vw, 560px);
  padding: 0;
}

.overlay-title {
  margin: 0;
  display: block;
  width: 100%;
  max-width: none;
  color: var(--color-accent-ochre);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 2.1vw, 1.88rem);
  font-weight: 600;
  letter-spacing: var(--candal-letter-spacing);
  line-height: 1.08;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-9px);
  text-shadow: 0 2px 6px rgba(24, 42, 29, 0.32);
}

.overlay-title::first-letter {
  font-size: 1.55em;
  line-height: 0.8;
  font-weight: 400;
}

.overlay-divider {
  height: 1px;
  width: calc(100vw + 100%);
  margin: 4px 0 14px -100vw;
  background: var(--color-accent-ochre);
  opacity: 0.5;
  box-shadow: 0 2px 6px rgba(24, 42, 29, 0.28);
}

.overlay-text {
  margin-top: 18px;
  width: 100%;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1.04rem);
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  text-shadow: 0 2px 5px rgba(24, 42, 29, 0.3);
}

.overlay-text p {
  margin: 0 0 10px;
}

.overlay-text p:last-child {
  margin-bottom: 0;
}

.overlay-content {
  position: relative;
}

.overlay-mark {
  position: absolute;
  top: -54px;
  right: -460px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.overlay-icon {
  width: 46px;
  aspect-ratio: 1 / 1;
  display: block;
  background: var(--color-accent-ochre);
  -webkit-mask: url("assets/feather-pen.png") center / contain no-repeat;
  mask: url("assets/feather-pen.png") center / contain no-repeat;
  filter: drop-shadow(0 2px 5px rgba(24, 42, 29, 0.34));
}

.overlay-note {
  color: var(--color-accent-ochre);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(24, 42, 29, 0.34);
}

.hero-green {
  width: 100%;
  height: 50vh;
  background: var(--color-signature-green);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 24px 3vh;
}

.hero-logo {
  display: block;
  width: auto;
  height: 105vh;
  max-width: 95vw;
  transform: translate(-1.5vw, 36vh);
}

.intro-section {
  width: 100%;
  padding: 72px 24px 24px;
}

.intro-content {
  width: min(92vw, 560px);
  margin: 0 auto;
}

.intro-title {
  margin: 0 0 24px;
  display: block;
  width: 100%;
  color: var(--color-signature-green);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: var(--candal-letter-spacing);
  text-transform: uppercase;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
  transform: translateX(-4px);
}

.intro-initial {
  font-size: 2em;
  line-height: 0.8;
  vertical-align: baseline;
}

.intro-text {
  width: 100%;
  color: var(--color-text-anthracite);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
  text-justify: inter-word;
  text-wrap: pretty;
}

.intro-text p {
  margin: 0 0 6px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.scroll-space {
  width: 100%;
  min-height: 52vh;
}

.nos-aventures-section {
  width: 100%;
  background: var(--color-light-text);
  margin-top: -540px;
  padding: 0 0 20px;
}

.nos-aventures-title {
  margin: 14px 0 0;
  margin-left: clamp(226px, 25.8vw, 426px);
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.65vw, 2.3rem);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.nos-aventures-title::before {
  content: "";
  position: absolute;
  top: 47.8%;
  right: calc(100% + 14px);
  width: 100vw;
  height: 2px;
  background: #be3c13;
  transform: translateY(-50%);
}



.aventures-card-section {
  width: 100%;
  background: var(--color-light-text);
  padding: 52px 24px 44px;
  display: flex;
  justify-content: center;
}

.aventures-card-shell {
  position: relative;
  width: min(78vw, 820px);
}

.aventures-slider-window {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.aventures-slider-track {
  display: flex;
  width: 100%;
  transition: transform 380ms ease;
}

.aventures-card {
  width: 100%;
  min-height: clamp(190px, 24vw, 270px);
  background: #f8f4e8;
  padding: 20px 22px;
}

.aventures-slide {
  flex: 0 0 100%;
}

.aventures-slide-title {
  margin: 44px 0 0 300px;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 650;
  font-variation-settings: "wght" 650;
  letter-spacing: 0.12em;
}

.aventures-slide-title-centered {
  margin: 38px 0 0;
  width: 100%;
  text-align: center;
  font-size: clamp(1.14rem, 2.05vw, 1.72rem);
  font-weight: 750;
  font-variation-settings: "wght" 750;
  letter-spacing: 0.1em;
}

.aventures-slide-subline {
  margin: 3px 0 0;
  width: 100%;
  text-align: center;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aventures-slide-note {
  margin: 20px 0 0;
  width: 100%;
  text-align: center;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.82rem, 1.08vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.aventures-notify-form {
  margin: 14px 0 0;
  width: min(92%, 420px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}

.aventures-notify-btn {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: #be3c13;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.64rem, 0.82vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.aventures-notify-btn:hover,
.aventures-notify-btn:focus-visible {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.aventures-notify-input {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(190, 60, 19, 0.85);
  background: #fbf8f1;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.7rem, 0.88vw, 0.84rem);
  letter-spacing: 0.02em;
}

.aventures-notify-input::placeholder {
  color: #8b8b8b;
}

.aventures-notify-feedback {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.aventures-slide-synopsis {
  margin: 8px 0 0 300px;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 0.98vw, 0.94rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.aventures-features {
  margin: 20px 0 0 300px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.aventures-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aventures-feature-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: #be3c13;
}

.aventures-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.aventures-group-icon {
  width: 100%;
  height: 100%;
  display: block;
  background: #be3c13;
  -webkit-mask: url("assets/groupe.png") center / contain no-repeat;
  mask: url("assets/groupe.png") center / contain no-repeat;
}

.aventures-feature-text {
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.74rem, 0.94vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.aventures-feature-text-players {
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(0.74rem, 0.92vw, 0.88rem);
  letter-spacing: 0.08em;
}

.aventures-more-btn {
  margin: 26px 0 0 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  background: #be3c13;
  color: var(--color-light-text);
  text-decoration: none;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.66rem, 0.84vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.aventures-more-btn:hover,
.aventures-more-btn:focus-visible {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.scenario-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--color-light-text);
  z-index: 900;
  transform: translateY(110%);
  transition: transform 780ms cubic-bezier(0.2, 0.86, 0.22, 1);
  pointer-events: none;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
}

.scenario-panel.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.scenario-panel-back {
  position: absolute;
  top: 174px;
  left: 68px;
  border: 0;
  background: transparent;
  color: #be3c13;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;
}

.scenario-panel-back:hover,
.scenario-panel-back:focus-visible {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.04);
}

.scenario-panel-back-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #be3c13;
  color: var(--color-light-text);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.scenario-panel-back-text {
  color: #be3c13;
  font-weight: 400;
}

.scenario-panel-title {
  margin: 0;
  position: absolute;
  top: 184px;
  left: 50%;
  width: min(86vw, 1220px);
  transform: translateX(-50%);
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 820;
  letter-spacing: 0.08em;
  text-align: left;
}

.scenario-panel-content {
  width: min(86vw, 1220px);
  margin: 272px auto 80px;
}

.scenario-detail-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.scenario-detail-visual {
  background: #c5c5c5;
  min-height: 390px;
}

.scenario-detail-visual-inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.scenario-detail-visual-title {
  margin: 0;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.36rem, 2.7vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-detail-card {
  background: #f8f4e8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
}

.scenario-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.scenario-detail-row-last {
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 12px;
}

.scenario-detail-label {
  color: #252525;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 420;
}

.scenario-detail-value {
  color: #1f1f1f;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}

.scenario-detail-players {
  color: #be3c13;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: inline-block;
  transform: translateY(1px);
}

.scenario-detail-small {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}

.scenario-detail-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.scenario-detail-diff-text {
  margin-left: 6px;
  color: #be3c13;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transform: translateY(1px);
  display: inline-block;
}

.scenario-detail-unit {
  margin-left: 2px;
}

.scenario-detail-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.scenario-detail-access {
  padding: 12px 0 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.scenario-detail-access-title {
  margin: 0 0 8px;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.scenario-detail-access-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-detail-access-list li {
  margin: 0 0 4px;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 420;
  line-height: 1.35;
}

.scenario-detail-access-list li:last-child {
  margin-bottom: 0;
}

.scenario-detail-btn {
  min-height: 46px;
  min-width: 122px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.scenario-detail-btn-fill {
  background: #be3c13;
  color: var(--color-light-text);
}

.scenario-detail-btn-outline {
  border: 1px solid #be3c13;
  color: #be3c13;
  background: transparent;
}

.scenario-detail-bottom {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.scenario-detail-copy {
  padding-top: 12px;
  max-width: 92%;
}

.scenario-detail-section-title {
  margin: 0 0 14px;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 2.16rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-detail-section-title-alt {
  margin-top: 30px;
  margin-bottom: 12px;
  color: #6f8353;
  font-size: 1.86rem;
}

.scenario-detail-text {
  margin: 0 0 22px;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 380;
  line-height: 1.56;
  letter-spacing: 0.012em;
  text-align: justify;
  text-justify: inter-word;
}

.scenario-detail-copy .scenario-detail-text:nth-of-type(2) {
  margin-top: -16px;
}

.scenario-detail-inclus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.scenario-detail-inclus-item {
  min-height: 86px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.65);
}

.scenario-detail-images {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scenario-detail-image {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.scenario-detail-image-top {
  background-image: linear-gradient(180deg, rgba(255, 180, 170, 0.2), rgba(0, 0, 0, 0.18)), radial-gradient(circle at 70% 24%, #ffd3bf 0%, #8ab2c6 40%, #4a6882 100%);
}

.scenario-detail-image-bottom {
  background-image: linear-gradient(180deg, rgba(138, 112, 220, 0.18), rgba(0, 0, 0, 0.24)), radial-gradient(circle at 50% 10%, #e8d2ff 0%, #556cb0 45%, #1b2f5e 100%);
}

.scenario-panel-open {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 500ms ease, translate 620ms cubic-bezier(0.2, 0.82, 0.22, 1);
  will-change: opacity, translate;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
}

.aventures-difficulty-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.aventures-lock {
  width: 16px;
  height: 16px;
  display: block;
  -webkit-mask: url("assets/cadenas.png") center / contain no-repeat;
  mask: url("assets/cadenas.png") center / contain no-repeat;
}

.aventures-hourglass {
  width: 18px;
  height: 18px;
  display: block;
  background: #be3c13;
  -webkit-mask: url("assets/hourglass.png") center / contain no-repeat;
  mask: url("assets/hourglass.png") center / contain no-repeat;
}

.aventures-hourglass-after {
  margin-left: 14px;
}

.aventures-hourglass-after + .aventures-feature-text {
  margin-left: -2px;
}

.aventures-lock-active {
  background: #be3c13;
}

.aventures-lock-inactive {
  background: #969696;
}

.aventures-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #be3c13;
  color: var(--color-light-text);
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.aventures-arrow-left {
  left: -58px;
}

.aventures-arrow-right {
  right: -58px;
}

.aventures-arrow:hover,
.aventures-arrow:focus-visible {
  transform: translateY(calc(-50% - 1px)) scale(1.04);
  filter: brightness(1.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.bottom-arc-section {
  width: 100%;
  background: var(--color-light-text);
  min-height: 250px;
  margin-top: 102px;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
}

.bottom-arc-shape {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #be3c13;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  position: relative;
  padding-top: clamp(32px, 4.2vw, 54px);
}

.bottom-arc-title {
  margin: 0;
  position: absolute;
  top: clamp(30px, 4.3vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.72rem, 3.2vw, 3.12rem);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}


.bottom-arc-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.bottom-arc-subtitle {
  margin: 0;
  position: absolute;
  top: clamp(74px, 9.4vw, 118px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.94rem, 1.28vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}


.home-footer {
  width: 100%;
  background: #be3c13;
  padding: 8px 24px 28px;
  text-align: center;
}

.home-footer-link {
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: none;
}

.home-footer-link:hover,
.home-footer-link:focus-visible {
  text-decoration: underline;
}

.legal-page {
  margin: 0;
  min-height: 100dvh;
  background: #efebe0;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
}

.legal-main {
  width: min(92vw, 980px);
  margin: 0 auto;
  padding: 56px 24px 44px;
  background: #ffffff;
  border: 1px solid #ddd6c6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.legal-title {
  margin: 0 0 26px;
  color: #272727;
  font-size: clamp(1.24rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd6c6;
  padding-bottom: 14px;
}

.legal-text {
  margin: 0;
  font-size: clamp(0.94rem, 1.05vw, 1.04rem);
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-item {
  margin: 0 0 22px;
}

.legal-item:last-child {
  margin-bottom: 28px;
}

.legal-item-title {
  margin: 0 0 8px;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.legal-back {
  color: #4a4a4a;
  font-size: 0.86rem;
  text-decoration: none;
  border-top: 1px solid #ddd6c6;
  display: inline-block;
  padding-top: 14px;
}

.legal-back:hover,
.legal-back:focus-visible {
  text-decoration: underline;
}

.info-page {
  background: #be3c13;
}

.contact-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.contact-main {
  flex: 1 0 auto;
  min-height: 0;
  padding: 86px 0 88px;
}

.contact-page .site-infos-section {
  margin-top: 0;
}

.contact-page .site-infos-section::before {
  display: none;
}

.contact-page .scenarios-title {
  color: var(--color-light-text);
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
}

.contact-page .scenarios-title::after {
  display: none;
}

.contact-page-subtitle {
  margin: -10px 0 0;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.94rem, 1.28vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-page .contact-form-section {
  position: static;
  transform: none;
  width: min(88vw, 860px);
  margin: 90px auto 0;
  padding: 0;
}

.contact-page .contact-form {
  width: 100%;
}

.contact-icons-row {
  width: min(88vw, 860px);
  margin: 66px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.contact-icon {
  width: clamp(28px, 2.2vw, 36px);
  height: auto;
  display: block;
  filter: url(#emailDuotone);
}

.contact-icon-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon-phone {
  width: clamp(30px, 2.45vw, 40px);
}

.contact-icon-block-phone {
  transform: none;
}

.contact-icon-text {
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.16rem, 1.62vw, 1.46rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}

.contact-icon-mail-link {
  text-decoration: none;
}

.contact-icon-mail-link:hover,
.contact-icon-mail-link:focus-visible {
  text-decoration: underline;
}

.scenarios-page {
  background: var(--color-light-text);
}

.scenarios-main {
  min-height: 100dvh;
  padding-top: 86px;
  background: var(--color-light-text);
}

.scenarios-title {
  margin: 92px auto 0;
  width: fit-content;
  max-width: calc(100% - 32px);
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.scenarios-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 248px;
  height: 2px;
  margin: 2px auto 0;
  background: rgba(190, 60, 19, 0.9);
  transform: translateX(-6px);
}

.scenarios-card-section {
  padding-top: 54px;
  background: var(--color-light-text);
}

.scenarios-card-section-secondary {
  padding-top: 36px;
  padding-bottom: 46px;
  background: var(--color-light-text);
}

.scenarios-card-shell {
  width: min(78vw, 820px);
}

.reserver-layout {
  width: min(94vw, 1420px);
  margin: 40px auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reserver-guide {
  width: fit-content;
  max-width: min(86vw, 1220px);
  border-top: 0;
  border-left: 2px solid rgba(190, 60, 19, 0.32);
  padding-top: 0;
  padding-left: 14px;
  margin: -24px auto 0;
  text-align: left;
}

.reserver-guide-step {
  margin: 0 0 16px;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.62rem, 0.78vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.048em;
  text-transform: uppercase;
  line-height: 1.4;
}

.reserver-guide-num {
  font-weight: 800;
}

.reserver-guide-step:last-child {
  margin-bottom: 0;
}

.reserver-frame-wrap {
  width: min(86vw, 1220px);
  justify-self: center;
  margin: 14px 0 0;
  transform: none;
  background: #f8f4e8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.reserver-help {
  width: min(86vw, 1220px);
  margin: 10px 0 0;
  color: #be3c13;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.45;
  text-align: center;
}

.reserver-frame {
  width: 100%;
  height: min(66vh, 780px);
  border: 0;
  display: block;
  background: #fff;
}

.reserver-page,
body.reserver-page {
  background: #f8f4e8 !important;
}

.reserver-page .scenarios-main {
  background: #f8f4e8 !important;
}

.reserver-page .scenarios-title::after {
  content: none;
}

.reserver-page .scenarios-title {
  margin-top: 108px;
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.reserver-bottom-band {
  width: 100%;
  height: 140px;
  background: #f8f4e8 !important;
}

.scenarios-page .aventures-card {
  min-height: clamp(212px, 23.2vw, 260px);
  height: clamp(212px, 23.2vw, 260px);
}

.info-main {
  min-height: 100dvh;
  display: block;
  padding: 164px 24px 120px;
}

.info-content {
  width: min(76vw, 760px);
  margin: 0 auto;
  color: var(--color-light-text);
  padding: 0;
}

.info-title {
  margin: 0 0 18px;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.9vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.faq-page .info-title {
  margin-top: 18px;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

.info-text {
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.64;
  letter-spacing: 0.015em;
}

.info-text p {
  margin: 0 0 24px;
}

.info-text p:last-child {
  margin-bottom: 0;
}

.faq-categories {
  width: min(88vw, 760px);
  margin: 118px auto 0;
  padding: 0;
  list-style: none;
}

.faq-categories li {
  margin: 0 0 10px;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-questions {
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.faq-question-item {
  margin: 0 0 14px;
  list-style: none;
}

.faq-question-toggle {
  width: 100%;
  border: 0;
  padding: 18px 22px;
  background: rgba(244, 238, 223, 0.9);
  color: #be3c13;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.faq-question-toggle:hover,
.faq-question-toggle:focus-visible {
  background: rgba(244, 238, 223, 0.9);
}

.faq-question-icon {
  flex: 0 0 auto;
  font-size: 1.2em;
  line-height: 1;
}

.faq-answer {
  padding: 14px 22px 18px;
  background: #f4eedf;
  border-top: 1px solid rgba(190, 60, 19, 0.16);
}

.faq-answer p {
  margin: 0;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.94rem, 1.08vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.5;
  text-transform: none;
}

.faq-answer p + p {
  margin-top: 8px;
}

.faq-answer-emphasis {
  font-weight: 600;
}

.info-text-highlight {
  background: #f4eedf;
  color: #be3c13;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 66px;
  padding: 8px 0 6px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 64px;
  bottom: 300px;
  left: 50%;
  width: 2px;
  background: rgba(244, 238, 223, 0.85);
  transform: translateX(-50%);
  z-index: 0;
}

.about-step {
  margin: 0;
  width: min(41vw, 340px);
  padding: 14px 16px;
  background: #f4eedf;
  color: #be3c13;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.012em;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  position: relative;
  z-index: 1;
  --about-x: 0px;
  --about-y: 40px;
  transform: translate(var(--about-x), var(--about-y));
}

.about-step::before {
  content: none;
}

.about-step:nth-child(odd) {
  justify-self: start;
}

.about-step:nth-child(odd)::before {
  right: -26px;
}

.about-step:nth-child(even) {
  justify-self: end;
}

.about-step:nth-child(even)::before {
  left: -26px;
}

.about-step-lead,
.about-step-emphasis {
  font-weight: 650;
}

.about-step:first-child {
  width: min(50vw, 500px);
  background: #be3c13;
  color: var(--color-light-text);
  font-size: clamp(0.96rem, 1.06vw, 1.06rem);
  font-weight: 360;
  box-shadow: none;
  border-radius: 0;
  padding: 6px 0;
  --about-x: -14px;
  --about-y: 56px;
}

.about-step:nth-child(n + 2) {
  width: min(46vw, 440px);
  background: #be3c13;
  color: var(--color-light-text);
  font-size: clamp(0.96rem, 1.06vw, 1.06rem);
  font-weight: 360;
  box-shadow: none;
  border-radius: 0;
  padding: 6px 0;
  --about-x: 0px;
  --about-y: 56px;
}

.about-step:nth-child(2) {
  width: min(42vw, 400px);
  --about-x: -18px;
  --about-y: 56px;
}

.about-step:nth-child(3) {
  width: min(54vw, 560px);
  --about-x: -16px;
  --about-y: 56px;
}

.about-step:nth-child(4) {
  width: min(54vw, 560px);
  --about-x: 36px;
  --about-y: 38px;
}

.about-step:nth-child(5) {
  width: min(64vw, 720px);
  justify-self: center;
  --about-x: 0px;
  --about-y: 56px;
  background: #be3c13;
  color: var(--color-light-text);
  box-shadow: none;
  border-radius: 0;
  padding: 6px 0;
}

.about-step:nth-child(5)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 22px;
  background: rgba(244, 238, 223, 0.8);
}

.about-step:nth-child(6) {
  width: min(68vw, 780px);
  justify-self: center;
  text-align: center;
  text-align-last: center;
  font-weight: 520;
  --about-x: 0px;
  --about-y: 6px;
  background: #be3c13;
  color: var(--color-light-text);
  box-shadow: none;
  border-radius: 0;
  padding: 6px 0;
}

.about-step.reveal-on-scroll {
  opacity: 0;
  translate: 0 0;
  transform: translate(var(--about-x), calc(var(--about-y) + 22px));
  transition: opacity 500ms ease, transform 640ms cubic-bezier(0.2, 0.82, 0.22, 1);
}

.about-step.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(var(--about-x), var(--about-y));
}

.about-step:first-child::before {
  content: none;
}

@media (max-width: 640px) {
  .topbar {
    height: 72px;
  }

  .topbar::after {
    height: 170px;
  }

  .topbar-inner {
    height: 72px;
    padding: 0 8px;
  }

  .topbar-logo {
    height: 116px;
  }

  .topbar-nav {
    gap: 28px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }

  .topbar-link {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }

  .center-stage {
    padding: 14px;
  }

  .center-logo {
    width: min(80vw, 600px);
    transform: translate(-1.5vw, -14vh);
  }

  .after-logo {
    margin-top: -54vh;
    min-height: 130vh;
    padding: 30px 14px 16px;
  }

  .after-logo-title {
    margin-top: 36px;
    font-size: clamp(1.08rem, 4.8vw, 1.62rem);
  }

  .after-logo-subtitle {
    margin-top: -1px;
    font-size: clamp(0.92rem, 4.1vw, 1.24rem);
  }

  .after-logo-subtitle::before {
    width: 64px;
    margin-bottom: 6px;
  }

  .after-logo-text {
    width: 100%;
    font-size: clamp(0.76rem, 3.05vw, 0.94rem);
    line-height: 1.4;
    padding: 18px 18px;
  }

  .after-logo-grid {
    margin-top: 42px;
    width: min(86vw, 430px);
    gap: 16px;
    transform: translateX(-11%);
  }

  .after-logo-side {
    width: 124px;
    gap: 16px;
  }

  .after-logo-card-icon {
    padding-left: 10px;
    padding-right: 8px;
    gap: 6px;
  }

  .after-logo-card-label {
    font-size: 0.62rem;
    letter-spacing: 0.045em;
  }

  .after-logo-feather {
    width: 26px;
  }

  .topbar-cta {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .home {
    min-height: 0;
  }

  .overlay-section {
    top: 106vh;
    left: 50%;
    transform: translateX(-78%);
    width: min(84vw, 420px);
    padding: 0;
  }

  .overlay-title {
    max-width: none;
    font-size: clamp(0.8rem, 3.3vw, 1.18rem);
    white-space: nowrap;
  }

  .overlay-text {
    margin-top: 12px;
    font-size: clamp(0.76rem, 2.35vw, 0.92rem);
    letter-spacing: 0.055em;
    line-height: 1.45;
  }

  .overlay-content {
    position: relative;
  }

  .overlay-mark {
    top: -36px;
    right: -250px;
    gap: 6px;
  }

  .overlay-icon {
    width: 30px;
  }

  .overlay-note {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .hero-green {
    padding: 0 14px 2.5vh;
  }

  .hero-logo {
    width: auto;
    height: 90vh;
    max-width: 96vw;
    transform: translate(-2.5vw, 28vh);
  }

  .intro-section {
    padding: 56px 14px 18px;
  }

  .intro-content {
    width: min(92vw, 460px);
  }

  .intro-title {
    margin-bottom: 16px;
    white-space: normal;
  }

  .intro-text {
    line-height: 1.55;
  }

  .scroll-space {
    min-height: 36vh;
  }

  .nos-aventures-section {
    margin-top: -290px;
    padding: 0 0 12px;
  }

  .nos-aventures-title {
    margin-top: 10px;
    margin-left: 116px;
    font-size: clamp(0.86rem, 3.8vw, 1.24rem);
    letter-spacing: 0.12em;
  }

  .nos-aventures-title::before {
    right: calc(100% + 10px);
    height: 1px;
  }

  .aventures-card-section {
    padding: 36px 12px 30px;
  }

  .aventures-card-shell {
    width: min(84vw, 420px);
  }

  .aventures-slider-track {
    transition-duration: 320ms;
  }

  .aventures-card {
    min-height: 154px;
    padding: 12px 14px;
  }

  .aventures-slide-title {
    margin: 26px 0 0 118px;
    font-size: clamp(0.84rem, 3.1vw, 1.08rem);
  }

  .aventures-slide-title-centered {
    margin: 22px 0 0;
    font-size: clamp(0.9rem, 3.35vw, 1.2rem);
  }

  .aventures-slide-subline {
    margin-top: 3px;
    font-size: clamp(0.72rem, 2.6vw, 0.92rem);
  }

  .aventures-slide-note {
    margin-top: 12px;
    font-size: clamp(0.68rem, 2.45vw, 0.86rem);
  }

  .aventures-notify-form {
    margin-top: 10px;
    width: min(96%, 300px);
    gap: 6px;
  }

  .aventures-notify-btn,
  .aventures-notify-input {
    min-height: 26px;
  }

  .aventures-notify-btn {
    padding: 0 8px;
    font-size: clamp(0.5rem, 1.85vw, 0.62rem);
  }

  .aventures-notify-input {
    padding: 0 8px;
    font-size: clamp(0.56rem, 2vw, 0.7rem);
  }

  .aventures-slide-synopsis {
    margin: 6px 0 0 118px;
    font-size: clamp(0.62rem, 2.25vw, 0.76rem);
  }

  .aventures-features {
    margin: 12px 0 0 118px;
    gap: 12px;
  }

  .aventures-feature {
    gap: 6px;
  }

  .aventures-feature-icon {
    width: 17px;
    height: 17px;
  }

  .aventures-feature-text {
    font-size: clamp(0.58rem, 2.1vw, 0.72rem);
  }

  .aventures-more-btn {
    margin: 16px 0 0 118px;
    min-height: 26px;
    padding: 0 10px;
    font-size: clamp(0.52rem, 1.9vw, 0.64rem);
  }

  .aventures-difficulty-icons {
    gap: 3px;
  }

  .aventures-lock {
    width: 13px;
    height: 13px;
  }

  .aventures-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .aventures-arrow-left {
    left: -34px;
  }

  .aventures-arrow-right {
    right: -34px;
  }

  .bottom-arc-section {
    min-height: 160px;
    margin-top: 62px;
  }

  .bottom-arc-shape {
    width: 100%;
    aspect-ratio: 2 / 1;
  }

  .contact-form-section {
    top: 86px;
    width: min(92vw, 460px);
  }

  .contact-form {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-field span {
    font-size: 0.62rem;
  }

  .contact-field input,
  .contact-field textarea {
    min-height: 30px;
    font-size: 0.76rem;
  }

  .contact-field textarea {
    min-height: 96px;
  }

  .bottom-arc-title {
    top: 20px;
    font-size: clamp(1.34rem, 6vw, 2.06rem);
  }

  .bottom-arc-subtitle {
    top: 44px;
    font-size: clamp(0.74rem, 2.7vw, 0.94rem);
  }

  .home-footer {
    padding: 6px 12px 24px;
  }

  .home-footer-link {
    font-size: 0.7rem;
  }

  .scenario-panel {
    top: 0;
  }

  .scenario-panel-back {
    top: 160px;
    left: 40px;
    font-size: 0.72rem;
    gap: 8px;
  }

  .scenario-panel-back-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .scenario-panel-title {
    top: 156px;
    width: calc(100% - 32px);
    font-size: clamp(1.12rem, 5.8vw, 1.68rem);
  }

  .scenario-panel-content {
    width: calc(100% - 24px);
    margin: 222px auto 30px;
  }

  .scenario-detail-top,
  .scenario-detail-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .scenario-detail-visual {
    min-height: 220px;
  }

  .scenario-detail-visual-inner {
    padding: 12px 14px;
  }

  .scenario-detail-visual-title {
    font-size: clamp(1rem, 6vw, 1.48rem);
  }

  .scenario-detail-card {
    padding: 14px 14px;
  }

  .scenario-detail-row {
    min-height: 42px;
  }

  .scenario-detail-label {
    font-size: 0.86rem;
  }

  .scenario-detail-value {
    font-size: 0.92rem;
  }

  .scenario-detail-small {
    font-size: 0.8rem;
  }

  .scenario-detail-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .scenario-detail-btn {
    min-height: 38px;
    min-width: 100px;
    font-size: 0.82rem;
  }

  .scenario-detail-section-title {
    font-size: 1.36rem;
    margin-bottom: 10px;
  }

  .scenario-detail-section-title-alt {
    margin-top: 20px;
    font-size: 1.2rem;
  }

  .scenario-detail-text {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .scenario-detail-inclus-item {
    min-height: 62px;
  }

  .scenario-detail-image {
    min-height: 138px;
  }

  .legal-main {
    padding: 40px 14px 26px;
  }

  .info-main {
    padding: 122px 14px 26px;
  }

  .scenarios-main {
    padding-top: 74px;
  }

  .scenarios-title {
    width: min(92vw, 460px);
    font-size: clamp(1.12rem, 6.3vw, 1.9rem);
  }

  .scenarios-card-shell {
    width: min(92vw, 460px);
  }

  .reserver-layout {
    width: min(94vw, 560px);
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .reserver-guide {
    width: min(94vw, 560px);
    border-left-width: 1px;
    padding-top: 0;
    padding-left: 10px;
  }

  .reserver-guide-step {
    margin-bottom: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }

  .reserver-frame {
    height: 72vh;
  }

  .reserver-bottom-band {
    height: 160px;
  }

  .info-content {
    width: min(88vw, 500px);
    padding: 0;
  }

  .info-title {
    margin-bottom: 14px;
    font-size: clamp(1rem, 5.2vw, 1.34rem);
  }

  .info-text {
    font-size: clamp(0.82rem, 2.85vw, 0.95rem);
    line-height: 1.58;
  }

  .info-text p {
    margin-bottom: 18px;
  }

  .info-text-highlight {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .about-timeline {
    gap: 14px;
    padding-top: 4px;
  }

  .about-timeline::before {
    left: 12px;
    transform: none;
  }

  .about-step {
    width: 100%;
    justify-self: stretch !important;
    margin-left: 28px;
    padding: 10px 12px;
    font-size: clamp(0.8rem, 2.75vw, 0.9rem);
    line-height: 1.5;
    --about-x: 0px !important;
    --about-y: 0px !important;
    transform: none;
  }

  .about-step::before {
    left: -22px !important;
    right: auto !important;
    width: 9px;
    height: 9px;
  }

  .about-step:first-child {
    width: 100%;
    padding: 8px 0;
  }

}

.contact-form-section {
  position: absolute;
  top: clamp(164px, 19.8vw, 278px);
  left: 50%;
  transform: translateX(-50%);
  width: min(88vw, 860px);
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field span {
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(244, 238, 223, 0.85);
  background: #ece4d3;
  color: #272727;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  padding: 8px 10px;
  outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-light-text);
  box-shadow: 0 0 0 2px rgba(244, 238, 223, 0.2);
}

.contact-field-required {
  border-color: #cf2f2f !important;
  color: #cf2f2f !important;
}

.contact-field-required::placeholder {
  color: #cf2f2f;
  opacity: 1;
}

.contact-field textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.contact-submit-feedback {
  margin: 0 0 8px;
  min-height: 1em;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.contact-submit-btn {
  min-height: 44px;
  padding: 0 26px;
  border: 1px solid rgba(244, 238, 223, 0.9);
  background: rgba(244, 238, 223, 0.86);
  color: #be3c13;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.contact-submit-label {
  display: inline-block;
  transform: translateY(1px);
}

.contact-submit-btn:hover,
.contact-submit-btn:focus-visible {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.site-infos-section {
  width: 100%;
  background: #be3c13;
  padding: 42px 24px 0;
  position: relative;
  min-height: 1px;
}

.scenarios-page .site-infos-section,
.info-page .site-infos-section,
.legal-page .site-infos-section {
  margin-top: 120px;
  position: relative;
}

.scenarios-page .site-infos-section::before,
.info-page .site-infos-section::before,
.legal-page .site-infos-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  height: 120px;
  background: #be3c13;
  pointer-events: none;
}

.escape-games-page .site-infos-section {
  margin-top: 220px;
}

.site-infos-inner {
  width: min(92vw, 980px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translate(-96px, -26px);
  height: 0;
  overflow: visible;
}

.site-infos-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-infos-logo {
  width: clamp(170px, 18vw, 260px);
  height: auto;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  margin: 0;
  transform: translate(-148px, -216px);
}

.site-infos-cgv-link {
  position: absolute;
  right: clamp(172px, 21vw, 360px);
  top: 0;
  transform: translateY(calc(-470px + 43vh));
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 1.04vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.site-infos-cgv-link:hover,
.site-infos-cgv-link:focus-visible {
  text-decoration: underline;
}

.site-infos-legal-link {
  transform: translateY(calc(-470px + 47.8vh));
}

.site-infos-instagram-link {
  position: absolute;
  right: clamp(122px, 15.4vw, 298px);
  top: 0;
  transform: translateY(calc(-470px + 43.8vh));
  text-decoration: none;
}

.site-infos-instagram-icon {
  width: clamp(31px, 2.62vw, 39px) !important;
  height: auto;
  transform: none;
  transform-origin: center;
}

.site-infos-facebook-link {
  position: absolute;
  right: clamp(122px, 15.4vw, 298px);
  top: 0;
  transform: translateY(calc(-470px + 43.8vh + 50px));
  text-decoration: none;
}

.site-infos-facebook-icon {
  width: clamp(25px, 2.1vw, 30px);
  height: auto;
}

.site-infos-privacy-link {
  transform: translateY(calc(-470px + 52.2vh));
}

.site-infos-copyright {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 0;
  text-align: center;
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.56rem, 0.8vw, 0.72rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  transform: translate(-50%, 38px);
  pointer-events: none;
}

.site-infos-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transform: translateY(calc(-470px + 39vh));
}

.site-infos-row-phone {
  transform: translate(-2px, calc(-458px + 39vh));
}

.site-infos-email-icon {
  width: clamp(24px, 2.8vw, 36px);
  height: auto;
  display: block;
  filter: url(#emailDuotone);
}

.site-infos-phone-icon {
  width: clamp(27px, 3.2vw, 40px);
  transform: translateY(-11px);
}

.site-infos-email-text {
  color: var(--color-light-text);
  font-family: "League Spartan", "Segoe UI", sans-serif;
  font-size: clamp(0.82rem, 1.22vw, 1.16rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  line-height: 1;
  transform: translateY(9px);
}

.site-infos-phone-text {
  transform: translateY(3px);
}

.site-infos-section .site-infos-logo,
.site-infos-section .site-infos-cgv-link,
.site-infos-section .site-infos-instagram-link,
.site-infos-section .site-infos-facebook-link,
.site-infos-section .site-infos-copyright,
.site-infos-section .site-infos-row {
  translate: 0 88px;
}


@media (max-width: 640px) {
  .contact-form-section {
    top: 98px;
    width: min(92vw, 460px);
  }

  .contact-form {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-field span {
    font-size: 0.62rem;
  }

  .contact-field input,
  .contact-field textarea {
    min-height: 30px;
    font-size: 0.76rem;
  }

  .contact-field textarea {
    min-height: 96px;
  }

  .contact-submit-btn {
    min-height: 34px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .contact-submit-feedback {
    font-size: 0.64rem;
  }

  .site-infos-section {
    padding: 28px 12px 0;
    min-height: 1px;
  }

  .site-infos-inner {
    transform: translate(-40px, -14px);
  }

  .site-infos-list {
    gap: 8px;
  }

  .site-infos-logo {
    width: clamp(130px, 42vw, 200px);
    margin: 0;
    transform: translate(-102px, -122px);
  }

  .site-infos-cgv-link {
    right: 12px;
    transform: translateY(-106px);
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }

  .site-infos-instagram-link {
    right: 10px;
    transform: translateY(-106px);
  }

  .site-infos-instagram-icon {
    width: 24px !important;
    transform: none;
  }

  .site-infos-facebook-link {
    right: 10px;
    transform: translateY(calc(-106px + 34px));
  }

  .site-infos-facebook-icon {
    width: 18px;
  }

  .site-infos-copyright {
    font-size: 0.52rem;
    transform: translate(-50%, 28px);
  }

  .site-infos-row {
    gap: 8px;
    transform: translateY(calc(-226px + 39vh));
  }

  .site-infos-row-phone {
    transform: translate(-2px, calc(-220px + 39vh));
  }

  .site-infos-email-icon {
    width: 24px;
  }

  .site-infos-phone-icon {
    width: 27px;
    transform: translateY(-8px);
  }

  .site-infos-email-text {
    font-size: 0.74rem;
    transform: translateY(7px);
  }

  .site-infos-phone-text {
    transform: translateY(3px);
  }
}

@media (max-width: 640px) {
  .topbar {
    height: auto;
    min-height: 72px;
  }

  .topbar::after {
    height: 96px;
  }

  .topbar-inner {
    height: auto;
    min-height: 72px;
    padding: 8px 12px 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 8px 10px;
  }

  .topbar-brand {
    align-self: start;
  }

  .topbar-logo {
    height: 84px;
  }

  .topbar-nav {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-top: 10px;
  }

  .topbar-link,
  .topbar-cta {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .topbar-cta {
    min-height: 28px;
    padding: 0 10px;
  }

  .center-stage {
    min-height: 88svh;
    padding: 110px 14px 36px;
    align-items: center;
    justify-content: flex-start;
  }

  .center-logo {
    width: min(88vw, 500px);
    transform: translate(-2vw, 0);
  }

  .after-logo {
    margin-top: 0;
    min-height: auto;
    padding: 48px 16px 28px;
  }

  .after-logo-title {
    margin-top: 0;
    font-size: clamp(1.1rem, 4.8vw, 1.55rem);
  }

  .after-logo-subtitle {
    margin-top: 8px;
  }

  .after-logo-grid {
    width: min(92vw, 420px);
    margin-top: 32px;
    transform: none;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .after-logo-text {
    width: 100%;
    order: 2;
    padding: 18px 16px;
  }

  .after-logo-side {
    width: 100%;
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .after-logo-card {
    min-height: 88px;
  }

  .nos-aventures-section {
    margin-top: 0;
    padding: 10px 0 8px;
  }

  .nos-aventures-title {
    margin: 0 auto;
    width: fit-content;
  }

  .aventures-card-section {
    padding: 20px 12px 28px;
  }

  .aventures-card-shell {
    width: min(88vw, 420px);
  }

  .aventures-arrow-left {
    left: -16px;
  }

  .aventures-arrow-right {
    right: -16px;
  }

  .bottom-arc-section {
    margin-top: 56px;
    min-height: 0;
  }

  .bottom-arc-shape {
    aspect-ratio: auto;
    border-radius: 64px 64px 0 0;
    padding: 26px 0 28px;
  }

  .bottom-arc-title,
  .bottom-arc-subtitle {
    position: static;
    transform: none;
    text-align: center;
    white-space: normal;
  }

  .bottom-arc-subtitle {
    margin-top: 10px;
    padding: 0 16px;
  }

  .contact-form-section {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: min(92vw, 460px);
    margin: 22px auto 0;
  }

  .contact-page .contact-main {
    padding-bottom: 42px;
  }

  .contact-page .contact-icons-row {
    width: min(92vw, 420px);
    margin: 34px auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .contact-page .contact-icon-block {
    transform: none;
  }

  .contact-page .contact-icon-text {
    font-size: 0.96rem;
  }

  .faq-categories {
    width: min(92vw, 420px);
    margin-top: 68px;
  }

  .faq-categories li {
    font-size: clamp(1.06rem, 4.5vw, 1.4rem);
  }

  .faq-question-toggle,
  .faq-answer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-infos-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px 30px;
  }

  .site-infos-section::before {
    top: -72px;
    height: 72px;
  }

  .site-infos-section .site-infos-logo,
  .site-infos-section .site-infos-cgv-link,
  .site-infos-section .site-infos-instagram-link,
  .site-infos-section .site-infos-facebook-link,
  .site-infos-section .site-infos-copyright,
  .site-infos-section .site-infos-row {
    translate: none;
  }

  .site-infos-logo {
    position: static;
    transform: none;
    width: min(58vw, 220px);
    margin: 0 auto 4px;
  }

  .site-infos-inner {
    width: 100%;
    transform: none;
    height: auto;
    overflow: visible;
    justify-content: center;
    order: 2;
  }

  .site-infos-list {
    width: min(92vw, 320px);
    gap: 10px;
  }

  .site-infos-row,
  .site-infos-row-phone {
    transform: none;
    gap: 8px;
  }

  .site-infos-cgv-link,
  .site-infos-legal-link,
  .site-infos-privacy-link,
  .site-infos-instagram-link,
  .site-infos-facebook-link,
  .site-infos-copyright {
    position: static;
    transform: none;
  }

  .site-infos-cgv-link,
  .site-infos-legal-link,
  .site-infos-privacy-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
  }

  .site-infos-instagram-link,
  .site-infos-facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-infos-instagram-icon {
    width: 22px !important;
  }

  .site-infos-facebook-icon {
    width: 17px;
  }

  .site-infos-copyright {
    font-size: 0.56rem;
    order: 7;
  }
}

@media (max-width: 640px) {
  .topbar {
    height: 84px;
    min-height: 84px;
  }

  .topbar::after {
    height: 210px;
  }

  .topbar-inner {
    height: 84px;
    min-height: 84px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .topbar-brand {
    display: block;
    align-self: auto;
  }

  .topbar-logo {
    height: 108px;
  }

  .topbar-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 34px;
    padding: 0;
    transform: translate(-50%, -50%);
  }

  .topbar-link,
  .topbar-cta {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .topbar-cta {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 14px;
  }

  .site-infos-section {
    display: block;
    min-height: 220px;
    padding: 132px 12px 18px;
  }

  .site-infos-section::before {
    top: -86px;
    height: 86px;
  }

  .site-infos-section .site-infos-logo,
  .site-infos-section .site-infos-cgv-link,
  .site-infos-section .site-infos-instagram-link,
  .site-infos-section .site-infos-facebook-link,
  .site-infos-section .site-infos-copyright,
  .site-infos-section .site-infos-row {
    translate: none;
  }

  .site-infos-logo {
    position: absolute;
    left: 50%;
    top: 0;
    width: 150px;
    transform: translate(-78px, -110px);
  }

  .site-infos-inner {
    width: 100%;
    height: 0;
    justify-content: flex-start;
    overflow: visible;
    transform: translate(-8px, 0);
  }

  .site-infos-list {
    gap: 8px;
  }

  .site-infos-row {
    gap: 8px;
    transform: translate(0, -56px);
  }

  .site-infos-row-phone {
    transform: translate(0, -50px);
  }

  .site-infos-email-icon {
    width: 20px;
  }

  .site-infos-phone-icon {
    width: 23px;
    transform: translateY(-6px);
  }

  .site-infos-email-text {
    font-size: 0.68rem;
    transform: translateY(5px);
  }

  .site-infos-phone-text {
    transform: translateY(2px);
  }

  .site-infos-cgv-link {
    position: absolute;
    right: 8px;
    top: 0;
    width: auto;
    text-align: right;
    font-size: 0.56rem;
    line-height: 1.2;
    white-space: nowrap;
    transform: translateY(4px);
  }

  .site-infos-legal-link {
    transform: translateY(30px);
  }

  .site-infos-privacy-link {
    transform: translateY(56px);
  }

  .site-infos-instagram-link {
    position: absolute;
    right: 122px;
    top: 0;
    transform: translateY(26px);
  }

  .site-infos-instagram-icon {
    width: 18px !important;
  }

  .site-infos-facebook-link {
    position: absolute;
    right: 122px;
    top: 0;
    transform: translateY(52px);
  }

  .site-infos-facebook-icon {
    width: 14px;
  }

  .site-infos-copyright {
    position: absolute;
    left: 50%;
    top: 0;
    font-size: 0.48rem;
    transform: translate(-50%, 92px);
    order: initial;
  }
}






