@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/eb-garamond-latin.woff2") format("woff2");
}

:root {
  --corporate-cream: #f6f1e4;
  --corporate-ink: #12100b;
  --corporate-brown: #6f2f0d;
  --corporate-white: #fff;
  --corporate-font: "EB Garamond", Georgia, serif;
  --corporate-container: 1240px;
}

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

html {
  background: var(--corporate-cream);
}

body.corporate-page {
  margin: 0;
  min-width: 320px;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--corporate-cream);
  color: var(--corporate-ink);
  font-family: var(--corporate-font);
  text-rendering: optimizeLegibility;
}

body.corporate-page.is-menu-open {
  overflow: hidden;
}

.corporate-site-shell {
  position: relative;
  width: min(100%, 1600px);
  height: 100vh;
  height: 100svh;
  margin-inline: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: var(--corporate-cream);
}

#corporate-story,
#corporate-retreats,
#amenities,
#directions,
#corporate-experiences,
#gallery,
#testimonials {
  scroll-margin-top: 93px;
}

.corporate-page.is-menu-open .corporate-site-shell {
  overflow: hidden;
}

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

.corporate-page button,
.corporate-page a {
  font: inherit;
}

.corporate-skip-link {
  position: fixed;
  top: 12px;
  left: max(12px, calc((100vw - 1600px) / 2 + 12px));
  z-index: 3000;
  padding: 8px 13px;
  color: var(--corporate-white);
  background: var(--corporate-ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.corporate-skip-link:focus {
  transform: translateY(0);
}

.corporate-container {
  width: min(var(--corporate-container), calc(100% - 48px));
  margin-inline: auto;
}

.corporate-section-container {
  width: 100%;
  max-width: var(--corporate-container);
  margin-inline: auto;
}

.corporate-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1000;
  height: 117px;
  color: var(--corporate-white);
}

.corporate-header__inner {
  position: relative;
  height: 100%;
}

.corporate-header.is-scrolled {
  position: fixed;
  top: 0;
  right: max(0px, calc((100vw - 1600px) / 2));
  left: max(0px, calc((100vw - 1600px) / 2));
  height: 93px;
  color: var(--corporate-brown);
  background: var(--corporate-cream);
  box-shadow: none;
}

.corporate-header.is-scrolled::after {
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  height: 14px;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.08), transparent);
  content: "";
  pointer-events: none;
}

.corporate-header.is-scrolled .corporate-menu-button {
  top: 25px;
}

.corporate-header.is-scrolled .corporate-menu-button span {
  background: var(--corporate-brown);
}

.corporate-header.is-scrolled .corporate-logo {
  top: 20px;
}

.corporate-header.is-scrolled .corporate-contact-button {
  top: 19px;
  border-color: var(--corporate-brown);
  color: var(--corporate-brown);
}

.corporate-header.is-scrolled .corporate-contact-button:hover,
.corporate-header.is-scrolled .corporate-contact-button:focus-visible {
  color: var(--corporate-white);
  background: var(--corporate-brown);
}

.corporate-menu-button {
  position: absolute;
  top: 37px;
  left: 0;
  width: 52px;
  height: 43px;
  margin: 0;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.corporate-menu-button span {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--corporate-white);
}

.corporate-menu-button span + span {
  margin-top: 10px;
}

.corporate-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 156px;
  transform: translateX(-50%);
}

.corporate-logo img {
  width: 120px;
  height: 56px;
  object-fit: contain;
}

