:root {
  --font--body: "Gill Sans";
  --website-background-color: white;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-color: var(--wp--preset--color--base);
  --swiper-pagination-bullet-width: clamp(1.875rem, -0.9821rem + 5.9524vw, 4.375rem);
  --swiper-pagination-bullet-height: 5px;
  --swiper-pagination-bullet-border-radius: 0;
  --swiper-pagination-bullet-inactive-color: var(--wp--preset--color--alternative);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: 0;
}

:root {
  /* TODO: icons for theme. */
  --icon-forward: url("data:image/svg+xml,%3csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg id='Forward'%3e %3cpath id='Vector 1' d='M35.4999 20L5.49988 20' stroke='white' stroke-width='1.5'/%3e %3cpath id='Vector 4' d='M20.4999 35L35.4999 20L20.4999 5' stroke='white' stroke-width='1.5'/%3e %3c/g%3e %3c/svg%3e");
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

*:focus {
  outline: 0;
}

button,
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  margin: 0;
  background-color: var(--website-background-color);
}

h1,
.heading-h1 {
  font-size: var(--h1--font-size, clamp(2rem, 0.5714rem + 2.9762vw, 3.25rem));
  line-height: 110%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--h1--letter-spacing, 2.6px);
  margin-block: 0;
}

h2,
.heading-h2 {
  font-size: var(--h2--font-size, clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem));
  margin-block: 0;
  font-weight: 500;
  line-height: var(--h2--line-height, 110%);
  letter-spacing: var(--h2--letter-spacing, clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem));
  text-transform: var(--h2--text-transform, uppercase);
}

.is-text {
  font-size: var(--is-text--font-size, var(--wp--preset--font-size--medium));
  line-height: var(--is-text--line-height, 130%);
  letter-spacing: var(--is-text--letter-spacing, 0.255px);
  font-weight: var(--is-text--font-weight, 400);
}
.is-text *:first-child {
  margin-block-start: 0;
}
.is-text *:last-child {
  margin-block-end: 0;
}

main {
  letter-spacing: var(--is-text--letter-spacing, 0.255px);
}

.nice-button {
  text-decoration: none;
  cursor: pointer;
  color: var(--button--color, var(--wp--preset--color--contrast));
  background-color: var(--button--background-color, var(--wp--preset--color--base));
  border: 1px solid var(--button--border-color, var(--wp--preset--color--base));
  font-size: var(--button--font-size, clamp(0.813rem, 0.741rem + 0.149vw, 0.875rem));
  font-family: var(--button--font-family, var(--font--body));
  text-align: center;
  padding: var(--button--padding, 16px 23px 17px);
  display: var(--button--display, inline-flex);
  align-items: center;
  justify-content: center;
  font-weight: var(--button--font-weight, 500);
  border-radius: 0;
  line-height: var(--button--line-height, 110%);
  width: var(--button--width, auto);
  transition: all 0.3s ease-in-out;
  text-transform: var(--button--text-transform, uppercase);
  letter-spacing: var(--button--letter-spacing, clamp(0.041rem, 0.037rem + 0.007vw, 0.044rem));
}
.nice-button:hover {
  color: var(--button--hover--color, var(--wp--preset--color--base));
  background-color: var(--button--hover--background-color, var(--wp--preset--color--contrast));
  border-color: var(--button--hover--border-color, var(--wp--preset--color--base));
}
.nice-button--alternative {
  --button--color: var(--button--alt--color, var(--wp--preset--color--base));
  --button--background-color: var(--button--alt--background-color, var(--wp--preset--color--contrast));
  --button--border-color: var(--button--alt--border-color, var(--wp--preset--color--base));
}
.nice-button--alternative:hover {
  color: var(--button--alt--hover--color, var(--wp--preset--color--contrast));
  background-color: var(--button--alt--hover--background-color, var(--wp--preset--color--base));
  border-color: var(--button--alt--hover--border-color, var(--wp--preset--color--base));
}

.is-action-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: var(--is-action-list--margin-top, 26px);
  gap: 4px;
}

a {
  color: var(--link--color, var(--wp--preset--color--base));
  background-color: var(--link--background-color, transparent);
  text-decoration: var(--link--text-decoration, none);
}
a:hover {
  color: var(--link--hover--color, var(--wp--preset--color--base));
  background-color: var(--link--hover--background-color, transparent);
  text-decoration: var(--link--hover--text-decoration, none);
}

