/*
Theme Name: Soma
Author: Gymnase Studio Web
Description: Theme Custom pour SOMA
Version: 1.0.0
Text Domain: soma
*/
:root {
  --cream-tone: #ebe3d1;
  --sand-shade: #ece5d5;
  --warm-beige: #eae2d0;
  --sunset-orange: #ff5626;
  --muted-red: #7e223f;
  --black: #000;
  --black-2: #1d1d1b;
  --white: #fff;
  --light-blue: #9abde2;
  --font-bon-vivant: "bon-vivant";
  --puzzle-size: min(90vmin, 600px);
  --menu-row-height: calc(100dvh / 6);
  --header-bar-height: var(--menu-row-height);
  --page-edge-inline: 44px;
  --logo-inline-inset: var(--page-edge-inline);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  :root {
    --page-edge-inline: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Europa", sans-serif;
}

html,
body {
  overscroll-behavior: none;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

button {
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
button:focus {
  outline: none;
}

.container-center {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 22px;
}

.main-container {
  position: relative;
  height: calc(100dvh - var(--menu-row-height));
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--black, #000);
  color: var(--white, #fff);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #cmplz-cookiebanner-container .cmplz-cookiebanner.soma-cmplz-banner-entered:not(.cmplz-dismissed) {
    transition: none !important;
  }
}
.screen-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
}

.screen-loader-logo {
  width: auto;
  height: 150vh;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 10;
  pointer-events: none;
  background: transparent;
  mix-blend-mode: normal;
  filter: none;
}
@media (max-width: 1280px) {
  .screen-loader-logo {
    height: 80vh;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .screen-loader-logo {
    height: 50vh;
  }
}

.header-bar {
  background-color: var(--black);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10002;
  height: calc(var(--menu-row-height) + 1px);
  padding: 0 var(--logo-inline-inset);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.header-bar nav {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-bar a,
.header-bar button {
  pointer-events: auto;
}
.header-bar .logo {
  position: relative;
  width: 367px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--cream-tone);
  color: white;
  transition: color 0.6s ease;
}
.header-bar .logo svg {
  color: #fff;
  height: 100%;
  width: 100%;
}
.header-bar .logo #soma-o-hole,
.header-bar .logo #soma-a-hole {
  fill: #000;
}
.header-bar .navbar-toggle-btn {
  width: 95px;
  height: 95px;
  color: var(--white);
}
.header-bar .navbar-toggle-btn svg line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: 50% 50%;
}
.header-bar:not(.is-open) .navbar-toggle-btn:hover svg line:nth-of-type(1) {
  transform: translateY(-3px);
}
.header-bar:not(.is-open) .navbar-toggle-btn:hover svg line:nth-of-type(2) {
  transform: translateY(3px);
}
.header-bar.is-open .navbar-toggle-btn {
  color: #000000;
}
.header-bar.is-open .navbar-toggle-btn svg line:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-bar.is-open .navbar-toggle-btn svg line:nth-of-type(2) {
  transform: translateY(-5px) rotate(-45deg);
}
.header-bar.is-open .logo {
  color: #000000;
}
.header-bar.is-open .logo svg {
  color: #000;
}
.header-bar.is-open .logo #soma-o-hole,
.header-bar.is-open .logo #soma-a-hole {
  fill: var(--sunset-orange);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .header-bar.is-open .navbar-toggle-btn svg line:nth-of-type(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .header-bar.is-open .navbar-toggle-btn svg line:nth-of-type(2) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.header .logo svg {
  color: #fff;
  height: 100%;
  width: 100%;
}
.header .logo #soma-o-hole,
.header .logo #soma-a-hole {
  fill: #000;
}
.header .navbar-toggle-btn svg line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: 50% 50%;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .header .logo {
    width: 187px;
    height: 52px;
  }
  .header .navbar-toggle-btn {
    width: 82px;
  }
}

.language-btn {
  color: var(--black);
  font-size: 1.375rem;
  font-weight: 600;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 300;
  pointer-events: auto;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.language-btn a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}
.language-btn.language-btn--light {
  color: var(--white);
}
.language-btn.language-btn--dark {
  color: var(--black);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .language-btn {
    right: 24px;
    top: 15px;
  }
}

body:has(.header-bar.is-open) > .language-btn {
  opacity: 0;
  pointer-events: none;
}

.navbar-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: transparent;
  justify-content: flex-start;
  align-items: stretch;
}
.navbar-modal.active {
  display: flex;
}
.navbar-modal .navbar-modal-body {
  position: relative;
  width: 100%;
  height: calc(var(--menu-row-height) * 5);
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
}
.navbar-modal .navbar-modal-top-right {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
}
.navbar-modal .navbar-modal-top-right .navbar-modal-lang {
  color: var(--black);
  font-size: 1.375rem;
  font-weight: 600;
}
.navbar-modal .navbar-modal-top-right .navbar-modal-lang a {
  color: inherit;
  text-decoration: none;
}
.navbar-modal .navbar-modal-top-right .navbar-modal-privacy--desktop {
  color: #e04a1f;
  font-size: 1.375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.navbar-modal .navbar-modal-top-right .navbar-modal-privacy--desktop:hover {
  color: #a33510;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .navbar-modal .navbar-modal-top-right {
    right: 24px;
    top: 15px;
  }
  .navbar-modal .navbar-modal-top-right .navbar-modal-lang {
    font-size: 1rem;
  }
  .navbar-modal .navbar-modal-top-right .navbar-modal-privacy--desktop {
    display: none;
  }
}
.navbar-modal .navbar-links, .navbar-modal .navbar-links > ul {
  display: contents;
}
.navbar-modal .navbar-links li {
  background-color: var(--sunset-orange);
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(var(--menu-row-height) + 2px);
  position: relative;
}
.navbar-modal .navbar-links li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--black);
  font-weight: 900;
  line-height: 1;
  font-size: clamp(3rem, calc(var(--menu-row-height) * 0.88), 7.5rem);
  padding: 0 36px 0 var(--logo-inline-inset);
  text-decoration: none;
  z-index: 0;
}
.navbar-modal .navbar-links li a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: transparent;
  transform-origin: left center;
  transition: width 0.25s ease-out;
  z-index: -1;
}
.navbar-modal .navbar-links li:nth-child(1) a::before {
  background-color: var(--light-blue);
}
.navbar-modal .navbar-links li:nth-child(2) a::before {
  background-color: var(--cream-tone);
}
.navbar-modal .navbar-links li:nth-child(3) a::before {
  background-color: var(--muted-red);
}
.navbar-modal .navbar-links li:hover a::before, .navbar-modal .navbar-links li:focus-within a::before {
  width: 100%;
}
.navbar-modal .navbar-links li:nth-child(3):hover a, .navbar-modal .navbar-links li:nth-child(3):focus-within a {
  color: var(--white);
}
.navbar-modal .navbar-links > ul > li.nav-intro-simulated-hover a::before {
  width: 100%;
  transition: width 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar-modal .navbar-links > ul > li.nav-intro-simulated-hover:nth-child(3) a {
  color: var(--white);
  transition: color 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar-modal .social-links {
  background-color: var(--sunset-orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: calc(var(--menu-row-height) + 2px);
  padding-left: var(--logo-inline-inset);
}
.navbar-modal .social-links ul {
  list-style: none;
  display: flex;
  gap: 48px;
}
.navbar-modal .social-links a {
  color: var(--black);
  font-size: 1.375rem;
  font-weight: 600;
}
.navbar-modal .social-links .navbar-modal-privacy--mobile {
  display: none;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .navbar-modal .social-links .navbar-modal-privacy--mobile {
    display: block;
    color: #e04a1f;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    margin-top: 12px;
  }
  .navbar-modal .social-links .navbar-modal-privacy--mobile:hover {
    color: #a33510;
  }
}
.navbar-modal .navbar-spacer-row {
  background-color: var(--sunset-orange);
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(var(--menu-row-height) + 2px);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .navbar-modal {
    bottom: 92px;
  }
  .navbar-modal .navbar-links li a {
    font-size: 4rem;
    padding: 0 22px 0 var(--logo-inline-inset);
    line-height: 158px;
  }
  .navbar-modal .navbar-links > ul > li.nav-intro-simulated-hover a::before {
    transition: width 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .navbar-modal .navbar-links > ul > li.nav-intro-simulated-hover:nth-child(3) a {
    transition: color 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .navbar-modal .social-links {
    padding: 60px 22px 60px var(--logo-inline-inset);
  }
  .navbar-modal .social-links ul {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-modal .navbar-links li a {
    font-size: 6.875rem;
  }
}

.navbar-modal-footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 44px;
  border-top: 2px solid transparent;
  -o-border-image: url("../images/navlinks-border.svg") 30 round;
     border-image: url("../images/navlinks-border.svg") 30 round;
  background-color: var(--sunset-orange);
}
.navbar-modal-footer .navbar-modal-logo {
  width: 367px;
  height: 101px;
  -o-object-fit: contain;
     object-fit: contain;
  color: var(--black);
}
.navbar-modal-footer .close-modal-navbar {
  width: 67px;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .navbar-modal-footer {
    padding: 20px 22px;
    border-top: none;
  }
  .navbar-modal-footer .navbar-modal-logo {
    width: 187px;
    height: 52px;
  }
  .navbar-modal-footer .close-modal-navbar {
    width: 57px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-modal-footer {
    padding: 36px 30px;
  }
  .navbar-modal-footer .navbar-modal-logo {
    width: 300px;
    height: 90px;
  }
}

.bg-video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.bg-video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg-video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.bg-video-container.home-sec-video {
  position: relative;
  overflow: hidden;
}
.bg-video-container.home-sec-video.home-loading {
  opacity: 0;
  pointer-events: none;
}
.bg-video-container.home-sec-video .bg-video-item video.bg-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 0;
  display: block;
  transform: none;
}
.bg-video-container.home-sec-video .bg-video-item .bg-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.bg-video-container.home-sec-video .bg-video-item video.bg-video-media {
  z-index: 2;
}
/* When autoplay is blocked (battery saver / Low Power Mode),
   hide the video so the browser's play icon doesn't show over the poster. */
body.home-autoplay-blocked .bg-video-container.home-sec-video .bg-video-item video.bg-video-media {
  opacity: 0;
  pointer-events: none;
}
body.home-autoplay-blocked .bg-video-container.home-sec-video .bg-video-item .bg-video-poster {
  opacity: 1 !important;
}
.bg-video-container.home-sec-video .bg-video-item iframe {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

body.home .main-container > .bg-video-container.home-sec-video,
body.front-page .main-container > .bg-video-container.home-sec-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.bg-video-item {
  position: absolute;
  inset: 0;
  display: none;
}
.bg-video-item.is-active {
  display: block;
}
.bg-video-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.home-sec-video {
  position: relative;
  overflow: hidden;
}
.home-sec-video .bg-video-item {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
}
.home-sec-video .bg-video-item.is-active {
  display: block;
}

.video-bg-text {
  background: var(--warm-beige);
  position: absolute;
  inset: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  padding: 40px 60px;
  height: 100%;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .video-bg-inner {
    display: flex;
    align-items: center;
    height: calc(100% - var(--menu-row-height));
    margin-top: calc(var(--menu-row-height) * -1);
    flex-direction: column;
  }
}

.video-name-bg {
  position: absolute;
  left: var(--name-crop-left, 0px);
  top: var(--name-crop-top, 0px);
  width: var(--name-crop-width, 100%);
  height: var(--name-crop-height, 100%);
  text-align: center;
  pointer-events: none;
  font-size: clamp(30px, 30px + 70 * (100vw - 320px) / 1280, 100px);
}
.video-name-bg .name-line {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  color: var(--black);
  font-weight: 900;
  line-height: 0.9;
  text-transform: none;
}
.video-name-bg .name-line--top {
  top: 0;
  justify-content: flex-start;
  transform: translateY(-1lh);
}
.video-name-bg .name-line--bottom {
  top: 100%;
  bottom: auto;
  justify-content: flex-start;
  padding-top: 10px;
}
.video-name-bg .name-word {
  display: block;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .video-name-bg {
    order: 1;
    text-align: center;
  }
}

.video-meta--left {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .video-meta--left {
    order: 2;
    justify-content: center;
  }
}

@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .video-meta--right {
    order: 3;
    justify-content: center;
  }
}

.video-meta__label {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.video-meta__agency {
  display: inline-block;
  white-space: pre-line;
}

.video-name-banner {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  font-size: 13px;
  bottom: calc(var(--menu-row-height));
  left: 0;
  height: calc(var(--menu-row-height) / 2);
  opacity: 0;
  visibility: hidden;
}
.video-name-banner__inner {
  position: relative;
  display: inline-block;
  pointer-events: auto;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.video-name-banner__bg {
  position: absolute;
  inset: 0;
  background: #ff5626;
}
.video-name-banner__text {
  position: relative;
  padding: 0 1.6rem 0 var(--logo-inline-inset);
  font-weight: 900;
  font-size: 3rem;
  color: black;
  white-space: nowrap;
  opacity: 1;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .video-name-banner__text {
    font-size: 2rem;
  }
}

.home-vimeo-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: black;
  pointer-events: none;
}

body.home .main-container,
body.front-page .main-container {
  height: 100dvh !important;
}

body.is-home .main-container {
  height: 100dvh !important;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  body.is-home .main-container {
    height: 100dvh !important;
  }
}

body.has-home-loader .video-name-banner {
  opacity: 0;
  visibility: hidden;
}

body.home-meta-hidden .video-bg-text {
  opacity: 0;
  visibility: hidden;
}
body.home-meta-hidden .video-name-banner {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.home-boot .header,
body.home-boot .site-header,
body.home-boot .header-bar,
body.home-boot .header .logo,
body.home-boot .header-logo,
body.home-boot .logo {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .video-bg-text-desktop {
    display: none;
  }
  .video-bg-text .video-bg-text-mobile {
    display: flex;
  }
  .main-container {
    height: calc(100dvh - 92px);
  }
}
.directors-names {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  padding-top: 50px;
  padding-bottom: 80px;
  scroll-padding-top: 50px;
  scroll-padding-bottom: 80px;
}
.directors-names ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.directors-names ul li a {
  display: inline-block;
  color: white;
  background-color: transparent;
  font-size: 3rem;
  font-weight: 900;
  cursor: pointer;
  line-height: 0.9;
  padding: 0.06em 0.12em;
  transition: none;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .directors-names ul li a {
    font-size: 2rem;
    line-height: 38px;
  }
}
.directors-names li {
  position: relative;
}
.directors-names li a {
  position: relative;
  display: inline-block;
  background-color: transparent;
}
.directors-names li a .line__bg {
  position: absolute;
  z-index: 0;
  top: calc(-1 * var(--padT, 0px));
  right: calc(-1 * var(--padR, 0px));
  bottom: calc(-1 * var(--padB, 0px));
  left: calc(-1 * var(--padL, 0px));
  background-color: transparent;
  transform: translateY(var(--offset-y, 0));
  transition: none;
}
.directors-names li a .line__text {
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.directors-names li a.is-current {
  background-color: transparent;
  color: var(--black);
}
.directors-names li a.is-current .line__bg {
  background-color: var(--sunset-orange);
}
.directors-names li a.is-current .line__text {
  color: #000;
}
.directors-names li a.is-lit {
  color: var(--black);
}
.directors-names li a.is-lit .line__bg {
  background-color: var(--sunset-orange);
}
.directors-names li a.fade-out {
  transition: color 1s ease;
}
.directors-names li a.fade-out .line__bg {
  transition: background-color 1s ease;
}
.directors-names li a,
.directors-names li a .line__text {
  transition: none !important;
}
@media (hover: hover) {
  .directors-names ul li a:hover {
    background-color: transparent;
    color: var(--black);
  }
  .directors-names ul li a:hover .line__bg {
    background-color: var(--sunset-orange);
  }
  .directors-names li a:hover .line__bg {
    background-color: var(--sunset-orange);
  }
  .directors-names li a:hover .line__text {
    color: #000;
  }
}
@media (pointer: coarse) {
  .directors-names li a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .directors-names ul li a:hover:not(.is-current) {
    background-color: transparent !important;
    color: #fff !important;
  }
  .directors-names li a:hover:not(.is-current) .line__bg {
    background-color: transparent !important;
  }
  .directors-names li a:hover:not(.is-current) .line__text {
    color: #fff !important;
  }
  .directors-names ul li a:not(.is-current):active,
  .directors-names ul li a:not(.is-current):focus {
    background-color: transparent !important;
    color: #fff !important;
    outline: none;
  }
  .directors-names li a:not(.is-current):active .line__bg,
  .directors-names li a:not(.is-current):focus .line__bg {
    background-color: transparent !important;
  }
  .directors-names li a:not(.is-current):active .line__text,
  .directors-names li a:not(.is-current):focus .line__text {
    color: #fff !important;
  }
  .directors-names ul li a.is-current:active,
  .directors-names ul li a.is-current:focus {
    background-color: transparent !important;
    color: var(--black) !important;
  }
  .directors-names li a.is-current:active .line__bg,
  .directors-names li a.is-current:focus .line__bg {
    background-color: var(--sunset-orange) !important;
  }
  .directors-names li a.is-current:active .line__text,
  .directors-names li a.is-current:focus .line__text {
    color: #000 !important;
    background-color: transparent !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .directors-names.is-scrubbing {
    touch-action: none;
  }
  .directors-names.is-scrubbing * {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
  }
}

.bg-video-container.reals-bg {
  position: relative;
  overflow: hidden;
}
.bg-video-container.reals-bg .reals-bg-media:not(.reals-bg-media--preload) {
  opacity: 1;
}

.main-container > .bg-video-container.reals-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.bg-video-container.reals-bg video.reals-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 0;
  display: block;
}
.bg-video-container.reals-bg iframe {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

.reals-bg-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.reals-bg-layer.is-active {
  opacity: 1;
}

.reals-bg-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.reals-bg-media {
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}

.reals-bg-video-hidden {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reals-bg-video-hidden.reals-bg-video-ready {
  opacity: 1;
}

.reals-vimeo-cover {
  position: absolute;
  inset: 0;
  z-index: 9;
  background: #000;
  pointer-events: none;
}

html.reals-loading,
body.reals-loading,
body.reals-loading .main-container,
body.reals-loaded .main-container {
  background: #000;
}

body.reals-meta-hidden .directors-names {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-single-director {
  background-color: var(--black);
  overflow: hidden;
}
body.is-single-director .main-container {
  overflow: hidden;
  height: 100dvh;
}
body.is-single-director .header .header-bar {
  box-shadow: none;
}
body.is-single-director .header .header-bar:not(.is-open) {
  background-color: transparent;
}
body.is-single-director .header .header-bar.is-open {
  background-color: var(--sunset-orange);
}
body.is-single-director .header .logo #soma-o-hole,
body.is-single-director .header .logo #soma-a-hole {
  fill: transparent;
}
body.is-single-director .director-videos-wrapper {
  background-color: var(--black);
  padding-bottom: var(--header-bar-height);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  body.is-single-director .header .header-bar:not(.is-open) {
    background-color: var(--black);
  }
}
body.is-single-director.soma-hide-language-switcher .language-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.director-loading {
  overflow: auto;
}
body.director-loading .director-dtls-container {
  opacity: 0;
  visibility: hidden;
}

body.director-fullscreen-open {
  overflow: hidden;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  body.director-fullscreen-open .header-bar,
  body.director-video-classic-expanded .header-bar,
  body.director-media-modal-open .header-bar {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }
}

.director-dtls-container {
  overflow-y: auto;
  height: 100%;
}
.director-dtls-container .director-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-dtls-container .director-header {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .director-dtls-container .director-header {
    grid-template-columns: repeat(1, 1fr);
    position: static;
  }
}

.director-header .director-name {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--cream-tone);
  padding: 0;
  overflow: hidden;
}
.director-header .director-name h3,
.director-header .director-name h1 {
  color: var(--black);
  font-size: 4.0625rem;
  font-weight: 900;
  display: inline-block;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-header .director-name h3,
  .director-header .director-name h1 {
    font-size: 2.125rem;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .director-header .director-name h3,
  .director-header .director-name h1 {
    text-align: left;
  }
}
.director-header .director-name__inner {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  background: var(--sunset-orange);
  display: flex;
  align-items: center;
  padding: 0 25px;
}
.director-header .director-name__inner h3,
.director-header .director-name__inner h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 25px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-header .director-name__inner {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
  }
  .director-header .director-name__inner h3,
  .director-header .director-name__inner h1 {
    overflow: visible;
    text-overflow: clip;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .director-header .director-name__inner {
    padding-top: 0;
    padding-bottom: 0;
    justify-content: flex-start;
  }
}
.director-header .back_arrow {
  flex: 0 0 80px;
  width: 80px;
  height: 100%;
}
.director-header .back_arrow svg {
  transform: rotate(180deg);
  display: block;
  width: 50%;
  height: auto;
}
.director-header .back_arrow .director-back-btn {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  color: #000;
  text-decoration: none;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-header .back_arrow {
    flex: 0 0 30px;
    width: 30px;
  }
}
.director-header .director-bio-btn {
  position: relative;
  background-color: var(--cream-tone);
  display: flex;
  align-items: stretch;
}
.director-header .director-bio-btn .btn {
  padding: 0 25px;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--black);
  font-size: 4.0625rem;
  font-weight: 900;
  z-index: 30;
  gap: 25px;
  overflow: hidden;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-header .director-bio-btn {
    padding: 0 25px;
    justify-content: center;
    align-items: center;
  }
  .director-header .director-bio-btn .btn {
    position: relative;
    font-size: 2.125rem;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .director-header .director-bio-btn {
    padding: 30px 25px;
    justify-content: center;
    align-items: center;
  }
  .director-header .director-bio-btn .btn {
    position: relative;
    width: 100%;
    justify-content: center;
  }
}

.director-bio-btn .director-details {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 20;
  background: var(--cream-tone);
  width: 100%;
  padding: 35px;
  box-sizing: border-box;
  max-height: calc(100dvh - var(--menu-row-height) * 2);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.director-bio-btn .director-details .director-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.director-bio-btn .director-details .director-img img {
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  aspect-ratio: 14/9;
}
.director-bio-btn .director-details .director-desc {
  margin-top: 45px;
}
.director-bio-btn .director-details .director-desc p {
  color: var(--black-2);
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
}
.director-bio-btn .director-details.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-bio-btn .director-details {
    padding: 22px 22px 0;
    overflow-y: auto;
  }
  .director-bio-btn .director-details .director-desc {
    margin-top: 35px;
    padding-bottom: 22px;
  }
  .director-bio-btn .director-details .director-desc p {
    font-size: 1.5rem;
    line-height: 28px;
  }
  .director-bio-btn .director-details.active {
    padding-bottom: 300px;
  }
}

@media (min-width: 1025px) {
  .director-header .director-bio-btn .btn:hover ~ .director-details,
  .director-header .director-bio-btn .btn:focus-visible ~ .director-details,
  .director-header .director-bio-btn .director-details:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (hover: hover) and (min-width: 1025px) {
  .director-bio-btn .btn:hover ~ .director-details,
  .director-bio-btn .btn:focus-visible ~ .director-details,
  .director-bio-btn .director-details:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-header .director-bio-btn:hover .director-details.active {
    opacity: 100;
    visibility: visible;
    pointer-events: auto;
  }
}
.director-desc .bio-char {
  display: inline-block;
}

@media (max-width: 1024px) {
  body.bio-open .header-bar,
  body.bio-open .site-header,
  body.bio-open .header {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
.director-videos-wrapper {
  width: 100%;
}
.director-videos-wrapper .director-video-item {
  position: relative;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  transition: height 0.35s ease;
}
.director-videos-wrapper .director-video-item:not(.is-expanded).is-centered {
  height: 520px;
}
.director-videos-wrapper .director-video-item.is-expanded {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 150;
  background: #000;
  outline: none;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-frame:focus-within {
  outline: none;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-iframe {
  width: min(100dvw, 177.7777777778dvh);
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  pointer-events: auto;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-close {
  opacity: 1;
  pointer-events: auto;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-controls {
  opacity: 1;
  pointer-events: auto;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-carousel-arrow:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.director-videos-wrapper .director-video-item.is-expanded .director-video-poster,
.director-videos-wrapper .director-video-item.is-expanded .director-video-poster-skeleton {
  opacity: 0;
}
.director-videos-wrapper .director-video-item.is-strip-previewing .director-video-poster,
.director-videos-wrapper .director-video-item.is-strip-previewing .director-video-poster-skeleton {
  opacity: 0;
}
.director-videos-wrapper .director-video-item:not(.is-expanded) .director-video-iframe {
  opacity: 0;
  outline: none;
  pointer-events: none;
}
.director-videos-wrapper .director-video-item:hover .director-video-meta {
  opacity: 1;
  transform: translateY(0);
}
.director-videos-wrapper .director-video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.director-videos-wrapper .director-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: none;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  outline: none;
}
.director-videos-wrapper .director-video-iframe:focus, .director-videos-wrapper .director-video-iframe:focus-visible {
  outline: none;
}
@media (max-width: 1024px) {
  .director-videos-wrapper .director-video-iframe {
    width: auto;
    height: 100%;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-videos-wrapper .director-video-item,
  .director-videos-wrapper .director-video-item:not(.is-expanded).is-centered {
    height: 230px;
  }
  .director-videos-wrapper .director-video-item:not(.is-expanded) .director-video-media-wrap {
    transform: scale(var(--project-thumbnail-zoom, 1));
    transform-origin: center center;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .director-videos-wrapper .director-video-item.is-expanded .director-video-iframe {
    width: 100dvw !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: 56.25dvw;
    aspect-ratio: unset;
  }
  .director-videos-wrapper .director-video-item.is-expanded.is-vertical-video .director-video-iframe {
    height: min(177.78dvw, 100dvh);
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-videos-wrapper .director-video-item,
  .director-videos-wrapper .director-video-item:not(.is-expanded).is-centered {
    height: 56.25vw;
  }
}

.director-video-frame {
  position: relative;
  --director-video-chrome-alpha: 1;
  --director-video-chrome-color: color-mix(
    in srgb,
    var(--white) calc(100% * var(--director-video-chrome-alpha)),
    transparent
  );
  --director-video-dot-size: 12px;
  --director-video-controls-stack-gap: 16px;
  --director-video-volume-bar-width: 96px;
}
.director-video-frame.has-file-preview .director-video-iframe {
  opacity: 0;
}
.director-video-frame.has-file-preview .director-video-preview-file {
  opacity: 0;
}
.director-video-frame.has-file-preview .director-video-preview-file.is-visible {
  opacity: 1;
}

.director-video-click-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.director-video-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top, 0px));
  right: 8px;
  z-index: 230;
  width: 128px;
  height: 128px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.director-video-close svg {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.director-video-close svg line {
  transition: none;
  transform-origin: 50% 50%;
}
.director-video-close svg line:nth-of-type(1) {
  transform: translateY(11.25px) rotate(45deg);
}
.director-video-close svg line:nth-of-type(2) {
  transform: rotate(-45deg);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-video-close {
    display: none;
  }
}

.soma-mobile-director-media-close {
  display: none;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .soma-mobile-director-media-close {
    box-sizing: border-box;
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 230;
    width: 56px;
    height: 56px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  .soma-mobile-director-media-close.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .soma-mobile-director-media-close svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .soma-mobile-director-media-close svg line {
    transition: none;
    transform-origin: 50% 50%;
  }
  .soma-mobile-director-media-close svg line:nth-of-type(1) {
    transform: translateY(11.25px) rotate(45deg);
  }
  .soma-mobile-director-media-close svg line:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  body.is-single-director.director-fullscreen-open .soma-mobile-director-media-close, body.is-single-director.director-media-modal-open .soma-mobile-director-media-close {
    display: flex;
  }
}

.director-video-controls {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--director-video-controls-stack-gap);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (hover: none) and (pointer: coarse) {
  .director-video-controls {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .director-video-item.is-expanded .director-video-controls {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.director-video-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 128px;
  height: 128px;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.3s ease, color 0.2s ease;
}
.director-video-carousel-arrow svg {
  width: 128px;
  height: 128px;
  display: block;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-video-carousel-arrow {
    width: 88px;
    height: 88px;
  }
  .director-video-carousel-arrow svg {
    width: 88px;
    height: 88px;
  }
}

.director-video-carousel-prev {
  left: 8px;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-video-carousel-prev {
    left: max(6px, env(safe-area-inset-left, 0px));
    justify-content: flex-start;
    padding-left: 2px;
  }
}

.director-video-carousel-next {
  right: 8px;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-video-carousel-next {
    right: max(6px, env(safe-area-inset-right, 0px));
    justify-content: flex-end;
    padding-right: 2px;
  }
}

.director-video-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.director-video-carousel-dot {
  flex-shrink: 0;
  width: var(--director-video-dot-size);
  height: var(--director-video-dot-size);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: currentColor;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.director-video-carousel-dot:hover, .director-video-carousel-dot:focus-visible {
  transform: scale(1.08);
  outline: none;
}
.director-video-carousel-dot.is-active {
  background: var(--sunset-orange);
}

.director-video-playpause {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transition: transform 0.2s ease, color 0.2s ease;
  position: relative;
}
.director-video-playpause::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.director-video-playpause:focus {
  outline: none;
}
.director-video-playpause:focus-visible {
  outline: 2px solid rgb(255, 255, 255, var(--director-video-chrome-alpha));
  outline-offset: 3px;
}
.director-video-playpause:active {
  background: transparent;
}
.director-video-playpause .pp-icon {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}
.director-video-playpause .pp-circle {
  display: none;
}
.director-video-playpause .pp-shape {
  fill: currentColor;
}
.director-video-playpause-line {
  position: absolute;
  left: 50%;
  width: 60%;
  height: 3px;
  background: var(--white);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.director-video-playpause-line.line-top {
  top: 30%;
}
.director-video-playpause-line.line-mid {
  top: 50%;
}
.director-video-playpause-line.line-bot {
  top: 70%;
}
.director-video-playpause.is-playing .line-mid {
  opacity: 0;
}
.director-video-playpause.is-playing .line-top {
  top: 50%;
  transform: translate(-90%, -50%) rotate(90deg);
}
.director-video-playpause.is-playing .line-bot {
  top: 50%;
  transform: translate(-10%, -50%) rotate(90deg);
}

.director-video-timeline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(70vw, 900px);
  max-width: 100%;
}

.director-video-progress {
  flex: 1;
  min-width: min(200px, 100%);
  height: var(--director-video-dot-size);
  border-radius: 0;
  background: var(--director-video-chrome-color);
  overflow: hidden;
}

.director-video-progress-track {
  height: 100%;
}

.director-video-progress-inner,
.director-video-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--sunset-orange);
}

.director-video-volume-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.director-video-volume-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  line-height: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, transform 0.2s ease;
}
.director-video-volume-btn:focus {
  outline: none;
}
.director-video-volume-btn:focus-visible {
  outline: 2px solid var(--director-video-chrome-color);
  outline-offset: 2px;
}
.director-video-volume-btn:active {
  transform: scale(0.96);
}
.director-video-volume-btn.is-muted .director-video-volume-icon-loud {
  display: none;
}
.director-video-volume-btn.is-muted .director-video-volume-icon-muted {
  display: block !important;
}

.director-video-volume-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.director-video-volume {
  width: var(--director-video-volume-bar-width);
  height: var(--director-video-dot-size);
  border-radius: 0;
  background: var(--director-video-chrome-color);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}
.director-video-volume:focus {
  outline: none;
}
.director-video-volume:focus-visible {
  outline: 2px solid var(--director-video-chrome-color);
  outline-offset: 2px;
}

.director-video-volume-track {
  height: 100%;
  pointer-events: none;
}

.director-video-volume-fill {
  width: 100%;
  height: 100%;
  background: var(--sunset-orange);
  pointer-events: none;
}

.director-video-meta {
  position: absolute;
  left: var(--page-edge-inline);
  top: 26px;
  z-index: 5;
  pointer-events: none;
  font-size: 2.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.director-video-meta__title {
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
}
.director-video-meta__agency {
  margin-top: 4px;
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.1;
}
.director-video-meta__agency:first-child {
  margin-top: 0;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-video-meta {
    opacity: 1;
    font-size: 1rem;
  }
}

.director-video-poster,
.director-video-poster-skeleton {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.director-video-poster-skeleton {
  background: rgba(0, 0, 0, 0.08);
}

.director-video-preview-file {
  opacity: 0;
  pointer-events: none;
}
.director-video-preview-file.is-visible {
  opacity: 1;
}

.director-video-placeholder {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  pointer-events: none;
}

.director-video-modal {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  display: none;
}
.director-video-modal.active {
  display: block;
}
.director-video-modal .modal-wrapper {
  position: relative;
  height: 100%;
}
.director-video-modal .modal-header {
  position: absolute;
  right: 44px;
  top: 32px;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.director-video-modal .director-video-area {
  height: 100%;
}
.director-video-modal .director-video-area video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.director-video-modal .close-video-modal {
  cursor: pointer;
}
.director-video-modal .player,
.director-video-modal iframe[src*="player.vimeo.com"],
.director-video-modal #player {
  width: 100vw !important;
  max-width: 100vw !important;
}

.director-media-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  background: var(--black);
}
.director-media-wrapper > .director-video-item {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
}
.director-media-wrapper--photographer {
  gap: 12px;
  padding-top: 12px;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-wrapper--photographer {
    gap: 10px;
    padding-top: 10px;
  }
}

.director-small-items-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-left: var(--page-edge-inline);
  padding-right: var(--page-edge-inline);
  box-sizing: border-box;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-small-items-row {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
  .director-small-items-row .director-photo-item.has-image-carousel.director-media-item--size-small {
    width: 100%;
    flex: 0 0 100%;
  }
  .director-small-items-row .director-media-item--size-small .director-photo-frame,
  .director-small-items-row .director-media-item--size-small .director-media-frame {
    width: 100%;
  }
  .director-small-items-row .director-media-item--size-small .director-media-image-carousel {
    width: 100%;
  }
  .director-small-items-row .director-media-item--size-small .director-media-image-slide img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.director-media-item {
  width: 100%;
  position: relative;
  color: var(--white);
}
.director-media-item--size-small {
  width: calc(50% - 6px);
}
.director-media-item--size-large {
  width: 100%;
}
.director-media-item--size-medium {
  width: 100%;
}
.director-media-item.is-expanded .director-media-click-layer,
.director-media-item.is-expanded .director-video-click-layer {
  display: none;
}
.director-media-item.is-expanded .director-media-side,
.director-media-item.is-expanded .director-media-meta {
  display: none;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-item--size-small, .director-media-item--size-medium, .director-media-item--size-large {
    width: 100%;
  }
  .director-media-item--size-small .director-media-frame,
  .director-media-item--size-small .director-video-frame,
  .director-media-item--size-small .director-photo-frame {
    aspect-ratio: 16/9;
  }
}

.director-media-layout {
  display: block;
}

.director-media-item--size-medium .director-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-item--size-medium .director-media-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.director-media-main {
  min-width: 0;
}

.director-media-side {
  background: var(--black);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-side.director-media-item--size-medium .director-media-side {
    display: block;
  }
}

.director-media-frame,
.director-video-frame,
.director-photo-frame {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 240px;
}

.director-media-item--size-small .director-media-frame,
.director-media-item--size-small .director-video-frame,
.director-media-item--size-small .director-photo-frame {
  aspect-ratio: 4/3;
}

.director-media-item--size-medium .director-media-frame,
.director-media-item--size-medium .director-video-frame,
.director-media-item--size-medium .director-photo-frame {
  aspect-ratio: 16/10;
}

.director-media-item--size-large .director-media-frame,
.director-media-item--size-large .director-video-frame,
.director-media-item--size-large .director-photo-frame {
  aspect-ratio: 16/9;
}

.director-video-iframe,
.director-video-preview-file,
.director-media-image-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.director-media-image-carousel {
  position: absolute;
  inset: 0;
}

.director-media-image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: none;
}
.director-media-image-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.director-media-click-layer,
.director-video-click-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  border: 0;
}

.director-media-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.15);
}
.director-media-carousel-arrow svg {
  width: 22px;
  height: 22px;
}
.director-media-carousel-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-carousel-arrow {
    width: 38px;
    height: 38px;
  }
}

.director-media-carousel-prev {
  left: 14px;
}

.director-media-carousel-next {
  right: 14px;
}

.director-media-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}

.director-media-carousel-dot {
  flex-shrink: 0;
  width: var(--director-video-dot-size, 12px);
  height: var(--director-video-dot-size, 12px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: currentColor;
  color: inherit;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.director-media-carousel-dot:hover, .director-media-carousel-dot:focus-visible {
  transform: scale(1.08);
  outline: none;
}
.director-media-carousel-dot.is-active {
  background: var(--sunset-orange);
}

.director-media-meta {
  padding: 14px 0 20px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
}
.director-media-meta__project, .director-media-meta__title, .director-media-meta__agency {
  color: var(--white);
}
.director-media-meta__project {
  font-size: 1rem;
  margin-bottom: 8px;
}
.director-media-meta__title, .director-media-meta__agency {
  font-size: 1.15rem;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-meta {
    padding: 12px 0 18px;
  }
}

.director-media-item--size-medium .director-media-side .director-media-meta {
  padding: 16px 10px 16px 0;
}

.director-photo-item.has-image-carousel {
  width: 100%;
}
.director-photo-item.has-image-carousel .director-media-main {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.director-photo-item.has-image-carousel .director-media-frame,
.director-photo-item.has-image-carousel .director-photo-frame {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: unset;
  margin-left: auto;
  margin-right: auto;
}
.director-photo-item.has-image-carousel.director-media-item--size-small .director-photo-frame, .director-photo-item.has-image-carousel.director-media-item--size-medium .director-photo-frame, .director-photo-item.has-image-carousel.director-media-item--size-large .director-photo-frame {
  aspect-ratio: unset;
}
.director-photo-item.has-image-carousel .director-media-image-carousel {
  display: grid;
  grid-template: auto/auto;
  position: relative;
  inset: auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.director-photo-item.has-image-carousel .director-media-image-slide {
  grid-area: 1/1;
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  pointer-events: none;
}
.director-photo-item.has-image-carousel .director-media-image-slide.is-active {
  pointer-events: auto;
  z-index: 1;
}
.director-photo-item.has-image-carousel .director-media-image-slide img {
  position: relative;
  inset: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - var(--menu-row-height) - 88px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-photo-item.has-image-carousel .director-media-image-slide img {
    max-height: calc(100vh - var(--menu-row-height) - 32px);
  }
}
.director-photo-item .director-media-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 100px;
  height: 100px;
  transform: translateY(-50%);
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.director-photo-item .director-media-carousel-arrow svg {
  width: 48px;
  height: 48px;
  display: block;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-photo-item .director-media-carousel-arrow {
    width: 64px;
    height: 64px;
  }
  .director-photo-item .director-media-carousel-arrow svg {
    width: 32px;
    height: 32px;
  }
}
.director-photo-item .director-media-carousel-prev {
  left: 8px;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-photo-item .director-media-carousel-prev {
    left: max(6px, env(safe-area-inset-left, 0px));
    justify-content: flex-start;
    padding-left: 2px;
  }
}
.director-photo-item .director-media-carousel-next {
  right: 8px;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-photo-item .director-media-carousel-next {
    right: max(6px, env(safe-area-inset-right, 0px));
    justify-content: flex-end;
    padding-right: 2px;
  }
}
.director-photo-item .director-media-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 220;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.director-photo-item .director-media-carousel-dot {
  flex-shrink: 0;
  width: var(--director-video-dot-size);
  height: var(--director-video-dot-size);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: currentColor;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.director-photo-item .director-media-carousel-dot:hover, .director-photo-item .director-media-carousel-dot:focus-visible {
  transform: scale(1.08);
  outline: none;
}
.director-photo-item .director-media-carousel-dot.is-active {
  background: var(--sunset-orange);
}
.director-photo-item.is-expanded .director-media-carousel-arrow,
.director-photo-item.is-expanded .director-media-carousel-dots {
  opacity: 1;
  pointer-events: auto;
}
.director-photo-item.is-expanded .director-media-carousel-arrow:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.director-media-wrapper--photographer > .director-video-item:not(.is-expanded),
.director-media-wrapper--photographer > .director-video-item:not(.is-expanded).is-centered {
  height: auto;
  aspect-ratio: 16/9;
  max-height: calc(100dvh - var(--menu-row-height) - 100px);
  transition: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.director-media-wrapper--photographer > .director-video-item:not(.is-expanded) .director-video-iframe,
.director-media-wrapper--photographer > .director-video-item:not(.is-expanded).is-centered .director-video-iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  transform: none;
  opacity: 0;
  pointer-events: none;
}
.director-media-wrapper--photographer > .director-video-item.is-expanded .director-video-iframe {
  opacity: 1;
  pointer-events: auto;
}
.director-media-wrapper--photographer video.director-video-preview-file {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.director-media-wrapper--photographer .director-video-poster,
.director-media-wrapper--photographer .director-video-poster-skeleton {
  -o-object-fit: contain;
     object-fit: contain;
  background: #000;
}
.director-media-wrapper--photographer .director-video-meta {
  left: var(--page-edge-inline);
  top: auto;
  bottom: 20px;
  opacity: 1;
  transform: none;
  transition: none;
  font-size: 1.15rem;
}
.director-media-wrapper--photographer .director-video-item.is-expanded .director-video-meta {
  position: fixed;
  left: var(--page-edge-inline);
  bottom: 30px;
  top: auto;
  z-index: 200;
  opacity: 1;
  pointer-events: none;
}
.director-media-wrapper--photographer .director-video-meta__title,
.director-media-wrapper--photographer .director-video-meta__agency {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
  opacity: 1;
}
.director-media-wrapper--photographer .director-photo-item .director-media-carousel-arrow,
.director-media-wrapper--photographer .director-photo-item .director-media-carousel-dots {
  opacity: 1;
  pointer-events: auto;
}
.director-media-wrapper--photographer .director-photo-item .director-media-carousel-prev {
  left: -100px;
}
.director-media-wrapper--photographer .director-photo-item .director-media-carousel-next {
  right: -100px;
}
.director-media-wrapper--photographer .director-photo-item .director-media-carousel-dots {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}
.director-media-wrapper--photographer .director-photo-item.is-expanded .director-media-carousel-prev {
  left: -100px;
}
.director-media-wrapper--photographer .director-photo-item.is-expanded .director-media-carousel-next {
  right: -100px;
}
.director-media-wrapper--photographer .director-photo-item.is-expanded .director-media-carousel-dots {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-wrapper--photographer .director-photo-item {
    padding-left: var(--page-edge-inline);
    padding-right: var(--page-edge-inline);
  }
}
.director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-medium .director-media-main {
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
}
.director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-medium .director-photo-frame {
  margin-left: 0;
  margin-right: 0;
}
.director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-medium .director-media-layout {
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 80px - var(--page-edge-inline));
  margin-left: 80px;
  margin-right: auto;
  grid-template-columns: auto 180px;
  justify-content: flex-start;
}
.director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-small .director-media-main {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-small .director-photo-frame {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-wrapper--photographer .director-media-meta,
  .director-media-wrapper--photographer .director-media-side .director-media-meta {
    padding-left: 0;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-wrapper--photographer > .director-video-item:not(.is-expanded),
  .director-media-wrapper--photographer > .director-video-item:not(.is-expanded).is-centered {
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 18px;
  }
  .director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-medium .director-media-layout {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-small .director-media-main,
  .director-media-wrapper--photographer .director-photo-item.has-image-carousel.director-media-item--size-medium .director-media-main {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .director-small-items-row .director-photo-item.has-image-carousel.director-media-item--size-small {
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
  }
}

.director-media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.director-media-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}
.director-media-modal.no-fade-out {
  transition: none;
}
.director-media-modal.is-photo-mode {
  --director-photo-lightbox-max-h: calc(100dvh - 36px - var(--menu-row-height));
}
.director-media-modal.is-photo-mode .director-media-stage {
  align-items: safe center;
  justify-content: safe center;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-modal.is-photo-mode {
    --director-photo-lightbox-max-h: calc(100dvh - 20px - var(--menu-row-height));
  }
}
.director-media-modal__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.director-media-modal__header {
  position: absolute;
  top: 28px;
  right: 44px;
  z-index: 90;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-modal__header {
    top: 16px;
    right: 16px;
  }
}
.director-media-modal .director-media-frame {
  position: relative;
  width: min(92vw, 1600px);
  height: min(100dvh - var(--menu-row-height) - 36px, 88vw);
  max-height: calc(100dvh - var(--menu-row-height) - 36px);
  margin: 0 auto;
}
.director-media-modal .director-video-frame {
  width: min(92vw, 1600px);
  height: auto;
  aspect-ratio: 16/9;
  max-height: calc(100dvh - var(--menu-row-height) - 36px);
}
.director-media-modal .director-video-frame .director-video-click-layer {
  display: none;
}
.director-media-modal .director-video-frame .director-video-carousel-arrow,
.director-media-modal .director-video-frame .director-video-carousel-dots {
  opacity: 1;
  pointer-events: auto;
}
.director-media-modal .director-video-frame .director-video-controls {
  opacity: 1;
  pointer-events: auto;
}
.director-media-modal .director-video-frame.has-file-preview .director-video-iframe {
  opacity: 1;
}
.director-media-modal .director-video-frame.has-file-preview .director-video-preview-file {
  opacity: 0;
  pointer-events: none;
}
.director-media-modal .director-photo-frame .director-media-click-layer {
  display: none;
}
.director-media-modal .director-media-item--size-small .director-media-frame,
.director-media-modal .director-media-item--size-medium .director-media-frame,
.director-media-modal .director-media-item--size-large .director-media-frame {
  width: min(92vw, 1600px);
  aspect-ratio: 16/9;
}
.director-media-modal .director-photo-frame {
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100vw - 36px);
  max-height: var(--director-photo-lightbox-max-h, 100dvh);
  height: auto;
  min-height: 0;
  aspect-ratio: unset;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  --director-video-dot-size: 12px;
  --director-video-chrome-alpha: 1;
  --director-video-chrome-color: color-mix(
    in srgb,
    var(--white) calc(100% * var(--director-video-chrome-alpha)),
    transparent
  );
}
.director-media-modal .director-photo-frame .director-media-image-carousel {
  display: grid;
  grid-template: auto/auto;
  position: relative;
  inset: auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100vw - 36px);
  max-height: var(--director-photo-lightbox-max-h, 100dvh);
}
.director-media-modal .director-photo-frame .director-media-image-slide {
  grid-area: 1/1;
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: none;
  pointer-events: none;
}
.director-media-modal .director-photo-frame .director-media-image-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.director-media-modal .director-photo-frame .director-media-image-slide img {
  position: relative;
  inset: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 36px);
  max-height: var(--director-photo-lightbox-max-h, 100dvh);
  -o-object-fit: contain;
     object-fit: contain;
}
.director-media-modal .director-photo-frame .director-media-carousel-arrow,
.director-media-modal .director-photo-frame .director-media-carousel-dots {
  opacity: 1;
  pointer-events: auto;
  z-index: 250;
}
.director-media-modal .director-photo-frame .director-media-carousel-arrow {
  width: 100px;
  height: 100px;
  background: transparent;
  color: var(--director-video-chrome-color);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.3s ease, color 0.2s ease;
}
.director-media-modal .director-photo-frame .director-media-carousel-arrow:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.director-media-modal .director-photo-frame .director-media-carousel-arrow svg {
  width: 48px;
  height: 48px;
  display: block;
}
.director-media-modal .director-photo-frame .director-media-carousel-prev {
  left: 22px;
}
.director-media-modal .director-photo-frame .director-media-carousel-next {
  right: 22px;
}
.director-media-modal .director-photo-frame .director-media-carousel-dots {
  bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.director-media-modal .director-photo-frame .director-media-carousel-dot {
  flex-shrink: 0;
  width: var(--director-video-dot-size);
  height: var(--director-video-dot-size);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: currentColor;
  color: var(--director-video-chrome-color);
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.director-media-modal .director-photo-frame .director-media-carousel-dot:hover, .director-media-modal .director-photo-frame .director-media-carousel-dot:focus-visible {
  transform: scale(1.08);
  outline: none;
}
.director-media-modal .director-photo-frame .director-media-carousel-dot.is-active {
  background: var(--sunset-orange);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-modal .director-photo-frame {
    max-width: calc(100vw - 20px);
  }
  .director-media-modal .director-photo-frame .director-media-image-carousel {
    max-width: calc(100vw - 20px);
  }
  .director-media-modal .director-photo-frame .director-media-image-slide img {
    max-width: calc(100vw - 20px);
  }
  .director-media-modal .director-photo-frame .director-media-carousel-prev {
    left: 8px;
  }
  .director-media-modal .director-photo-frame .director-media-carousel-next {
    right: 8px;
  }
  .director-media-modal .director-photo-frame .director-media-carousel-dots {
    bottom: 12px;
  }
  .director-media-modal .director-photo-frame .director-media-carousel-arrow {
    width: 64px;
    height: 64px;
  }
  .director-media-modal .director-photo-frame .director-media-carousel-arrow svg {
    width: 32px;
    height: 32px;
  }
}
.director-media-modal--photographer .director-photo-frame .director-media-carousel-prev {
  left: -100px;
}
.director-media-modal--photographer .director-photo-frame .director-media-carousel-next {
  right: -100px;
}
.director-media-modal--photographer .director-photo-frame .director-media-carousel-dots {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 16px;
  width: 100%;
}

.director-media-stage {
  position: absolute;
  inset: 0;
  padding: 18px 18px calc(var(--menu-row-height) + 18px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .director-media-stage {
    padding: 10px 10px calc(var(--menu-row-height) + 10px);
  }
}

.close-media-modal {
  width: 128px;
  height: 128px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.close-media-modal svg {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.close-media-modal svg line {
  transition: none;
  transform-origin: 50% 50%;
}
.close-media-modal svg line:nth-of-type(1) {
  transform: translateY(11.25px) rotate(45deg);
}
.close-media-modal svg line:nth-of-type(2) {
  transform: rotate(-45deg);
}

body.director-media-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}
body.director-media-modal-open .director-dtls-container {
  overflow: hidden;
  overscroll-behavior: none;
}
body.director-media-modal-open .director-dtls-container > *:not(.director-media-modal) {
  opacity: 0;
}

body.director-media-modal-opening .director-dtls-container > *:not(.director-media-modal) {
  transition-delay: 0.08s;
}

.director-dtls-container > *:not(.director-media-modal) {
  transition: opacity 0.35s ease;
}

body.director-video-classic-expanded .director-media-modal.active .director-media-modal__header {
  z-index: 220;
}

@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  body.is-single-director.director-media-modal-open .director-media-modal__header {
    display: none;
  }
}
.director-media-frame-placeholder {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  visibility: hidden;
  pointer-events: none;
}

.director-photo-item .director-media-frame-placeholder {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  visibility: hidden;
  pointer-events: none;
}

.director-video-item.is-expanded .director-video-frame.has-file-preview .director-video-iframe {
  opacity: 1;
}
.director-video-item.is-expanded .director-video-frame.has-file-preview .director-video-preview-file {
  opacity: 0;
}

.nous-content-wrapper {
  height: 100%;
  overflow-y: auto;
  background-color: var(--cream-tone);
  max-width: 100%;
  overflow-x: hidden;
}

.nous-text-wrapper {
  position: relative;
  isolation: isolate;
  width: 95%;
  margin: auto;
  border-bottom: 2px solid transparent;
  -o-border-image: url(../images/navlinks-border.svg) 30 round;
     border-image: url(../images/navlinks-border.svg) 30 round;
  padding: 30px;
  padding-bottom: 200px;
}
.nous-text-wrapper p {
  display: flex;
  justify-content: center;
  color: var(--black);
  display: inline-block;
  text-align: center;
  text-wrap: pretty;
  font-size: 5rem;
  font-weight: 900;
  line-height: 90px;
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  transform-origin: 50% 100%;
}
.nous-text-wrapper .line {
  position: relative;
  z-index: auto !important;
  overflow: visible !important;
  background-color: var(--sunset-orange);
  margin: auto;
  color: var(--black);
  display: inline-block;
  text-align: center;
  font-size: 5rem;
  font-weight: 900;
  line-height: 90px;
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  transform-origin: 50% 100%;
  padding: 0 !important;
  background: transparent !important;
}
.nous-text-wrapper .line__bg {
  position: absolute;
  z-index: 0;
  background: var(--sunset-orange, #ff5626);
  top: calc(-1 * var(--padT, 0px));
  right: calc(-1 * var(--padR, 0px));
  bottom: calc(-1 * var(--padB, 0px));
  left: calc(-1 * var(--padL, 0px));
  transform: translateY(var(--offset-y, 0px));
  pointer-events: none;
}
.nous-text-wrapper .line__text {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.nous-text-wrapper strong {
  position: relative;
  display: inline-block;
  z-index: 3;
  cursor: pointer;
  text-decoration: none;
}
.nous-text-wrapper strong::after {
  content: "";
  position: absolute;
  left: -0.45em;
  right: -0.45em;
  top: -0.25em;
  bottom: 0.05em;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1024px) {
  .nous-text-wrapper {
    text-align: center;
  }
  .nous-text-wrapper .line {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }
  .nous-text-wrapper p {
    display: block;
    width: 100%;
    margin: 0 auto;
    white-space: normal;
  }
  .nous-text-wrapper p,
  .nous-text-wrapper .line {
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .nous-text-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 60px;
  }
  .nous-text-wrapper p {
    font-size: 2.125rem;
    line-height: 44px;
  }
  .nous-text-wrapper .line {
    font-size: 2.125rem;
    line-height: 2.4rem;
  }
  .nous-text-wrapper p,
  .nous-text-wrapper .line {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .nous-text-wrapper p {
    font-size: 5rem;
    line-height: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .nous-text-wrapper p {
    font-size: 3.125rem;
    line-height: 70px;
  }
}

.manifesto-medias {
  display: none;
}

.manifesto-float-img {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: min(28vw, 380px);
  height: min(28vw, 380px);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 9999;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .manifesto-float-img {
    width: min(62vw, 830px);
    height: min(62vw, 830px);
  }
}

.manifesto-hand-wrap {
  display: flex;
  justify-content: center;
}

.manifesto-hand-img {
  width: 300px;
}

.draggable-image-grid {
  padding: 548px 44px 0;
  max-width: 100%;
  overflow-x: hidden;
}
.draggable-image-grid .image-grid-heading {
  color: var(--black);
  font-size: 3rem;
  font-weight: 900;
  line-height: 24px;
}
.draggable-image-grid .dig-grid .img-card:not(.empty) {
  cursor: grab;
}
@media (hover: hover) and (pointer: fine) {
  .draggable-image-grid .dig-grid .img-card:not(.empty) {
    cursor: none !important;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .draggable-image-grid {
    padding: 100px 0 var(--header-bar-height);
  }
  .draggable-image-grid .image-grid-heading {
    font-size: 2.125rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .draggable-image-grid {
    padding: 100px 34px 0;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .draggable-image-grid {
    padding: 200px 44px 0;
  }
}

.dig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 45px;
  max-width: 100%;
  overflow-x: hidden;
}
.dig-grid .img-card {
  position: relative;
  z-index: 1 !important;
}
.dig-grid .img-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dig-grid .img-card .img-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 26px;
}
.dig-grid .img-card .img-card-content h3 {
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 28px;
  text-shadow:
    1px 0 0 rgba(50, 50, 50, 0.2),
    -1px 0 0 rgba(50, 50, 50, 0.2),
    0 1px 0 rgba(50, 50, 50, 0.2),
    0 -1px 0 rgba(50, 50, 50, 0.2);
}
.dig-grid .img-card .img-card-content .card-icon svg {
  width: 22px;
  height: auto;
}
.dig-grid .img-card .img-card-content .img-card-role {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  margin-top: 16px;
}
.dig-grid .img-card .img-card-content .img-card-role .card-role-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dig-grid .img-card .img-card-content .img-card-role .card-role-title p {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  text-shadow:
    1px 0 0 rgba(50, 50, 50, 0.2),
    -1px 0 0 rgba(50, 50, 50, 0.2),
    0 1px 0 rgba(50, 50, 50, 0.2),
    0 -1px 0 rgba(50, 50, 50, 0.2);
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .dig-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .dig-grid .img-card .img-card-content {
    padding: 13px;
  }
  .dig-grid .img-card .img-card-content h3 {
    font-size: 1.05rem;
    line-height: 20px;
  }
  .dig-grid .img-card .img-card-content .img-card-role {
    gap: 10px;
    margin-top: 10px;
  }
  .dig-grid .img-card .img-card-content .img-card-role .card-role-title p {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .dig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dig-grid .img-card .img-card-content h3 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .dig-grid .img-card .img-card-content h3 {
    font-size: 1.375rem;
  }
}

.page-template-page-aboutus .nous-text-wrapper {
  opacity: 0;
  visibility: hidden;
}

.contact-content-wrapper {
  height: 100%;
  overflow-y: auto;
  background-color: var(--light-blue);
}

.contact-content-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 44px 44px 90px;
}
.contact-content-header .address-col p {
  color: var(--black);
  font-size: 4.125rem;
  font-weight: 900;
  line-height: 66px;
  overflow: hidden;
  display: block;
}
.contact-content-header .phone-email-col {
  display: flex;
  flex-direction: column;
}
.contact-content-header .phone-email-col a {
  font-weight: 900;
  line-height: 1;
  font-size: 6.5rem;
}
.contact-content-header .phone-email-col a[href^="tel:"] {
  color: var(--black);
  -webkit-text-fill-color: currentColor;
  padding: 0;
  overflow: hidden;
  display: inline-block;
}
.contact-content-header .phone-email-col a[href^="tel:"] .mask__bg {
  display: none;
}
.contact-content-header .phone-email-col a.email[href^="mailto:"] {
  color: white;
  -webkit-text-fill-color: currentColor;
  padding: 0.12em 0.22em;
  margin-top: -10px;
}
.contact-content-header .phone-email-col a.contact-mask {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: var(--white);
  -webkit-text-fill-color: currentColor;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.contact-content-header .phone-email-col a.contact-mask .mask__bg {
  position: absolute;
  inset: 0;
  background: var(--muted-red);
  z-index: 0;
  pointer-events: none;
}
.contact-content-header .phone-email-col a.contact-mask .mask__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: inherit;
  -webkit-text-fill-color: currentColor;
}
@media (max-width: 880px) {
  .contact-content-header {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 20px 50px;
    gap: 46px;
  }
  .contact-content-header .address-col p {
    font-size: 2.65rem;
    line-height: 40px;
  }
  .contact-content-header .phone-email-col a {
    font-size: 2.65rem;
    line-height: 40px;
  }
  .contact-content-header .phone-email-col a.email[href^="mailto:"] {
    margin-top: -6px;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .contact-content-header {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 20px 50px;
    gap: 46px;
  }
  .contact-content-header .address-col p {
    font-size: 2.65rem;
    line-height: 40px;
  }
  .contact-content-header .phone-email-col a {
    font-size: 2.65rem;
    line-height: 40px;
  }
  .contact-content-header .phone-email-col a.email[href^="mailto:"] {
    margin-top: -6px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-content-header .address-col p {
    font-size: 2.75rem;
    line-height: 50px;
  }
  .contact-content-header .phone-email-col a {
    font-size: 2.75rem;
    line-height: 50px;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .contact-content-header .address-col p {
    font-size: 3.4375rem;
    line-height: 66px;
  }
  .contact-content-header .phone-email-col a {
    font-size: 3.4375rem;
    line-height: 66px;
  }
}

.phone-email-col a {
  font-size: 4rem !important;
  width: -moz-fit-content;
  width: fit-content;
}

.contact-char {
  display: inline-block;
  will-change: transform;
}

.contact-content-wrapper .contact-useful-links {
  padding: 0 44px 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 56px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col {
  flex: 1 1 280px;
  min-width: 260px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col .useful-links-subcolumns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col .useful-links-subcolumn {
  flex: 1 1 220px;
  min-width: 220px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col h3,
.contact-content-wrapper .contact-useful-links .useful-links-col h2 {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col ul li {
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
}
.contact-content-wrapper .contact-useful-links .useful-links-col ul li p {
  margin-bottom: 0;
}
.contact-content-wrapper .contact-useful-links .useful-links-col ul li a {
  text-decoration: underline;
}
.contact-content-wrapper .contact-useful-links .useful-links-col ul li .small-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 18px;
}
@media (min-width: 1400px) {
  .contact-content-wrapper .contact-useful-links {
    flex-wrap: nowrap;
    gap: 40px;
  }
  .contact-content-wrapper .contact-useful-links .useful-links-col {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (max-width: 880px) {
  .contact-content-wrapper .contact-useful-links {
    padding: 0 20px 150px;
    gap: 40px;
    flex-direction: column;
  }
  .contact-content-wrapper .contact-useful-links .useful-links-col {
    flex-basis: 100%;
    min-width: 0;
  }
  .contact-content-wrapper .contact-useful-links .useful-links-subcolumn {
    flex-basis: 100%;
    min-width: 0;
  }
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  .contact-content-wrapper .contact-useful-links {
    padding: 0 20px 50px;
    gap: 40px;
    flex-direction: column;
    padding-bottom: 150px;
  }
  .contact-content-wrapper .contact-useful-links .useful-links-col {
    flex-basis: 100%;
    min-width: 0;
  }
  .contact-content-wrapper .contact-useful-links .useful-links-col ul {
    margin-top: 20px;
    gap: 16px;
  }
  .contact-content-wrapper .contact-useful-links .useful-links-subcolumn {
    flex-basis: 100%;
    min-width: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-content-wrapper .contact-useful-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .contact-content-wrapper .contact-useful-links {
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.trail-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  contain: strict;
}
@media (pointer: coarse), (max-width: 1023px) {
  .trail-layer {
    display: none;
  }
}

.square {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  box-shadow: none;
  border: 0;
  translate: -50% -50%;
  opacity: 1;
  will-change: opacity, transform;
}

.page-template-page-contact .contact-content-header {
  opacity: 0;
  visibility: hidden;
}

#cmplz-cookiebanner-container {
  z-index: 110 !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner:not(.cmplz-dismissed) {
  bottom: calc(var(--menu-row-height) + 10px) !important;
  top: auto !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner.soma-cmplz-banner-prep:not(.cmplz-dismissed):not(.soma-cmplz-banner-entered) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  animation: none !important;
  transition: none !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner.soma-cmplz-banner-entered:not(.cmplz-dismissed) {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 0.5s ease, visibility 0s linear 0s !important;
}

body.soma-defer-cmplz:not(.soma-cmplz-ready) #cmplz-cookiebanner-container .cmplz-cookiebanner:not(.cmplz-dismissed) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  animation: none !important;
}

body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main {
  width: 100%;
  min-height: 100dvh;
  background-color: var(--cream-tone);
  color: var(--black-2);
  padding: 110px var(--logo-inline-inset) calc(var(--header-bar-height) + 48px);
}
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-header {
  margin-bottom: 28px;
}
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-title {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content p,
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content ul,
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content ol,
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content h2,
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content h3,
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content h4 {
  margin-bottom: 1em;
}
body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main .entry-content a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
@media (max-width: 767px), ((max-height: 520px) and (orientation: landscape) and (max-width: 1024px)) {
  body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-main {
    padding-top: 88px;
    padding-bottom: calc(var(--header-bar-height) + 32px);
  }
}

body.page:not(.page-template-page-contact):not(.page-template-page-aboutus):not(.page-template-page-realisateurs) .default-page-content-wrap {
  max-width: 920px;
}/*# sourceMappingURL=style.css.map */