.corporate-contact-button {
  position: absolute;
  top: 29px;
  right: 0;
  display: grid;
  width: 157px;
  height: 59px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.8);
  color: var(--corporate-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.corporate-contact-button:hover,
.corporate-contact-button:focus-visible {
  color: var(--corporate-ink);
  background: var(--corporate-white);
  outline: none;
}

.corporate-contact-icon {
  display: none;
}

.corporate-menu {
  position: fixed;
  top: 0;
  right: max(0px, calc((100vw - 1600px) / 2));
  bottom: 0;
  left: max(0px, calc((100vw - 1600px) / 2));
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.corporate-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.corporate-menu__panel {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: min(435px, calc(100vw - 20px));
  min-height: 100%;
  flex-direction: column;
  overflow-y: auto;
  padding: 36px 24px 30px;
  color: var(--corporate-ink);
  background: var(--corporate-cream);
  transform: translateX(calc(-100% - 15px));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.corporate-menu.is-open .corporate-menu__panel {
  transform: translateX(0);
}

.corporate-menu__top {
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  justify-content: space-between;
}

.corporate-menu__branch {
  width: 92px;
  height: 46px;
  object-fit: contain;
}

.corporate-menu__close {
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.corporate-menu__close img {
  width: 42px;
  height: 42px;
}

.corporate-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
}

.corporate-menu__nav a {
  color: var(--corporate-ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.corporate-menu__nav a::after {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.corporate-menu__nav a:hover::after,
.corporate-menu__nav a:focus-visible::after {
  transform: scaleX(1);
}

.corporate-menu__contact {
  margin-top: auto;
  padding-top: 36px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4px;
}

.corporate-menu__divider {
  height: 1px;
  margin-bottom: 20px;
  background: #bababa;
}

.corporate-menu__contact p {
  margin: 0 0 12px;
}

.corporate-menu__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.corporate-menu__contact a {
  color: var(--corporate-ink);
  text-underline-offset: 2px;
}

.corporate-menu__email {
  display: inline-block;
  margin-top: 16px;
}

.corporate-menu__socials {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.corporate-menu__socials a,
.corporate-menu__socials img {
  width: 32px;
  height: 32px;
}

.corporate-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
  background: #4c4438;
}

.corporate-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.corporate-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0.06) 0%, transparent 45%, rgb(0 0 0 / 0.2) 100%),
    rgb(17 12 7 / 0.08);
  pointer-events: none;
}

.corporate-hero__content {
  position: absolute;
  top: 42%;
  right: 0;
  left: 0;
  z-index: 1;
}

.corporate-hero h1 {
  width: 100%;
  max-width: 930px;
  margin: 0;
  color: var(--corporate-white);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-hero__line {
  width: 100%;
  height: 1px;
  margin-top: 35px;
  background: rgb(255 255 255 / 0.38);
}

.corporate-hero__note {
  width: 368px;
  min-height: 111px;
  margin: 52px 0 0 auto;
  padding: 20px 24px;
  color: var(--corporate-white);
  background: linear-gradient(97.33deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 101.32%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.corporate-hero__arrow {
  position: absolute;
  bottom: 57px;
  left: 50%;
  z-index: 1;
  width: 91px;
  height: 94px;
  transform: translateX(-50%);
}

.corporate-hero__arrow img {
  width: 91px;
  height: 90px;
  animation: corporate-arrow-bounce 2s ease-in-out infinite;
}

@keyframes corporate-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.corporate-as-seen__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 120px;
}

.corporate-as-seen h2,
.corporate-story h2 {
  margin: 0;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.corporate-as-seen__logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}

.corporate-as-seen__logos img:nth-child(1) {
  width: 155px;
}

.corporate-as-seen__logos img:nth-child(2) {
  width: 158px;
}

.corporate-as-seen__logos img:nth-child(3) {
  width: 165px;
}

.corporate-as-seen__logos img:nth-child(4) {
  width: 190px;
}

.corporate-story {
  --corporate-story-duration: 3000ms;
  overflow: hidden;
}

.corporate-story__layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate-story__card-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.corporate-story__card {
  display: flex;
  width: 500px;
  height: 502px;
  padding-inline: 24px;
  align-items: center;
  background-color: #f6f1e5;
  background-image: url("../assets/images/corporate-story-texture.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: auto;
}

.corporate-story__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.corporate-story__branches {
  width: 100px;
  height: 49px;
  object-fit: contain;
}

.corporate-story__copy p {
  margin: 0;
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4px;
  text-align: center;
}

.corporate-page .corporate-outline-button {
  display: block;
  width: max-content;
  padding: 20px;
  border: 1px solid var(--corporate-ink);
  color: var(--corporate-ink);
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.corporate-page .corporate-outline-button:hover,
.corporate-page .corporate-outline-button:focus-visible {
  color: var(--corporate-white);
  background: var(--corporate-ink);
  outline: none;
}

.corporate-story__slider {
  position: relative;
  width: 70%;
  max-height: 100vh;
  max-height: 65svh;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.corporate-story__slides,
.corporate-story__slide,
.corporate-story__slide img {
  width: 100%;
  height: 100%;
}

.corporate-story__slides {
  position: relative;
}

.corporate-story__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 650ms ease;
  pointer-events: none;
}

.corporate-story__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.corporate-story__slide img {
  object-fit: cover;
  object-position: center;
}

.corporate-story__pagination {
  position: absolute;
  right: 14px;
  bottom: 48px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.corporate-story__progress {
  position: relative;
  width: 32%;
  height: 4px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #a5a5a5;
  cursor: pointer;
}

.corporate-story__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--corporate-white);
}

.corporate-story__progress.is-active span {
  animation: corporate-story-progress var(--corporate-story-duration) ease-in forwards;
}

.corporate-story__progress:focus-visible {
  outline: 2px solid var(--corporate-white);
  outline-offset: 4px;
}

@keyframes corporate-story-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.corporate-retreats {
  --corporate-cottage-duration: 3000ms;
  padding-block: 100px;
  overflow: hidden;
}

.corporate-retreats__header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
}

.corporate-retreats h2 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-retreats__controls {
  display: flex;
  align-items: center;
  gap: 26px;
}

.corporate-retreats__control {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 1px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.corporate-retreats__control img {
  width: 42px;
  height: 42px;
}

.corporate-retreats__control:disabled {
  opacity: 0.35;
  cursor: default;
}

.corporate-retreats__control:focus-visible,
.corporate-cottage__progress:focus-visible {
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-retreats__viewport {
  margin-top: 44px;
  overflow: visible;
}

.corporate-retreats__track {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transition: transform 800ms ease;
  will-change: transform;
}

.corporate-cottage {
  flex: 0 0 calc(95.2381% - 1.524px);
  min-width: 0;
  opacity: 0.4;
  transition: opacity 500ms ease;
}

.corporate-cottage.is-active {
  opacity: 1;
}

.corporate-cottage__gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1179 / 517;
}

.corporate-cottage__images,
.corporate-cottage__image {
  width: 100%;
  height: 100%;
}

.corporate-cottage__images {
  position: relative;
}

.corporate-cottage__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.corporate-cottage__image.is-active {
  z-index: 1;
  opacity: 1;
}

.corporate-cottage__pagination {
  position: absolute;
  right: 12px;
  bottom: 26px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.corporate-cottage__progress {
  position: relative;
  flex: 1;
  height: 4px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #a5a5a5;
  cursor: pointer;
}

.corporate-cottage__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--corporate-white);
}

.corporate-cottage__progress.is-active span {
  animation: corporate-cottage-progress var(--corporate-cottage-duration) ease-in forwards;
}

@keyframes corporate-cottage-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.corporate-cottage__content {
  display: flex;
  min-height: 187px;
  align-items: center;
  justify-content: space-between;
}

.corporate-cottage__copy {
  display: flex;
  width: 450px;
  max-width: 45%;
  flex-direction: column;
  gap: 12px;
}

.corporate-cottage__copy h3 {
  margin: 0;
  padding: 10px 12px 18px 0;
  border-bottom: 1px solid #999;
  color: var(--corporate-ink);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-cottage__copy p {
  margin: 0;
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.corporate-cottage__icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.corporate-cottage__icons img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.corporate-cottage__content > .corporate-outline-button {
  flex: none;
}

.corporate-experiences {
  --corporate-experience-duration: 3000ms;
  padding-block: 100px;
  overflow: hidden;
  background: var(--corporate-cream);
}

.corporate-experiences__inner {
  position: relative;
}

.corporate-experiences__header {
  position: relative;
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
}

.corporate-experiences h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-experiences__controls {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  flex: none;
  align-items: center;
  gap: 2px;
  transform: translateY(-50%);
}

.corporate-experiences__control {
  position: relative;
  display: flex;
  width: 68px;
  height: 44px;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 1px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.corporate-experiences__control img {
  width: 42px;
  height: 42px;
  flex: none;
}

.corporate-experiences__control:disabled {
  cursor: default;
}

.corporate-experiences__control:focus-visible,
.corporate-experiences__viewport:focus-visible {
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-experiences__viewport {
  margin-top: 68px;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}

.corporate-experiences__viewport.is-dragging {
  cursor: grabbing;
}

.corporate-experiences__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  transition: transform 600ms ease;
  will-change: transform;
}

.corporate-experiences__viewport.is-dragging .corporate-experiences__track {
  transition: none;
}

.corporate-experience {
  position: relative;
  flex: 0 0 calc(28.5714286% - 17.142857px);
  aspect-ratio: 337.14 / 396;
  overflow: hidden;
}

.corporate-experience > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.corporate-experience__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: var(--corporate-white);
}

.corporate-experience__copy h3 {
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-experience__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
}

.corporate-experience__details p {
  margin: 0;
  padding: 12px 0 5px;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
}

.corporate-experience:hover .corporate-experience__details,
.corporate-experience:focus-within .corporate-experience__details {
  max-height: 200px;
  opacity: 0.8;
}

.corporate-experiences__cta {
  margin: 68px auto 0;
}

.corporate-amenities {
  --corporate-amenities-duration: 3000ms;
  overflow: hidden;
}

.corporate-amenities__inner {
  padding-block: 100px;
}

.corporate-amenities__heading,
.corporate-amenities__slider {
  width: 90%;
  margin-inline: auto;
}

.corporate-amenities__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.corporate-amenities__heading h2 {
  margin: 0;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-amenities__heading p {
  width: 475px;
  max-width: 100%;
  margin: 0;
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.corporate-amenities__slider {
  position: relative;
  padding-top: 44px;
}

.corporate-amenities__viewport {
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}

.corporate-amenities__viewport.is-dragging {
  cursor: grabbing;
}

.corporate-amenities__track {
  display: flex;
  align-items: flex-start;
  transition: transform 600ms ease;
  will-change: transform;
}

.corporate-amenities__viewport.is-dragging .corporate-amenities__track {
  transition: none;
}

.corporate-amenity {
  display: flex;
  min-width: 100%;
  flex: 0 0 100%;
  flex-direction: column;
  justify-content: center;
  transition: opacity 500ms ease, transform 500ms ease;
  transform-origin: center;
}

.corporate-amenity:not(.is-active) {
  opacity: 0.7;
  transform: scale(0.9);
}

.corporate-amenity img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.corporate-amenity p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin: 0;
  padding-top: 24px;
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}

.corporate-amenity.is-active p {
  opacity: 1;
}

.corporate-amenities__controls {
  position: absolute;
  right: 0;
  bottom: -30px;
  display: flex;
  align-items: center;
  gap: 26px;
  z-index: 2;
}

.corporate-amenities__controls button {
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 1px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.corporate-amenities__controls img {
  width: 42px;
  height: 42px;
}

.corporate-amenities__controls button:focus-visible,
.corporate-amenities__viewport:focus-visible {
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-features {
  padding: 48px;
  background: rgb(142 92 48);
}

.corporate-features__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.corporate-feature {
  display: flex;
  width: 156px;
  max-width: 156px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.corporate-feature img {
  width: 42px;
  height: 42px;
}

.corporate-feature h2 {
  margin: 0;
  color: rgb(220 220 220);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.corporate-testimonials {
  position: relative;
  padding-block: 100px;
  overflow: hidden;
}

.corporate-testimonials__inner {
  position: relative;
}

.corporate-testimonials h2 {
  width: 664px;
  max-width: 100%;
  margin: 0;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-testimonials__viewport {
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}

.corporate-testimonials__viewport.is-dragging {
  cursor: grabbing;
}

.corporate-testimonials__track {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-top: 68px;
  transition: transform 600ms ease;
  will-change: transform;
}

.corporate-testimonials__viewport.is-dragging .corporate-testimonials__track {
  transition: none;
}

.corporate-testimonial {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - 72px) / 2.5);
  flex-direction: column;
  gap: 16px;
}

.corporate-testimonial__head {
  display: flex;
  min-height: 35px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.corporate-testimonial__person {
  min-width: 0;
}

.corporate-testimonial__person h3,
.corporate-testimonial__person p,
.corporate-testimonial__quote {
  margin: 0;
}

.corporate-testimonial__person h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.corporate-testimonial__person p {
  color: #626262;
  font-size: 14px;
  line-height: 1;
}

.corporate-testimonial__stars {
  display: flex;
  width: 125px;
  flex: 0 0 125px;
  align-items: center;
}

.corporate-testimonial__stars img {
  width: 25px;
  height: 24px;
}

.corporate-testimonial__quote {
  display: -webkit-box;
  overflow: hidden;
  color: var(--corporate-ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.corporate-testimonial__quote.is-open {
  display: block;
  overflow: visible;
  -webkit-line-clamp: initial;
}

.corporate-page .corporate-testimonial__toggle {
  width: max-content;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--corporate-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.corporate-testimonials__controls {
  position: absolute;
  top: 50px;
  right: 0;
  display: flex;
  gap: 4px;
}

.corporate-testimonials__control {
  position: relative;
  width: 66px;
  height: 44px;
  margin: 0;
  padding: 1px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.corporate-testimonials__control img {
  width: 42px;
  height: 42px;
  margin-inline: auto;
}

.corporate-testimonials__control:disabled {
  cursor: default;
  opacity: 0.35;
}

.corporate-testimonials__control:focus-visible,
.corporate-testimonials__viewport:focus-visible,
.corporate-testimonial__toggle:focus-visible {
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-directions {
  position: relative;
  z-index: 0;
  padding-block: 100px;
  clip-path: inset(0 -100vmax);
}

.corporate-directions h2 {
  margin: 0 0 35px;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}

.corporate-directions__layout {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 595px);
  gap: 45px;
}

.corporate-directions__map {
  height: 454px;
}

.corporate-directions__map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.corporate-directions__details {
  position: relative;
  z-index: 0;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 32px;
}

.corporate-directions__details::before {
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: -1;
  width: 100%;
  height: 454px;
  background: url("../assets/images/corporate-directions-tree.png") right bottom / contain no-repeat;
  content: "";
  pointer-events: none;
}

.corporate-directions__intro,
.corporate-directions__distance p {
  margin: 0;
  color: var(--corporate-ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.corporate-directions__distance ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-directions__distance li {
  color: var(--corporate-ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.corporate-directions__distance h3 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4px;
}

.corporate-directions__mode {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.corporate-directions__mode img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.corporate-directions__mode h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4px;
}

.corporate-kitchen,
.corporate-itinerary {
  position: relative;
  padding-block: 100px;
  clip-path: inset(0 -100vmax);
}

.corporate-kitchen__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
}

.corporate-kitchen__copy {
  display: flex;
  max-width: 436px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.corporate-kitchen h2,
.corporate-kitchen__copy p,
.corporate-itinerary h2,
.corporate-itinerary__header p,
.corporate-itinerary__content h3,
.corporate-itinerary__content ul {
  margin: 0;
}

.corporate-kitchen h2 {
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-kitchen__copy p {
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.corporate-kitchen__gallery {
  max-height: 600px;
  overflow: auto;
  scrollbar-width: none;
}

.corporate-kitchen__gallery::-webkit-scrollbar {
  display: none;
}

.corporate-kitchen__gallery-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.corporate-kitchen__gallery-wide {
  display: grid;
  grid-template-columns: 1fr;
}

.corporate-kitchen__gallery-pair {
  display: grid;
  width: min(718px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-inline: auto;
}

.corporate-kitchen__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate-kitchen__gallery-pair img {
  object-fit: contain;
}

.corporate-kitchen__mobile-cta {
  display: none !important;
}

.corporate-kitchen__gallery:focus-visible,
.corporate-itinerary__viewport:focus-visible,
.corporate-itinerary__card:focus-visible {
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-itinerary__header {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  justify-content: space-between;
}

.corporate-itinerary h2 {
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-itinerary__header p {
  width: 100%;
  max-width: 475px;
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4px;
}

.corporate-itinerary__viewport {
  overflow: hidden;
  padding-top: 44px;
  touch-action: pan-y;
  cursor: grab;
}

.corporate-itinerary__viewport.is-dragging {
  cursor: grabbing;
}

.corporate-itinerary__track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: transform 600ms ease;
  will-change: transform;
}

.corporate-itinerary__viewport.is-dragging .corporate-itinerary__track {
  transition: none;
}

.corporate-itinerary__card {
  position: relative;
  min-width: 0;
  flex: 0 0 calc((100% - 48px) / 3);
  padding-bottom: 4px;
  overflow: hidden;
}

.corporate-itinerary__card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 0.7843;
  object-fit: cover;
}

.corporate-itinerary__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: var(--corporate-white);
  background: linear-gradient(97.33deg, rgb(255 255 255 / 0.15) 0%, rgb(255 255 255 / 0.05) 101.32%);
  backdrop-filter: blur(4px);
}

.corporate-itinerary__content h3 {
  color: var(--corporate-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.corporate-itinerary__content ul {
  max-height: 0;
  padding: 12px 0 0 20px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
}

.corporate-itinerary__content li {
  color: var(--corporate-white);
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.4px;
}

.corporate-itinerary__card:hover .corporate-itinerary__content ul,
.corporate-itinerary__card:focus .corporate-itinerary__content ul,
.corporate-itinerary__card.is-expanded .corporate-itinerary__content ul {
  max-height: 200px;
  opacity: 1;
}

.corporate-itinerary__cta {
  display: flex;
  justify-content: center;
  padding-top: 44px;
}

.corporate-gallery {
  padding: 100px 0 150px;
  overflow: hidden;
  background: rgb(249 229 209);
}

.corporate-gallery h2 {
  margin: 0;
  color: var(--corporate-ink);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-gallery__slider-wrap {
  position: relative;
  padding-top: 44px;
}

.corporate-gallery__viewport {
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
}

.corporate-gallery__viewport.is-dragging {
  cursor: grabbing;
}

.corporate-gallery__track {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 600ms ease;
  will-change: transform;
}

.corporate-gallery__viewport.is-dragging .corporate-gallery__track {
  transition: none;
}

.corporate-gallery__slide {
  display: flex;
  height: auto;
  max-height: 515px;
  flex: 0 0 calc((100% - 6px) / 1.4);
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.3637;
  margin: 0;
  overflow: hidden;
}

.corporate-gallery__slide img {
  width: 100%;
  height: 100%;
  max-height: 490px;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(0.94);
  transform-origin: bottom;
  transition: opacity 500ms ease, transform 500ms ease, max-height 500ms ease;
}

.corporate-gallery__slide.is-active img {
  max-height: 515px;
  opacity: 1;
  transform: scale(1);
}

.corporate-gallery__control {
  position: absolute;
  bottom: -70px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.corporate-gallery__control img {
  width: 42px;
  height: 42px;
}

.corporate-gallery__control--previous {
  left: 0;
}

.corporate-gallery__control--next {
  right: 0;
}

.corporate-gallery__control:disabled {
  opacity: 0.35;
  cursor: default;
}

.corporate-gallery__viewport:focus-visible,
.corporate-gallery__control:focus-visible {
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-contact {
  scroll-margin-top: 93px;
  padding-top: 100px;
  background:
    linear-gradient(to bottom, transparent 65%, var(--corporate-white) 60%),
    url("../assets/images/corporate-contact-tiger.webp") center / cover no-repeat;
}

.corporate-contact__heading {
  display: flex;
  max-width: 716px;
  margin-inline: auto;
  padding-bottom: 60px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.corporate-contact__heading h2 {
  margin: 0;
  color: var(--corporate-white);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.corporate-contact__heading img {
  width: 92px;
  height: 46px;
  object-fit: contain;
}

.corporate-contact__form {
  display: flex;
  width: 874px;
  max-width: 100%;
  margin-inline: auto;
  padding: 48px 129px;
  border: 1px solid #eee;
  flex-direction: column;
  gap: 32px;
  background: #f8f4ed;
}

.corporate-contact__row {
  display: flex;
  gap: 24px;
}

.corporate-contact__field {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.corporate-contact__field label {
  margin-bottom: 15px;
  color: var(--corporate-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.corporate-contact__field input,
.corporate-contact__field select,
.corporate-contact__field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #999;
  border-radius: 0;
  color: #626262;
  background: transparent;
  font-family: var(--corporate-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
}

.corporate-contact__field input {
  height: 45px;
}

.corporate-contact__field select {
  height: 47px;
}

.corporate-contact__field input[type="date"] {
  height: 49px;
}

.corporate-contact__field input:focus,
.corporate-contact__field select:focus,
.corporate-contact__field textarea:focus {
  border-color: var(--corporate-ink);
  outline: none;
}

.corporate-contact__field textarea {
  min-height: 80px;
  resize: vertical;
}

.corporate-contact__field [aria-invalid="true"] {
  border-color: #9e2f20;
}

.corporate-contact__field-error,
.corporate-contact__status {
  margin: 8px 0 0;
  color: #9e2f20;
  font-size: 13px;
  line-height: 1.4;
}

.corporate-contact__status {
  text-align: center;
}

.corporate-contact__status.is-success {
  color: #315c35;
}

.corporate-page .corporate-contact__submit {
  width: 100%;
  padding: 12px 24px;
  border: 0;
  color: var(--corporate-white);
  background: #6a310c;
  font-family: Arial, sans-serif;
  font-size: 13.3333px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 500ms ease;
}

.corporate-page .corporate-contact__submit:hover,
.corporate-page .corporate-contact__submit:focus-visible {
  background: var(--corporate-ink);
  outline: none;
}

.corporate-page .corporate-contact__submit:disabled {
  background: #6a310c;
  cursor: wait;
  opacity: 0.65;
}

.corporate-footer {
  padding: 44px 0;
}

.corporate-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.corporate-footer__socials {
  display: flex;
  gap: 24px;
}

.corporate-footer__socials a,
.corporate-footer__socials img {
  width: 32px;
  height: 32px;
}

.corporate-footer__socials a:focus-visible {
  border-radius: 50%;
  outline: 2px solid var(--corporate-brown);
  outline-offset: 4px;
}

.corporate-footer__line {
  width: 100%;
  height: 1px;
  background: #bababa;
}

.corporate-footer__logo,
.corporate-footer__logo img {
  width: 120px;
  height: 56px;
}

.corporate-footer__copyright {
  margin: -15px 0 0;
  color: var(--corporate-ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1300px) {
  .corporate-section-container {
    width: 90%;
  }
}

@media (max-width: 1240px) {
  .corporate-section-container {
    width: 92%;
  }

  .corporate-story__card {
    max-width: 45%;
  }

  .corporate-retreats h2 {
    font-size: 34px;
  }
}

@media (max-width: 1100px) {
  .corporate-hero h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(36px, 3.6vw, 40px);
  }

  .corporate-hero__line {
    margin-top: 42px;
  }

  .corporate-hero__note {
    margin-top: 54px;
  }
}

@media (max-width: 1024px) {
  .corporate-testimonials,
  .corporate-directions,
  .corporate-kitchen,
  .corporate-itinerary {
    padding-block: 75px;
  }

  .corporate-kitchen h2 {
    font-size: 34px;
  }

  .corporate-kitchen__copy p,
  .corporate-itinerary__header p,
  .corporate-itinerary__content li {
    font-size: 14px;
  }

  .corporate-kitchen__gallery {
    max-height: 475px;
  }

  .corporate-itinerary h2 {
    font-size: 28px;
  }

  .corporate-itinerary__header p {
    max-width: 385px;
  }

  .corporate-gallery {
    padding: 75px 0;
  }

  .corporate-gallery h2 {
    font-size: 34px;
  }

  .corporate-contact__heading h2 {
    font-size: 28px;
  }

  .corporate-contact__form {
    padding: 48px 80px;
  }

  .corporate-contact__field label {
    font-size: 14px;
  }

  .corporate-contact__field input {
    height: 44px;
  }

  .corporate-contact__field select {
    height: 46px;
  }

  .corporate-contact__field input[type="date"] {
    height: 48px;
  }

  .corporate-testimonials h2 {
    font-size: 28px;
  }

  .corporate-testimonial {
    flex-basis: calc((100% - 24px) / 1.5);
  }

  .corporate-testimonial__person h3 {
    font-size: 14px;
  }

  .corporate-testimonial__head {
    min-height: 31px;
  }

  .corporate-testimonial__person p,
  .corporate-page .corporate-testimonial__toggle {
    font-size: 13px;
  }

  .corporate-testimonial__quote,
  .corporate-directions__intro,
  .corporate-directions__distance p,
  .corporate-directions__distance li {
    font-size: 14px;
  }

  .corporate-directions h2 {
    font-size: 34px;
  }

  .corporate-directions__distance h3 {
    font-size: 32px;
  }

  .corporate-directions__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-directions__mode h4 {
    font-size: 16px;
  }

  .corporate-as-seen__inner {
    padding-block: 95px;
  }

  .corporate-as-seen h2,
  .corporate-story h2 {
    font-size: 34px;
  }

  .corporate-as-seen__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .corporate-as-seen__logos img {
    width: 100% !important;
    height: auto;
    object-fit: cover;
  }

  .corporate-story__card {
    height: max-content;
    padding: 60px 24px;
  }

  .corporate-story__progress {
    width: 30%;
  }

  .corporate-retreats {
    padding-block: 75px;
  }

  .corporate-experiences {
    padding-block: 75px;
  }

  .corporate-experiences h2 {
    font-size: 34px;
  }

  .corporate-amenities__inner {
    padding-block: 75px;
  }

  .corporate-amenities__heading h2 {
    font-size: 28px;
  }

  .corporate-amenities__heading p {
    width: 385px;
    font-size: 14px;
  }

  .corporate-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .corporate-feature {
    width: 100%;
    max-width: 156px;
    justify-self: center;
  }

  .corporate-feature h2 {
    font-size: 14px;
  }

  .corporate-retreats h2 {
    font-size: 28px;
  }

  .corporate-retreats__header {
    min-height: 42px;
  }

  .corporate-retreats__control {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .corporate-cottage {
    flex-basis: 100%;
  }

  .corporate-cottage__gallery {
    aspect-ratio: 12 / 5;
  }

  .corporate-cottage__content {
    min-height: 173px;
  }

  .corporate-cottage__copy {
    width: 450px;
    max-width: 62.5%;
  }

  .corporate-cottage__copy h3 {
    padding: 22px 12px 12px 0;
    font-size: 24px;
    line-height: 31px;
  }

  .corporate-cottage__copy p {
    font-size: 14px;
  }

  .corporate-experience {
    flex-basis: calc(28.5714286% - 17.142857px);
  }

  .corporate-experience__copy h3 {
    font-size: 18px;
  }

  .corporate-experience__details p {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .corporate-gallery__slide {
    flex-basis: 100%;
  }
}

@media (max-width: 900px) {
  .corporate-story__card {
    height: max-content;
    padding: 24px;
  }

  .corporate-story__copy {
    gap: 25px;
  }
}

@media (max-width: 850px) {
  .corporate-contact__form {
    padding: 48px 60px;
  }
}

@media (min-width: 768px) and (max-width: 1287px) {
  .corporate-container {
    width: 92%;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .corporate-hero h1 {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .corporate-testimonials,
  .corporate-directions,
  .corporate-kitchen,
  .corporate-itinerary {
    padding-block: 56px;
  }

  .corporate-kitchen__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .corporate-kitchen__copy {
    max-width: 100%;
  }

  .corporate-kitchen h2,
  .corporate-itinerary h2 {
    font-size: 24px;
  }

  .corporate-kitchen__copy p,
  .corporate-itinerary__header p,
  .corporate-itinerary__content li {
    font-size: 13px;
  }

  .corporate-kitchen__gallery {
    max-width: 100%;
    max-height: 350px;
    overflow: auto;
    overflow-y: hidden;
  }

  .corporate-kitchen__gallery-rail {
    width: max-content;
    max-height: 350px;
    flex-direction: row;
    overflow: auto hidden;
  }

  .corporate-kitchen__gallery-wide,
  .corporate-kitchen__gallery-pair {
    width: 718px;
    flex: 0 0 718px;
  }

  .corporate-kitchen__gallery-wide img {
    width: 718px;
    height: 440px;
  }

  .corporate-kitchen__gallery-pair {
    display: flex;
    max-width: none;
  }

  .corporate-kitchen__gallery-pair img {
    width: 347px;
    height: 351px;
    flex: 0 0 347px;
  }

  .corporate-kitchen__desktop-cta {
    display: none !important;
  }

  .corporate-kitchen__mobile-cta {
    display: block !important;
    margin-inline: auto;
  }

  .corporate-itinerary__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .corporate-itinerary h2 {
    line-height: 1.5;
    text-align: center;
  }

  .corporate-itinerary__header p {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .corporate-itinerary__card {
    flex-basis: 100%;
  }

  .corporate-gallery {
    padding: 56px 0;
  }

  .corporate-gallery h2 {
    font-size: 24px;
    text-align: center;
  }

  .corporate-gallery__slider-wrap {
    padding-bottom: 6.25px;
  }

  .corporate-gallery__slide {
    flex-basis: 100%;
  }

  .corporate-gallery__control {
    display: none;
  }

  .corporate-contact__heading h2 {
    font-size: 24px;
  }

  .corporate-testimonials h2 {
    width: 100%;
    max-width: none;
    font-size: 24px;
    line-height: 1.5;
  }

  .corporate-testimonials__track {
    padding-top: 68px;
  }

  .corporate-testimonial {
    flex-basis: calc((100% - 4.8px) / 1.1);
  }

  .corporate-testimonial__head {
    min-height: 30px;
  }

  .corporate-testimonial__person h3,
  .corporate-testimonial__person p,
  .corporate-testimonial__quote,
  .corporate-page .corporate-testimonial__toggle {
    font-size: 13px;
  }

  .corporate-testimonial__quote {
    line-height: 1.5;
  }

  .corporate-testimonials__controls {
    display: none;
  }

  .corporate-directions h2 {
    margin-bottom: 35px;
    font-size: 24px;
    text-align: center;
  }

  .corporate-directions__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .corporate-directions__details::before {
    bottom: -50px;
    height: 240px;
  }

  .corporate-directions__intro,
  .corporate-directions__distance p,
  .corporate-directions__distance li {
    font-size: 13px;
  }

  .corporate-directions__distance h3 {
    font-size: 24px;
  }

  .corporate-container {
    width: calc(100% - 32px);
  }

  .corporate-header {
    height: 100px;
  }

  .corporate-header.is-scrolled {
    height: 93px;
  }

  .corporate-menu-button {
    top: 35px;
    left: -10px;
  }

  .corporate-logo {
    top: 18px;
    width: 156px;
  }

  .corporate-logo img {
    width: 156px;
    height: 73px;
  }

  .corporate-contact-button {
    display: none;
  }

  .corporate-contact-icon {
    position: absolute;
    top: 36px;
    right: 0;
    display: block;
    width: 30px;
    height: 30px;
  }

  .corporate-contact-icon img {
    width: 100%;
    height: 100%;
  }

  .corporate-header.is-scrolled .corporate-menu-button {
    top: 25px;
  }

  .corporate-header.is-scrolled .corporate-contact-icon {
    top: 31px;
  }

  .corporate-menu__panel {
    width: calc(100vw - 20px);
    padding-inline: 24px;
  }

  .corporate-hero {
    min-height: 620px;
  }

  .corporate-hero__video {
    object-position: center;
  }

  .corporate-hero__content {
    top: 43%;
  }

  .corporate-hero h1 {
    width: 100%;
    max-width: none;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 1.2px;
  }

  .corporate-hero__line {
    margin-top: 26px;
  }

  .corporate-hero__note {
    width: min(282px, 70vw);
    min-height: 100%;
    margin-top: 52px;
    padding: 24px;
    font-size: 14px;
  }

  .corporate-hero__arrow {
    bottom: 46px;
  }

  .corporate-section-container {
    width: 92%;
  }

  .corporate-as-seen__inner {
    padding-block: 76px;
  }

  .corporate-as-seen h2,
  .corporate-story h2 {
    font-size: 24px;
  }

  .corporate-story__layout {
    flex-direction: column-reverse;
  }

  .corporate-story__card-layer {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin-top: -5px;
    transform: none;
  }

  .corporate-story__card {
    width: 100%;
    max-width: 100%;
  }

  .corporate-story__slider {
    width: 100%;
    max-height: none;
  }

  .corporate-story__copy p {
    font-size: 13px;
  }

  .corporate-story__pagination {
    bottom: 24px;
  }

  .corporate-retreats {
    padding-block: 56px;
  }

  .corporate-experiences {
    padding-block: 56px;
  }

  .corporate-amenities__inner {
    padding-block: 56px;
  }

  .corporate-amenities__heading {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .corporate-amenities__heading h2 {
    font-size: 24px;
  }

  .corporate-amenities__heading p {
    width: 100%;
    font-size: 13px;
  }

  .corporate-amenity p {
    justify-content: center;
  }

  .corporate-amenities__controls {
    display: none;
  }

  .corporate-experiences__header {
    min-height: 0;
    flex-direction: column;
    gap: 28px;
  }

  .corporate-experiences h2 {
    width: 100%;
    max-width: none;
    font-size: 24px;
    line-height: 1;
    text-align: center;
  }

  .corporate-experiences__controls {
    position: static;
    gap: 68px;
    transform: translateX(3.7px);
  }

  .corporate-experiences__viewport {
    margin-top: 28px;
  }

  .corporate-experience {
    flex-basis: calc(83.3333333% - 4px);
    aspect-ratio: 311 / 375.67;
  }

  .corporate-retreats__header {
    flex-direction: column;
    gap: 29px;
  }

  .corporate-retreats h2 {
    width: 100%;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
  }

  .corporate-retreats__controls {
    gap: 88px;
  }

  .corporate-retreats__control {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .corporate-retreats__viewport {
    margin-top: 29px;
  }

  .corporate-cottage__gallery {
    height: 305px;
    aspect-ratio: auto;
  }

  .corporate-cottage__pagination {
    bottom: 30px;
  }

  .corporate-cottage__progress {
    flex-basis: 22%;
  }

  .corporate-cottage__content {
    min-height: 237px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 42px;
  }

  .corporate-cottage__copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .corporate-cottage__copy h3 {
    padding: 10px 12px 12px;
    font-size: 24px;
    line-height: 1.35;
  }

  .corporate-cottage__copy p {
    font-size: 13px;
  }

  .corporate-cottage__icons {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .corporate-itinerary__card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .corporate-experience {
    flex-basis: calc(45.4545455% - 13.090909px);
    aspect-ratio: 328 / 396;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .corporate-experience {
    flex-basis: calc(32.2580645% - 16.258065px);
    aspect-ratio: 216.64 / 262.91;
  }
}

@media (max-width: 420px) {
  .corporate-logo,
  .corporate-logo img {
    width: 145px;
  }

  .corporate-hero__content {
    top: 44%;
  }

  .corporate-hero h1 {
    font-size: 25px;
  }

  .corporate-hero__note {
    margin-top: 44px;
  }
}

@media (max-width: 600px) {
  .corporate-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-feature h2 {
    font-size: 13px;
  }

  .corporate-contact {
    padding-top: 0;
    background: var(--corporate-white);
  }

  .corporate-contact__inner {
    width: 100%;
    max-width: 100%;
  }

  .corporate-contact__heading {
    max-width: none;
    padding: 85px 0;
    background: url("../assets/images/corporate-contact-tiger.webp") center / cover no-repeat;
  }

  .corporate-contact__heading h2 {
    max-width: 92%;
  }

  .corporate-contact__heading img {
    display: none;
  }

  .corporate-contact__form-panel {
    background: #f8f4ed;
  }

  .corporate-contact__form {
    width: 92%;
    padding: 48px 0;
    gap: 24px;
    background: transparent;
  }

  .corporate-contact__row {
    flex-direction: column;
  }

  .corporate-contact__field label {
    margin-bottom: 0;
    font-size: 13px;
  }

  .corporate-contact__field input {
    height: 44px;
    font-size: 13px;
  }

  .corporate-contact__field select {
    height: 46px;
    font-size: 13px;
  }

  .corporate-contact__field input[type="date"] {
    height: 48px;
  }

  .corporate-contact__field textarea {
    min-height: 80px;
    font-size: 13px;
  }

  .corporate-footer__copyright {
    margin-top: -25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corporate-site-shell {
    scroll-behavior: auto;
  }

  .corporate-menu__panel,
  .corporate-hero__arrow img,
  .corporate-story__slide,
  .corporate-story__progress span,
  .corporate-retreats__track,
  .corporate-cottage,
  .corporate-cottage__image,
  .corporate-cottage__progress span,
  .corporate-experiences__track,
  .corporate-experience__details,
  .corporate-amenities__track,
  .corporate-amenity,
  .corporate-amenity p,
  .corporate-testimonials__track,
  .corporate-gallery__track,
  .corporate-gallery__slide img,
  .corporate-itinerary__track,
  .corporate-itinerary__content ul {
    transition: none;
    animation: none;
  }

  .corporate-story__progress.is-active span {
    width: 100%;
  }

  .corporate-cottage__progress.is-active span {
    width: 100%;
  }
}
