:root {
  --bs-body-font-family: "Work Sans", system-ui, sans-serif;
  --bs-body-font-weight: 400;
  --bs-heading-font-weight: 600;
  --bs-body-color: #f5f5f0;
  --bs-body-bg: #000;
  --bs-body-line-height: 1.5;
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.hero-media {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  background-color: #000;
}

.hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.05) 42%,
    rgba(0, 0, 0, 0.28) 68%,
    rgba(0, 0, 0, 0.38) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-media iframe {
    display: none;
  }

  .hero-media {
    background-image: url("/images/soleilD1-22.jpg");
    background-size: cover;
    background-position: top right;
  }
}

.hero-bar {
  z-index: 2;
  padding: 28px 40px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.12) 70%,
    transparent 100%
  );
}

.logo {
  display: block;
  width: 56px;
  height: auto;
  aspect-ratio: 391 / 334;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.menu-toggle {
  top: 28px;
  right: 40px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  gap: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span {
  background: #111;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px 12vw 48px 8vw;
  background: #1a1d1f;
  clip-path: polygon(0 0, 48% 0, 100% 100%, 0 100%);
  transform: translateX(-28px);
  transition: transform 0.45s ease;
}

.site-menu.is-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-close {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 72px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  background: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35em;
}

.site-menu nav button {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.42);
  font-family: inherit;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease;
}

.site-menu nav button.is-active {
  color: #fff;
}

.site-menu nav button.is-active::after {
  content: "←";
  margin-left: 0.35em;
  font-size: 0.45em;
  font-weight: 400;
  vertical-align: middle;
  color: #7ea0ff;
}

.site-menu nav button:hover,
.site-menu nav button:focus-visible {
  color: #fff;
}

.site-menu-lang {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu-lang button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
}

.site-menu-lang button.is-active {
  color: #fff;
}

.contact-anchor {
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-copy {
  z-index: 2;
  top: 18%;
  left: 60%;
  right: 6%;
  max-width: 46rem;
  color: #fff;
}

.hero-copy h1,
.story-kicker {
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.story-kicker {
  margin-top: 2px;
  margin-bottom: 0;
}

.story-lead,
.story-question {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}

.story-lead {
  margin-top: 28px;
}

.story-question {
  margin-top: 22px;
}

.explore {
  display: inline-block;
  margin-top: 26px;
  color: #fff;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  padding-bottom: 2px;
}

.explore:hover,
.explore:focus-visible {
  color: #d4b07a;
  border-bottom-color: #d4b07a;
}

.scroll-down {
  z-index: 2;
  left: 50%;
  bottom: 36px;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
}

.scroll-down svg {
  width: 16px;
  height: 16px;
}

.about {
  background: #fff;
  color: #3d62d6;
  padding: 88px 6vw 12px;
}

.about-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #3d62d6;
}

.about p {
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  color: #3d62d6;
}

.lines {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 8px 0 0;
}

.lines-track {
  display: flex;
  width: max-content;
  margin: 0;
  font-size: 20vw;
  font-weight: 200;
  line-height: 0.8;
  letter-spacing: -0.045em;
  color: #3d62d6;
  white-space: nowrap;
  will-change: transform;
}

.lines-track span {
  display: block;
  flex: 0 0 auto;
}

.video-slider {
  position: relative;
  height: 300vh;
  background: #000;
}

.video-slider-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.video-slider-track {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.video-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.slide-copy {
  position: absolute;
  z-index: 2;
  top: 11vh;
  left: 6vw;
  max-width: 22rem;
  color: #fff;
}

.slide-copy h2 {
  width: fit-content;
  margin: 0 0 8px;
  padding: 0;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.slide-copy p {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.slide-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.slide-copy li {
  width: fit-content;
  margin-top: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.slide-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 28px;
}

.slide-actions a,
.slide-actions button {
  width: fit-content;
  padding: 0 0 1px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

.slide-actions a:hover,
.slide-actions a:focus-visible,
.slide-actions button:hover,
.slide-actions button:focus-visible {
  color: #d4b07a;
  border-bottom-color: #d4b07a;
}

.video-slide video,
.video-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-slide iframe.slide-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  background: #000;
}

.video-slider-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.video-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.video-slider-dots button.is-active {
  background: #fff;
}

@media (max-width: 991px) {
  .about-title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    top: auto;
    bottom: 88px;
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .hero-copy h1,
  .story-kicker {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .hero-bar {
    padding: 18px 20px;
  }

  .menu-toggle {
    top: 16px;
    right: 16px;
  }

  .logo {
    width: 42px;
  }

  .slide-copy {
    max-width: min(18rem, calc(100vw - 48px));
  }

  .slide-copy p {
    white-space: normal;
  }

  .site-menu-panel {
    padding: 36px 10vw 48px 28px;
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
  }
}