.has-animated-links a {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.has-animated-links a:after {
  content: "";
  position: absolute;
  width: var(--link--border-width, 100%);
  height: 1px;
  background-color: var(--link--color, var(--wp--preset--color--base));
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease-in-out;
}
.has-animated-links a:hover {
  --link--border-width: 0;
}

blockquote,
p,
ul,
ol {
  margin-block-start: 10px;
  margin-block-end: 10px;
}

.swiper-pagination {
  line-height: 0;
}

.tribe-events-pg-template {
  all: revert !important;
}

.tribe-events-before-html .equ-white-hero {
  margin-block-end: clamp(3.75rem, 1.6071rem + 4.4643vw, 5.625rem);
}

.return-to-blog {
  text-align: center;
  padding-inline: var(--wp--custom--grid--page-margin);
  font-size: 17px;
  margin-block: 36px auto;
}

:root {
  font-family: var(--font--body);
}

@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova UltraLight It.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova Light Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Gill-Sans.woff2") format("woff2"), url("../../fonts/Gill-Sans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Gill-Sans-Italic.woff2") format("woff2"), url("../../fonts/Gill-Sans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova Medium Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova SemiBold Italic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova Bold Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans";
  src: url("../../fonts/Monotype  - Gill Sans Nova ExtraBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  --site-header--destination-bar-height: 53px;
  --site-header--menu-bar-height: 48px;
}

.site-header {
  --site-header--background-color-dark: #000;
  --site-header--text-color-dark: #FFF;
  --site-header--destination-line-color: #FFF;
  --site-header--transparent-background: #0000001A;
  --site-header--horizontal-padding-right: 6px;
  --site-header--horizontal-padding-left: 20px;
  --site-header--post-load-transition-time: 0.5s;
  --button--background-color: var(--site-header--text-color-dark);
  --button--color: var(--site-header--background-color-dark);
  --button--padding: 13px 18px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  font-size: 14px;
  font-weight: 500;
}
.site-header__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: var(--site-header--transparent-background);
  column-gap: 4px;
  transition: background var(--site-header--post-load-transition-time) ease-in-out;
}
.site-header__destinations {
  background: var(--site-header--background-color-dark);
  color: var(--site-header--text-color-dark);
  min-height: var(--site-header--destination-bar-height);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 16px;
  padding-left: var(--site-header--horizontal-padding-left);
  flex-basis: 100%;
  overflow: hidden;
  text-transform: uppercase;
  transition: height 0.5s ease-in-out;
}
.site-header__destinations__list {
  opacity: 1;
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
  transition: all 0.25s;
  display: none;
  min-height: 0;
}
.site-header__destinations__list a {
  color: var(--site-header--text-color-dark);
  display: block;
}
.site-header__destinations__list a span {
  display: none;
}
.site-header__destinations__list__item {
  padding: 3px 0;
  width: 322px;
  height: 172px;
  aspect-ratio: 322/172;
  position: relative;
  overflow: hidden;
}
.site-header__destinations__list__item--coming-soon a {
  color: #969696;
}
.site-header__destinations__list__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 1s ease-in-out;
}
.site-header__destinations__list__item:hover img {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}
.site-header .destinations__current {
  font-weight: 700;
}
.site-header .destinations__menu {
  border-left: 1px solid var(--site-header--destination-line-color);
  transition: all var(--site-header--post-load-transition-time) ease-in-out;
}
.site-header .destinations__menu__toggle {
  border: none;
  background: none;
  text-transform: uppercase;
  color: var(--site-header--text-color-dark);
  padding: 0 20px 0 12px;
  position: relative;
  cursor: pointer;
  font-family: var(--font--body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
}
.site-header .destinations__menu__toggle:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../../images/arrow-down-light.svg) no-repeat;
  width: 11px;
  height: 6px;
  transition: transform var(--site-header--post-load-transition-time) ease-in-out, background var(--site-header--post-load-transition-time) ease-in-out;
}
.site-header .destinations__menu__toggle:hover:after {
  transform: translateY(-50%) rotate(180deg);
}
.site-header__branding {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: var(--site-header--horizontal-padding-left);
  flex: 1 0 auto;
  height: 54px;
}
.site-header__branding svg {
  height: auto;
  width: 171px;
}
.site-header__branding svg rect,
.site-header__branding svg path {
  transition: fill var(--site-header--post-load-transition-time) ease-in-out;
  fill: var(--site-header--text-color-dark);
}
.site-header__branding span {
  display: none;
}
.site-header__language_switcher {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.site-header__language_switcher ul {
  list-style: none;
  display: flex;
  gap: 10px;
}
.site-header__language_switcher__item {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  text-transform: uppercase;
  color: var(--site-header--text-color-dark);
  opacity: 0.5;
}
.site-header__language_switcher__item a {
  color: var(--site-header--text-color-dark);
}
.site-header__language_switcher__item:before {
  content: "/";
}
.site-header__language_switcher__item:last-child:before {
  display: none;
}
.site-header__language_switcher__item--current {
  opacity: 1;
}
.site-header__cta {
  display: flex;
  align-items: center;
}
.site-header__cta .cta--sign-in {
  display: none;
}
.site-header__cta .cta--book-now {
  --button--padding: 12px 18px 13px 18px;
  --button--font-size: 13px;
  line-height: 100%;
}
.site-header__nav {
  display: flex;
  align-items: center;
  padding-right: var(--site-header--horizontal-padding-right);
}
.site-header__nav-container {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
  position: absolute;
  background: white;
  inset: 107px 0 auto 0;
  padding-bottom: 45px;
  transition: transform var(--site-header--post-load-transition-time) ease-in-out, opacity var(--site-header--post-load-transition-time) ease-in-out;
}
.site-header__nav-container-extra-links {
  --button--padding: 16px 23px 17px 23px;
  margin: 0 24px;
  border-top: 1px solid black;
  padding-top: 22px;
}
.site-header__nav-container-cta.cta--sign-in {
  font-size: 16px;
  text-transform: uppercase;
  background: url(../../images/user-icon-dark.svg) 0 50% no-repeat;
  padding-left: 24px;
  margin-bottom: 40px;
  display: block;
  transition: background var(--site-header--post-load-transition-time) ease-in-out;
}
.site-header__nav-container-cta.cta--book-now {
  display: block;
}
.site-header__nav .menu-toggle {
  background: transparent;
  border: 1px solid var(--site-header--text-color-dark);
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
.site-header__nav .menu-toggle:after, .site-header__nav .menu-toggle:before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background-color: var(--site-header--text-color-dark);
  position: absolute;
  left: 10px;
  top: 15px;
  transition: all 0.3s ease-in-out;
}
.site-header__nav .menu-toggle:after {
  top: 22px;
}
.site-header__nav .menu-toggle span {
  display: none;
}
.site-header__nav__list {
  list-style: none;
  margin: 0;
  padding: 30px 24px;
  background: transparent;
  transition: background var(--site-header--post-load-transition-time) ease-in-out;
}
.site-header__nav__list--level-1 {
  padding-inline: 0;
}
.site-header__nav__list button {
  display: none;
}
.site-header__nav__list a {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  padding: 9px 0;
  transition: color var(--site-header--post-load-transition-time) ease-in-out;
  letter-spacing: 0.7px;
  line-height: 110%;
}
.site-header__nav__list .site-header__nav__list {
  padding-block: 0;
}
.site-header__social-network {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}

body.is-destination-menu-opened .site-header .destinations__menu {
  margin-bottom: 19px;
}
body.is-destination-menu-opened .site-header .destinations__menu__toggle:after {
  transform: translateY(-50%) rotate(180deg);
}
body.is-destination-menu-opened .site-header__destinations__list {
  margin-top: 10px;
}

body.is-menu-opened .site-header__container {
  background: var(--site-header--background-color-dark);
}
body.is-menu-opened .site-header__cta {
  display: none;
}
body.is-menu-opened .site-header__nav .menu-toggle:before {
  transform: rotate(45deg);
  top: 19px;
}
body.is-menu-opened .site-header__nav .menu-toggle:after {
  transform: rotate(-45deg);
  top: 19px;
}
body.is-menu-opened .site-header__nav-container {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

body.is-scrolled:not(.is-menu-opened) .site-header {
  --site-header--transparent-background: #FFF;
}
body.is-scrolled:not(.is-menu-opened) .site-header__branding svg path {
  fill: black;
}
body.is-scrolled:not(.is-menu-opened) .site-header__nav {
  --site-header--text-color-dark: black;
}
body.is-scrolled:not(.is-menu-opened) .site-header__language_switcher__item {
  color: black;
}
body.is-scrolled:not(.is-menu-opened) .site-header__language_switcher__item a {
  color: black;
}

body.show-clear-on-load:not(.is-menu-opened) .site-header__nav,
body.show-clear-on-load:not(.is-menu-opened) .site-header__branding svg path {
  --site-header--text-color-dark: black;
}

@media (min-width: 980px) {
  .site-header {
    --site-header--background-color-dark: var(--site-header--transparent-background);
    --site-header--text-color-dark: #FFF;
    --button--color: black;
    --button--padding: 15px 22px;
  }
  .site-header__container {
    flex-wrap: nowrap;
    align-items: center;
    height: 76px;
  }
  .site-header__branding {
    justify-content: center;
    flex-basis: 310px;
    margin-left: 0;
    padding-left: 10px;
  }
  .site-header__branding svg {
    height: 19px;
    width: 285px;
    height: auto;
  }
  .site-header__destinations, .site-header__cta {
    flex: 1 0 auto;
    max-width: 400px;
  }
  .site-header__destinations .cta--sign-in, .site-header__cta .cta--sign-in {
    display: block;
    margin-right: 14px;
    font-size: var(--button--font-size, 14px);
    letter-spacing: 0.7px;
    padding: var(--button--padding, 16px 23px 17px);
    color: var(--site-header--text-color-dark);
    transition: color var(--site-header--post-load-transition-time) ease-in-out;
    text-transform: uppercase;
    background: url(../../images/user-icon.svg) 0 50% no-repeat;
    padding-left: 24px;
  }
  .site-header__destinations .cta--book-now, .site-header__cta .cta--book-now {
    --button--padding: 13px 22px 15px 22px;
    --button--font-size: 14px;
  }
  .site-header__destinations {
    background: none;
  }
  .site-header .destinations__menu__nav {
    position: absolute;
    inset: 76px 0 auto 0;
    background: var(--site-header--transparent-background);
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--site-header--post-load-transition-time) ease-in-out, background var(--site-header--post-load-transition-time) ease-in-out;
  }
  .site-header__destinations__list {
    max-width: var(--wp--custom--width--default);
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px;
    justify-content: center;
  }
  .site-header__destinations__list__item {
    background-size: 107% auto;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.5s ease-in-out;
    aspect-ratio: 312/172;
    width: 312px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: white;
    font-size: 22px;
    line-height: 110%;
  }
  .site-header__destinations__list__item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    aspect-ratio: 312/172;
    width: 312px;
    color: white;
  }
  .site-header__destinations__list__item span {
    display: block;
    font-size: 17px;
    text-transform: lowercase;
    font-weight: 400;
    font-style: italic;
  }
  .site-header__destinations__list__item:hover {
    background-size: 120% auto;
  }
  .site-header__cta {
    justify-content: flex-end;
  }
  .site-header__nav-container {
    opacity: 1;
    transform: none;
    position: static;
    inset: auto;
    padding-bottom: 0;
    pointer-events: all;
  }
  .site-header__nav-container-extra-links {
    display: none;
  }
  .site-header__nav button {
    display: none;
  }
  .site-header__nav__item {
    height: var(--site-header--menu-bar-height);
    padding-top: 7px;
  }
  .site-header__nav__item.menu-item-has-children:hover > a:after {
    opacity: 1;
  }
  .site-header__nav__item.menu-item-has-children:hover > .site-header__nav__list {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }
  .site-header__nav__item--level-1.menu-item-has-children {
    position: static;
  }
  .site-header__nav__item--level-1.menu-item-has-children > .site-header__nav__list--level-2 {
    display: none !important;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: calc(75px + var(--site-header--menu-bar-height) + var(--site-header--menu-bar-height));
    left: 0;
    right: 0;
    gap: 32px;
    justify-content: center;
    align-items: center;
    background: var(--site-header--background-color-dark);
    padding: 0;
    height: var(--site-header--menu-bar-height);
    flex-direction: row;
    transform: none;
    margin: 0;
    min-width: auto;
    width: 100%;
  }
  .site-header__nav__item--level-1.menu-item-has-children:hover > .site-header__nav__list--level-2 {
    display: flex !important;
    opacity: 1;
    pointer-events: all;
  }
  .site-header__nav__list {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 76px 0 auto 0;
    padding: 10px 0;
    background: var(--site-header--background-color-dark);
    margin: 0;
    padding: 0;
    list-style: none;
    height: var(--site-header--menu-bar-height);
    border-top: 1px solid rgba(209, 209, 209, 0.2);
  }
  .site-header__nav__list a {
    color: var(--site-header--text-color-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
  }
  .site-header__nav__list a:after {
    content: "";
    position: absolute;
    bottom: -7px;
    height: 3px;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 9;
  }
  .site-header__nav__list a:hover:after {
    opacity: 1;
  }
  .site-header__nav__list .site-header__nav__list {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--site-header--post-load-transition-time) ease-in-out;
    position: absolute;
    inset: 46px 0 auto 0;
  }
  .site-header .menu-toggle {
    display: none;
  }
  body.show-clear-on-load .site-header,
  body.is-scrolled .site-header {
    --site-header--transparent-background: #FFF;
    --site-header--background-color-dark: #FFF;
    --site-header--text-color-dark: #000;
    --site-header--destination-line-color: #000;
    --button--color: #FFF;
  }
  body.show-clear-on-load .destinations__menu__toggle:after,
  body.is-scrolled .destinations__menu__toggle:after {
    background: url(../../images/arrow-down-dark.svg) no-repeat;
  }
  body.show-clear-on-load .cta--sign-in,
  body.is-scrolled .cta--sign-in {
    background: url(../../images/user-icon-dark.svg) 0 50% no-repeat;
  }
  body.is-destination-menu-opened .site-header .destinations__menu__nav {
    opacity: 1;
    pointer-events: all;
  }
  body.is-destination-menu-opened .site-header .site-header__nav__list {
    opacity: 0;
  }
  body.show-clear-on-load {
    padding-top: 120px;
  }
}
@media (max-width: 55rem) {
  body.show-clear-on-load {
    padding-top: 110px;
  }
  .site-header__destinations__list__item {
    background-image: none !important;
    letter-spacing: 0.7px;
  }
  .site-header__destinations__list__item__coming-soon {
    display: none;
  }
  .site-header__destinations__list__item--coming-soon {
    color: var(--wp--preset--color--alternative);
  }
  .site-header__nav-container .site-header__nav__list .menu-item-has-children .site-header__nav__list a {
    font-size: 16px;
    font-weight: 400;
  }
  .site-header__nav-container-cta.cta--book-now {
    background: var(--button--color);
    color: var(--button--background-color);
  }
  .site-header__nav-container-cta.cta--book-now:hover {
    color: var(--button--color);
    background: var(--button--background-color);
  }
  body.is-menu-opened .site-header__nav-container {
    max-height: calc(100dvh - 107px);
    overflow-y: auto;
  }
  body.is-menu-opened .site-header__nav-container .site-header__nav__list .menu-item-has-children > a:after {
    content: "";
    width: 30px;
    height: 9px;
    background: url(../../images/arrow-down-dark.svg) no-repeat;
    display: inline-block;
    margin-left: 12px;
  }
  body.is-menu-opened .site-header__nav-container .site-header__nav__list .menu-item-has-children .site-header__nav__list {
    display: none;
    height: 0;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
  }
  body.is-menu-opened .site-header__nav-container .site-header__nav__list.is-opened {
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 448px) {
  .site-header__cta .cta--book-now {
    position: absolute;
    top: 7px;
    right: 6px;
  }
}
.site-footer {
  --site-footer--background-color: black;
  --site-footer--color: white;
  --site-footer--font-size: 17px;
  --site-footer--font-line-height: 130%;
  --site-footer--padding: 51px 0 94px 0;
  background-color: var(--site-footer--background-color);
  color: var(--site-footer--color);
  font-size: var(--site-footer--font-size);
  line-height: var(--site-footer--font-line-height);
  padding: var(--site-footer--padding);
  letter-spacing: 0.255px;
}
.site-footer a {
  color: var(--site-footer--color);
}
.site-footer__container {
  margin: 0 auto;
  padding: 0px var(--wp--custom--grid--page-margin) 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.site-footer__extra-link {
  padding-left: 25px;
  background: url(../../images/user-icon.svg) 0 3px no-repeat;
}
.site-footer__list-menu {
  padding-bottom: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list-menu a {
  display: block;
  padding: 5px 0;
}
.site-footer__address, .site-footer__copyright {
  text-align: center;
  opacity: 0.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .site-footer {
    --site-footer--padding: 90px 0 65px 0;
  }
  .site-footer__container {
    padding: 0 var(--wp--custom--grid--page-margin) 0px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    align-items: flex-start;
  }
  .site-footer__extra-link {
    text-align: left;
    padding: 5px 0 5px 25px;
    background-position: 0px 7px;
    order: 2;
    margin-left: auto;
  }
  .site-footer__menu-container {
    order: 1;
    flex-basis: 80%;
  }
  .site-footer__list-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 0;
  }
  .site-footer__list-menu a {
    white-space: nowrap;
  }
  .site-footer__address, .site-footer__copyright {
    order: 10;
    text-align: left;
    max-width: none;
    margin: 50px 0 0 0;
  }
}
body.main-fullscreen header,
body.main-fullscreen footer {
  display: none;
}
body.main-fullscreen .ob-block-map__container {
  max-width: 100%;
}
body.main-fullscreen .ob-block-map {
  --ob_block_map__border: 1px solid #E2E2E2;
  --ob_block_map__panel_width: 500px;
}
body.main-fullscreen .ob-block-map__panel {
  flex-direction: column;
}
body.main-fullscreen .ob-block-map .pre-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  border-bottom: var(--ob_block_map__border);
  border-right: var(--ob_block_map__border);
  height: 70px;
}
body.main-fullscreen .ob-block-map .pre-header__logo-image {
  height: 11px;
  width: auto;
}
body.main-fullscreen .ob-block-map .pre-header__destination {
  padding-right: 20px;
  position: relative;
}
body.main-fullscreen .ob-block-map .pre-header__destination__current {
  cursor: pointer;
  display: flex;
  gap: 5px;
  font-size: 15px;
  line-height: 15px;
}
body.main-fullscreen .ob-block-map .pre-header__destination__current a:after {
  content: "";
  display: inline-block;
  background: url(../../images/arrow-down-dark.svg) no-repeat center;
  width: 30px;
  height: 20px;
  margin-bottom: -5px;
}
body.main-fullscreen .ob-block-map .pre-header__destination__menu {
  opacity: 0;
  position: absolute;
  background: white;
  inset: -10px 0 auto auto;
  padding: 10px;
  pointer-events: none;
  border: var(--ob_block_map__border);
}
body.main-fullscreen .ob-block-map .pre-header__destination__list-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: url(../../images/close.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  background-color: black;
  border-radius: 100%;
  background-size: 8px;
}
body.main-fullscreen .ob-block-map .pre-header__destination__item {
  white-space: nowrap;
}
body.main-fullscreen .ob-block-map .pre-header__destination__item--active {
  text-decoration: underline;
}
body.main-fullscreen .ob-block-map .pre-header__destination--open .pre-header__destination__menu {
  opacity: 1;
  pointer-events: all;
}
body.main-fullscreen .ob-block-map__header-container {
  padding: 18px 20px 20px 20px;
  border-bottom: var(--ob_block_map__border);
  border-right: var(--ob_block_map__border);
}
body.main-fullscreen .ob-block-map__header-container__heading {
  margin-block-end: 24px;
}
body.main-fullscreen .ob-block-map__filter-label {
  font-size: 17px;
  font-style: italic;
  line-height: 130%;
  color: #595959;
}
body.main-fullscreen .ob-block-map__filter-list {
  padding-top: 12px;
  display: flex;
  gap: 10px;
}
body.main-fullscreen .ob-block-map__filter-item {
  appearance: none;
  border: var(--ob_block_map__border);
  font-size: 13px;
  line-height: 13px;
  text-transform: uppercase;
  background: transparent;
  padding: 10px 11px;
  cursor: pointer;
  font-family: var(--font--body);
  letter-spacing: 0.5px;
}
body.main-fullscreen .ob-block-map__filter-item.is-active {
  background: var(--wp--preset--color--base);
  color: #fff;
}
body.main-fullscreen .ob-block-map .ob-block-map__point-list {
  margin: 30px 0;
  padding: 0 30px 100px 30px;
  gap: 60px;
}
body.main-fullscreen .ob-block-map__point_content {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
body.main-fullscreen .ob-block-map__point_taxonomy {
  font-size: 17px;
  font-style: italic;
  line-height: 130%;
  color: var(--wp--preset--color--base);
  margin-bottom: 14px;
}
body.main-fullscreen .ob-block-map__point_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}
body.main-fullscreen .ob-block-map__point_adress_text {
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 1.5%;
  color: #616161;
}
body.main-fullscreen .ob-block-map__point_readmore {
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 1.5%;
  color: var(--wp--preset--color--base);
  padding-bottom: 1px;
  border-bottom: 1px solid var(--wp--preset--color--base);
  margin-top: 18px;
  display: inline-block;
}
body.main-fullscreen .ob-block-map__point_image {
  flex-basis: 40%;
  display: flex;
}
body.main-fullscreen .ob-block-map__point_image img {
  width: 190px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.main-fullscreen .ob-block-map__card {
  padding: 90px 30px 30px 30px;
  overflow-y: auto;
}
body.main-fullscreen .ob-block-map__card .ob-block-map__point_title {
  font-size: 40px;
  margin-block: 12px;
}
body.main-fullscreen .ob-block-map__card .ob-block-map__point_adress_text {
  font-size: 16px;
  margin-block: 12px;
  color: #616161;
}
body.main-fullscreen .ob-block-map__card .ob-block-map__link_list {
  border-top: 1px solid #000000;
  padding-block: 26px;
  margin-top: 20px;
  display: flex;
  gap: 16px;
}
body.main-fullscreen .ob-block-map__card .ob-block-map__link_list a {
  line-height: 130%;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
body.main-fullscreen .ob-block-map__card strong {
  font-weight: 700;
}
body.main-fullscreen .ob-block-map .ob-block-map__list-point {
  display: flex;
  gap: 20px;
  position: relative;
}
body.main-fullscreen .ob-block-map .ob-block-map__list-point:not(:last-child):after {
  content: "";
  position: absolute;
  inset: auto 0 -30px 0;
  height: 1px;
  background: #E2E2E2;
}
body.main-fullscreen .ob-block-map__pagination {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  max-width: var(--ob_block_map__panel_width);
  border-top: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
  background: white;
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-block-end: 0;
}
body.main-fullscreen .ob-block-map__pagination.is-empty {
  display: none;
}
body.main-fullscreen .ob-block-map__pagination-page {
  background: none;
  border: none;
  font-size: 13px;
  line-height: 70px;
  font-weight: 500;
  min-width: 38px;
  cursor: pointer;
}
body.main-fullscreen .ob-block-map__pagination-page.is-active {
  border-top: 1px solid #000000;
}
@media (max-width: 768px) {
  body.main-fullscreen .ob-block-map__panel {
    display: block;
  }
  body.main-fullscreen .ob-block-map__map {
    height: 524px;
    flex-basis: 524px;
  }
  body.main-fullscreen .ob-block-map__gmap {
    aspect-ratio: auto;
    height: 100%;
  }
  body.main-fullscreen .ob-block-map .ob-block-map__pagination {
    position: static;
    max-width: none;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  body.main-fullscreen .ob-block-map__container {
    display: flex;
    flex-direction: column;
    height: 100dvh;
  }
  body.main-fullscreen .ob-block-map {
    position: absolute;
    inset: 0;
  }
  body.main-fullscreen .ob-block-map__panel {
    gap: 0;
    flex-direction: row-reverse;
    flex: 1;
    height: calc(100dvh - 185px);
    overflow-y: auto;
  }
  body.main-fullscreen .ob-block-map__card {
    position: fixed;
    inset: 0;
    transform: none;
    max-width: var(--ob_block_map__panel_width);
    padding: 90px 30px 30px 30px;
  }
  body.main-fullscreen .ob-block-map__card__close {
    width: 38px;
    height: 38px;
    inset: 30px 30px auto auto;
    background: black;
    transition: background 0.3s ease;
    border: 1px solid black;
  }
  body.main-fullscreen .ob-block-map__card__close svg path {
    transition: fill 0.3s ease;
  }
  body.main-fullscreen .ob-block-map__card__close:hover {
    background: white;
  }
  body.main-fullscreen .ob-block-map__card__close:hover svg path {
    fill: black;
  }
  body.main-fullscreen .ob-block-map__panel,
  body.main-fullscreen .ob-block-map .pre-header,
  body.main-fullscreen .ob-block-map .ob-block-map__header-container,
  body.main-fullscreen .ob-block-map .ob-block-map__panel .ob-block-map__list {
    width: 100%;
    max-width: var(--ob_block_map__panel_width);
  }
  body.main-fullscreen .ob-block-map .pre-header__logo-image {
    height: 15px;
  }
  body.main-fullscreen .ob-block-map .pre-header__destination__current {
    font-size: 16px;
    line-height: 16px;
  }
  body.main-fullscreen .ob-block-map .ob-block-map__gmap {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
  }
  body.main-fullscreen .ob-block-map .ob-block-map__map {
    position: absolute;
    inset: 0 0 0 500px;
  }
}

.subscribe-popup {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: all 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.subscribe-popup__container {
  background-color: #fff;
  max-width: 550px;
  width: 90%;
  margin: 5% auto;
  position: relative;
  padding: 2.5rem;
}
.subscribe-popup__close {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjI4My42NDYgMTcwNi42NDYgMTguNDEzIDE4LjQxMyI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7c3Ryb2tlOiMwMDB9PC9zdHlsZT48L2RlZnM+PGcgaWQ9Ikdyb3VwXzE5MTYxIiBkYXRhLW5hbWU9Ikdyb3VwIDE5MTYxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYwMS41IDE2OTUuNSkiPjxwYXRoIGlkPSJMaW5lXzUyMzYiIGRhdGEtbmFtZT0iTGluZSA1MjM2IiBjbGFzcz0iY2xzLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE4ODUuNSAxMS41KSIgZD0iTTAgMGwxNy43MDYgMTcuNzA2Ii8+PHBhdGggaWQ9IkxpbmVfNTIzNyIgZGF0YS1uYW1lPSJMaW5lIDUyMzciIGNsYXNzPSJjbHMtMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTg4NS41IDExLjUpIiBkPSJNMTcuNzA2IDBMMCAxNy43MDYiLz48L2c+PC9zdmc+");
  background-color: white;
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 3;
  height: 22px;
  width: 22px;
  padding: 0;
  font-size: 0;
  border: 0;
  cursor: pointer;
}
.subscribe-popup__iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 75vh;
  overflow: hidden;
}
.subscribe-popup__iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.popup-open .subscribe-popup {
  opacity: 1;
  pointer-events: all;
}

/**
 * EQ Chronotype Compass Quiz Styles
 * Component-based structure for Equinox Twentyfive Theme
 * 
 * Location: /assets/css/src/components/_chronotype-compass.scss
 * Import in: /assets/css/src/equinox-twentyfive.scss
 */
/* ===================================
   Chronotype Compass Quiz Component
   =================================== */
#gform_wrapper_1.gform_wrapper {
  max-width: 800px;
  padding-inline: var(--wp--custom--grid--page-margin);
  margin-inline: auto;
  margin-block: clamp(3.75rem, 1.6071rem + 4.4643vw, 5.625rem) clamp(3.75rem, 1.6071rem + 4.4643vw, 5.625rem);
  font-family: var(--font--body);
  letter-spacing: var(--is-text--letter-spacing, 0.255px);
  /* ===================================
  Progress Bar
  =================================== */
  /* ===================================
  Form Fields & Questions
  =================================== */
  /* ===================================
  Radio Button Choices
  =================================== */
  /* ===================================
  Text Input Fields
  =================================== */
  /* ===================================
  Navigation Buttons
  =================================== */
  /* ===================================
  Validation & Error Messages
  =================================== */
  /* ===================================
  Responsive Design
  =================================== */
}
#gform_wrapper_1.gform_wrapper #gf_progressbar_wrapper_1 {
  margin-block-end: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
  text-align: center;
}
#gform_wrapper_1.gform_wrapper .gf_progressbar_title {
  font-size: clamp(0.875rem, 0.803rem + 0.149vw, 0.938rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: clamp(0.041rem, 0.037rem + 0.007vw, 0.044rem);
  margin-block: 0 20px;
  color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper .gf_progressbar {
  background-color: var(--wp--preset--color--alternative, #f5f5f5);
  height: 5px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  position: relative;
}
#gform_wrapper_1.gform_wrapper .gf_progressbar_percentage {
  background: var(--wp--preset--color--base, #000);
  height: 100%;
  transition: width 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline: 10px;
}
#gform_wrapper_1.gform_wrapper .gf_progressbar_percentage span {
  display: none;
}
#gform_wrapper_1.gform_wrapper .gfield {
  margin-block-end: 0;
  padding: 0;
}
#gform_wrapper_1.gform_wrapper .gfield_label,
#gform_wrapper_1.gform_wrapper legend.gfield_label {
  font-size: clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem);
  text-transform: uppercase;
  margin-block: 0 15px;
  color: var(--wp--preset--color--base, #000);
  display: block;
}
#gform_wrapper_1.gform_wrapper .gfield_description {
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.255px;
  margin-block: 15px 30px;
  color: rgba(0, 0, 0, 0.8);
}
#gform_wrapper_1.gform_wrapper .gfield_required {
  color: var(--wp--preset--color--base, #000);
  font-weight: 500;
}
#gform_wrapper_1.gform_wrapper .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.714rem + 0.595vw, 1.25rem);
}
#gform_wrapper_1.gform_wrapper .gchoice {
  position: relative;
  border: 1px solid var(--wp--preset--color--alternative, #ddd);
  background: var(--website-background-color, white);
  padding-block: 24px;
  padding-inline: 22px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 0;
}
#gform_wrapper_1.gform_wrapper .gchoice:hover {
  border-color: var(--wp--preset--color--base, #000);
  background: rgba(0, 0, 0, 0.02);
}
#gform_wrapper_1.gform_wrapper .gchoice:has(input:checked) {
  border-color: var(--wp--preset--color--base, #000);
  background-color: rgba(0, 0, 0, 0.05);
}
#gform_wrapper_1.gform_wrapper .gfield-choice-input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
#gform_wrapper_1.gform_wrapper .gform-field-label--type-inline {
  cursor: pointer;
  padding-inline: 40px 0;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.3px;
  font-family: var(--font--body);
  margin: 0;
}
#gform_wrapper_1.gform_wrapper .gform-field-label--type-inline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--wp--preset--color--alternative, #ccc);
  border-radius: 50%;
  background-color: var(--website-background-color, white);
  transition: all 0.2s ease-in-out;
}
#gform_wrapper_1.gform_wrapper .gform-field-label--type-inline:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--base, #000);
  transition: transform 0.2s ease-in-out;
}
#gform_wrapper_1.gform_wrapper input[type=radio]:checked + .gform-field-label--type-inline {
  font-weight: 600;
}
#gform_wrapper_1.gform_wrapper input[type=radio]:checked + .gform-field-label--type-inline:before {
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper input[type=radio]:checked + .gform-field-label--type-inline:after {
  transform: translateY(-50%) scale(1);
}
#gform_wrapper_1.gform_wrapper input[type=text],
#gform_wrapper_1.gform_wrapper input[type=email] {
  width: 100%;
  border: 1px solid var(--wp--preset--color--alternative, #ddd);
  font-family: var(--font--body);
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.3px;
  padding-inline: 22px;
  padding-block: 24px;
  background: var(--website-background-color, white);
  border-radius: 0;
  transition: border-color 0.3s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#gform_wrapper_1.gform_wrapper input[type=text]::placeholder,
#gform_wrapper_1.gform_wrapper input[type=email]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
#gform_wrapper_1.gform_wrapper input[type=text]:focus,
#gform_wrapper_1.gform_wrapper input[type=email]:focus {
  outline: none;
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper input[type=text]:hover,
#gform_wrapper_1.gform_wrapper input[type=email]:hover {
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper .ginput_container_name .name_first input {
  margin-block-end: 10px;
}
#gform_wrapper_1.gform_wrapper .ginput_container_name .name_first label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-block: 5px 0;
  color: rgba(0, 0, 0, 0.7);
  text-transform: none;
  letter-spacing: 0.2px;
}
#gform_wrapper_1.gform_wrapper .ginput_container_email label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-block: 10px 0;
  color: rgba(0, 0, 0, 0.7);
}
#gform_wrapper_1.gform_wrapper .gform_page_footer,
#gform_wrapper_1.gform_wrapper .gform-page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem) 0;
  padding-block: 30px 0;
  border-top: 1px solid var(--wp--preset--color--alternative, #ddd);
  gap: 10px;
}
#gform_wrapper_1.gform_wrapper .gform_button,
#gform_wrapper_1.gform_wrapper .gform_next_button,
#gform_wrapper_1.gform_wrapper .gform_previous_button,
#gform_wrapper_1.gform_wrapper .button {
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font--body);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  font-size: clamp(0.813rem, 0.741rem + 0.149vw, 0.875rem);
  padding: 16px 23px 17px;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: clamp(0.041rem, 0.037rem + 0.007vw, 0.044rem);
  font-weight: 500;
  border: 1px solid var(--wp--preset--color--base, #000);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#gform_wrapper_1.gform_wrapper .gform_next_button,
#gform_wrapper_1.gform_wrapper .gform_button:not(.gform_previous_button) {
  color: var(--wp--preset--color--contrast, #fff);
  background-color: var(--wp--preset--color--base, #000);
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper .gform_next_button:hover,
#gform_wrapper_1.gform_wrapper .gform_button:not(.gform_previous_button):hover {
  color: var(--wp--preset--color--base, #000);
  background-color: var(--wp--preset--color--contrast, #fff);
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper .gform_previous_button {
  color: var(--wp--preset--color--base, #000);
  background-color: var(--wp--preset--color--contrast, #fff);
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper .gform_previous_button:hover {
  color: var(--wp--preset--color--contrast, #fff);
  background-color: var(--wp--preset--color--base, #000);
  border-color: var(--wp--preset--color--base, #000);
}
#gform_wrapper_1.gform_wrapper .gfield_error {
  border-color: #c02b0a;
  background-color: rgba(192, 43, 10, 0.05);
}
#gform_wrapper_1.gform_wrapper .gfield_error .gfield_label {
  color: #c02b0a;
}
#gform_wrapper_1.gform_wrapper .gfield_error input,
#gform_wrapper_1.gform_wrapper .gfield_error select,
#gform_wrapper_1.gform_wrapper .gfield_error textarea {
  border-color: #c02b0a;
}
#gform_wrapper_1.gform_wrapper .validation_message,
#gform_wrapper_1.gform_wrapper .gfield_description.validation_message {
  color: #c02b0a;
  font-size: 15px;
  font-weight: 500;
  margin-block: 10px 0;
}
#gform_wrapper_1.gform_wrapper .gform_validation_errors {
  border: 2px solid #c02b0a;
  background-color: rgba(192, 43, 10, 0.05);
  padding: 20px;
  margin-block-end: 30px;
  font-size: 16px;
  color: #c02b0a;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #gform_wrapper_1.gform_wrapper .gform_page_footer,
  #gform_wrapper_1.gform_wrapper .gform-page-footer {
    flex-direction: column;
    gap: 15px;
  }
  #gform_wrapper_1.gform_wrapper .gform_page_footer .gform_button,
  #gform_wrapper_1.gform_wrapper .gform_page_footer .gform_next_button,
  #gform_wrapper_1.gform_wrapper .gform_page_footer .gform_previous_button,
  #gform_wrapper_1.gform_wrapper .gform-page-footer .gform_button,
  #gform_wrapper_1.gform_wrapper .gform-page-footer .gform_next_button,
  #gform_wrapper_1.gform_wrapper .gform-page-footer .gform_previous_button {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #gform_wrapper_1.gform_wrapper .gform-field-label--type-inline {
    font-size: 17px;
    padding-inline: 35px 0;
  }
  #gform_wrapper_1.gform_wrapper .gform-field-label--type-inline:before {
    width: 20px;
    height: 20px;
  }
  #gform_wrapper_1.gform_wrapper .gform-field-label--type-inline:after {
    left: 6px;
    width: 8px;
    height: 8px;
  }
}

/* ===================================
   Results Display Component
   =================================== */
.chronotype-results {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--wp--custom--grid--page-margin);
  padding-block: clamp(3.75rem, 1.6071rem + 4.4643vw, 5.625rem);
  font-family: var(--font--body);
  letter-spacing: var(--is-text--letter-spacing, 0.255px);
}
.chronotype-results__header {
  text-align: center;
  margin-block-end: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
}
.chronotype-results__header h2 {
  font-size: clamp(2rem, 0.5714rem + 2.9762vw, 3.25rem);
  line-height: 110%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  margin-block: 0 20px;
  color: var(--wp--preset--color--base, #000);
}
.chronotype-results__interpretation h3 {
  font-size: clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem);
  text-transform: uppercase;
  margin-block: 0 15px;
  color: var(--wp--preset--color--base, #000);
}
.chronotype-results__scientific-context h3 {
  font-size: clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem);
  text-transform: uppercase;
  margin-block: 0 15px;
  color: var(--wp--preset--color--base, #000);
  padding-top: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
}
.chronotype-results__name {
  font-size: clamp(1.063rem, 0.991rem + 0.149vw, 1.125rem);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.255px;
}
.chronotype-results__score-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 0.7143rem + 2.6786vw, 3.125rem);
  align-items: center;
  padding: clamp(2rem, 1.2857rem + 1.4881vw, 2.5rem);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--wp--preset--color--alternative, #ddd);
  margin-block-end: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
}
.chronotype-results__score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 10vw + 100px, 180px);
  height: clamp(140px, 10vw + 100px, 180px);
  border-radius: 50%;
  border: 3px solid var(--wp--preset--color--base, #000);
  background-color: var(--website-background-color, white);
}
.chronotype-results__icon {
  font-size: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
  margin-block-end: 10px;
}
.chronotype-results__score-value {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
  font-weight: 700;
  color: var(--wp--preset--color--base, #000);
  letter-spacing: 1px;
}
.chronotype-results__classification h3 {
  font-size: clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem);
  text-transform: uppercase;
  margin-block: 0 15px;
  color: var(--wp--preset--color--base, #000);
}
.chronotype-results__sleep-window {
  font-size: 17px;
  font-weight: 600;
  margin-block-end: 15px;
  color: var(--wp--preset--color--base, #000);
  letter-spacing: 0.3px;
}
.chronotype-results__sleep-window strong {
  font-weight: 700;
}
.chronotype-results__description {
  font-size: 17px;
  line-height: 130%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.255px;
  margin: 0;
}
.chronotype-results__recommendations {
  margin-block-end: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
}
.chronotype-results__recommendations h3 {
  font-size: clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem);
  text-transform: uppercase;
  margin-block-end: clamp(1.875rem, 1.1607rem + 1.4881vw, 2.5rem);
  color: var(--wp--preset--color--base, #000);
  text-align: center;
}
.chronotype-results__recommendation-item {
  background-color: var(--website-background-color, white);
  padding: clamp(1.5rem, 1.0714rem + 0.8929vw, 1.875rem);
  border: 1px solid var(--wp--preset--color--alternative, #ddd);
  margin-block-end: clamp(1rem, 0.714rem + 0.595vw, 1.25rem);
  border-left: 4px solid var(--wp--preset--color--base, #000);
  transition: all 0.3s ease-in-out;
}
.chronotype-results__recommendation-item:hover {
  border-color: var(--wp--preset--color--base, #000);
  background: rgba(0, 0, 0, 0.02);
}
.chronotype-results__recommendation-item h4 {
  font-size: clamp(1.063rem, 0.991rem + 0.149vw, 1.125rem);
  font-weight: 600;
  margin-block-end: 12px;
  color: var(--wp--preset--color--base, #000);
  letter-spacing: 0.3px;
}
.chronotype-results__recommendation-item p {
  font-size: 17px;
  line-height: 130%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.255px;
  margin: 0;
}
.chronotype-results__footer {
  text-align: center;
  padding-block: 30px 0;
  border-top: 1px solid var(--wp--preset--color--alternative, #ddd);
  margin-block: 30px 0;
}
.chronotype-results__footer p {
  margin-block-end: 15px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  font-weight: 300;
}
.chronotype-results__email-note {
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.chronotype-results__email-note strong {
  font-weight: 500;
  color: var(--wp--preset--color--base, #000);
}
.chronotype-results__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-block: 30px 0;
  flex-wrap: wrap;
}
.chronotype-results #eq-feedback.eq-card {
  border: 1px solid var(--wp--preset--color--alternative, #ddd);
  background: var(--website-background-color, #fff);
  padding: clamp(1.25rem, 0.8929rem + 0.744vw, 1.563rem);
  margin-block: clamp(2.5rem, 1.7857rem + 1.4881vw, 3.125rem);
}
.chronotype-results #eq-feedback .eq-title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 1.214rem + 0.595vw, 1.75rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: clamp(0.06rem, 0.029rem + 0.065vw, 0.087rem);
  text-transform: uppercase;
  color: var(--wp--preset--color--base, #000);
}
.chronotype-results #eq-feedback .eq-subtitle {
  margin: 0 0 clamp(1rem, 0.714rem + 0.595vw, 1.25rem);
  color: rgba(0, 0, 0, 0.75);
  font-size: 17px;
  line-height: 130%;
}
.chronotype-results #eq-feedback .eq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 0.3929rem + 0.744vw, 1.063rem);
}
.chronotype-results #eq-feedback .eq-panel {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.01);
  padding: clamp(0.875rem, 0.6607rem + 0.446vw, 1.063rem);
}
.chronotype-results #eq-feedback h4 {
  margin: 0 0 10px;
  font-size: clamp(1rem, 0.9286rem + 0.149vw, 1.063rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--wp--preset--color--base, #000);
}
.chronotype-results #eq-feedback .eq-muted {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  line-height: 140%;
}
.chronotype-results #eq-feedback .eq-kicker {
  margin: 10px 0 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.chronotype-results #eq-feedback .eq-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.chronotype-results #eq-feedback .eq-chip {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--website-background-color, #fff);
  padding: 12px;
}
.chronotype-results #eq-feedback .eq-chip-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.68);
  margin-bottom: 6px;
}
.chronotype-results #eq-feedback .eq-chip-value {
  font-size: clamp(1.125rem, 1.0536rem + 0.149vw, 1.188rem);
  font-weight: 700;
}
.chronotype-results #eq-feedback .eq-chip-sub {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.68);
  margin-top: 4px;
  line-height: 140%;
}
.chronotype-results #eq-feedback .eq-list {
  margin: 10px 0 0 18px;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 13px;
  line-height: 145%;
}
.chronotype-results #eq-feedback .eq-meter-track {
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.chronotype-results #eq-feedback .eq-meter-fill {
  height: 10px;
  background: var(--wp--preset--color--base, #000);
  border-radius: 999px;
}
.chronotype-results #eq-feedback .eq-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.62);
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .chronotype-results__score-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(1.5rem, 1.0714rem + 0.8929vw, 1.875rem);
  }
  .chronotype-results__score-badge {
    margin-inline: auto;
  }
  .chronotype-results__actions {
    flex-direction: column;
    width: 100%;
  }
  .chronotype-results #eq-feedback .eq-grid {
    grid-template-columns: 1fr;
  }
  .chronotype-results #eq-feedback .eq-row {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Action Buttons
   =================================== */
.chronotype-button {
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font--body);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  font-size: clamp(0.813rem, 0.741rem + 0.149vw, 0.875rem);
  padding: 16px 23px 17px;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: clamp(0.041rem, 0.037rem + 0.007vw, 0.044rem);
  font-weight: 500;
  border: 1px solid var(--wp--preset--color--base, #000);
}
.chronotype-button--primary {
  color: var(--wp--preset--color--contrast, #fff);
  background-color: var(--wp--preset--color--base, #000);
  border-color: var(--wp--preset--color--base, #000);
}
.chronotype-button--primary:hover {
  color: var(--wp--preset--color--base, #000);
  background-color: var(--wp--preset--color--contrast, #fff);
  border-color: var(--wp--preset--color--base, #000);
}
.chronotype-button--secondary {
  color: var(--wp--preset--color--base, #000);
  background-color: var(--wp--preset--color--contrast, #fff);
  border-color: var(--wp--preset--color--base, #000);
}
.chronotype-button--secondary:hover {
  color: var(--wp--preset--color--contrast, #fff);
  background-color: var(--wp--preset--color--base, #000);
  border-color: var(--wp--preset--color--base, #000);
}
@media screen and (max-width: 768px) {
  .chronotype-button {
    width: 100%;
  }
}

/* ===================================
   Error State
   =================================== */
.chronotype-error {
  padding: clamp(1.5rem, 1.0714rem + 0.8929vw, 1.875rem);
  background-color: rgba(192, 43, 10, 0.05);
  border: 2px solid #c02b0a;
  color: #c02b0a;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  margin-block: 30px;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  .chronotype-results__actions,
  #gform_wrapper_1,
  .site-header,
  .site-footer {
    display: none !important;
  }
  .chronotype-results {
    max-width: 100%;
  }
  .chronotype-results__score-section, .chronotype-results__recommendation-item {
    border: 1px solid #000;
    page-break-inside: avoid;
  }
}
/*# sourceMappingURL=equinox-twentyfive.css.map */
