@font-face {
  font-family: "Mandatory";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../css/fonts/Mandatory-36.woff2") format("woff2");
}

:root {
  --ff-heading: "Mandatory", sans-serif;
  --ff-body: "Assistant", sans-serif;

  --container: 1366px;
  --site-padding: 36px;

  --header-top-offset: 36px;
  --header-height: 0px;

  --lh-heading: 1;
  --lh-body: 1.5;

  --text-14px: 14px;
  --text-16px: 16px;
  --text-18px: 18px;
  --text-20px: 20px;
  --text-22px: 22px;
  --text-28px: 28px;
  --text-32px: 32px;
  --text-36px: 36px;
  --text-55px: clamp(45px, 3vw, 55px);
  --text-74px: clamp(60px, 4vw, 74px);
  --text-95px: clamp(45px, 5vw, 95px);

  --c-white: #ffffff;
  --border-default: #dddddd;

  --beige: 45 38% 92%;
  --color-beige: hsl(var(--beige));

  --blue: 234 46% 30%;
  --color-primary: hsl(var(--blue));

  --yellow: 41 95% 57%;
  --color-yellow: hsl(var(--yellow));

  --gray: 0 0% 30%;
  --color-gray: hsl(var(--gray));

  --dark-gray: 0 0% 22%;
  --color-dark-gray: hsl(var(--dark-gray));

  --black: 0 0% 0%;
  --color-black: hsl(var(--black));

  /* Simple booking variables */
  --container_bg: var(--color-beige);
  --btn_submit_bg: var(--color-primary);
  --btn_submit_border: 1px solid var(--color-primary);
  --btn_submit_bg_hover: transparent;
  --btn_submit_border_hover: 1px solid var(--color-primary);
  --btn_submit_color_hover: var(--color-primary);

  --booking-engine-btn-mobile-height: 100px;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--text-16px);
  color: var(--color-gray);
  line-height: var(--lh-body);
}

body.rtl {
  --ff-body: "IBM Plex Sans Hebrew", sans-serif;
}

img {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition-property: border-color, color, background-color, box-shadow;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}

p a:hover {
  text-decoration: underline;
}

sub,
sup {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--lh-heading);
  font-family: var(--ff-heading);
  color: var(--color-primary);
}

h1,
h2 {
  font-size: var(--text-74px);
  letter-spacing: 0.046em;
}

.wysiwyg * + p {
  margin-block-start: 1.25rem;
}

.wysiwyg ul {
  list-style: revert;
}

.wysiwyg p + ul {
  margin-block-start: 0.75rem;
  padding-inline-start: 1.75rem;
}

.container {
  padding-inline: 36px;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 111;
  visibility: hidden;
  opacity: 0;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

/* background-attachment utilities */
.bg-center {
  background-position: center !important;
}

.bg-fixed {
  background-attachment: fixed !important;
}

.bg-scroll {
  background-attachment: scroll !important;
}

.bg-local {
  background-attachment: local !important;
}

/* button css start */
.btn {
  font-size: var(--text-16px);
  font-family: var(--ff-body);
  text-align: center;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--color-primary);
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.1875em;
  height: 50px;
  padding-inline: 16px;
}

.btn.btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-beige);
}

.btn.btn-outline-secondary {
  border-color: var(--color-beige);
  color: var(--color-beige);
}

.btn.btn-outline-secondary:hover {
  background-color: var(--color-beige);
  color: var(--color-primary);
}

.btn.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-beige);
}

.btn.btn-primary:hover {
  border-color: var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
}

.btn.btn-secondary {
  background-color: var(--color-beige);
  color: var(--color-primary);
}

.btn.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-beige);
}
/* button css end */

.whatsapp_icon svg {
  width: 40px;
  height: auto;
}

.whatsapp_icon {
  position: fixed;
  z-index: 30;
  bottom: 50px;
  right: 30px;
}

@media (max-width: 991px) {
  .container {
    padding-inline: 24px;
  }

  .whatsapp_icon {
    position: fixed;
    z-index: 30;
    bottom: calc(var(--booking-engine-btn-mobile-height) + 20px);
    right: 16px;
  }
}

.form-group {
  position: relative;
}

.form-control {
  height: 62px;
  border: 1px solid var(--border-default);
  padding: 10px 20px;
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.form-control:valid ~ label,
.form-control:focus ~ label {
  transform: translateY(-15px);
}

.form-label {
  position: absolute;
  top: 0;
  left: 10px;
  transform: translateY(15px);
  z-index: 2;
  padding: 2px 10px;
  color: var(--color-primary);
  background-color: var(--c-white);
  transition: all 0.3s ease;
}

.wpforms-container .form-control input.wpforms-field-medium {
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  height: 62px;
  border-radius: 0;
}

.wpforms-container .wpforms-field label {
  font-weight: 400;
}

/* ==========================================================================
   NEW HEADER — slim top bar (logo + language switcher + hamburger)
   plus a fullscreen nav overlay, shared by mobile and desktop.
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-block: var(--header-top-offset);
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.header.header--scrolled {
  background-color: var(--color-primary);
}

/* Pages without a hero section need the fixed header's height pushed back
   into normal flow so content doesn't start underneath it. Pages with a
   hero section skip this on purpose — the hero is meant to sit full-bleed
   behind the transparent header. --header-height is kept in sync with the
   header's real rendered height via a ResizeObserver in main.js. */
main.main--offset-header {
  padding-top: var(--header-height);
}

.header .container {
  max-width: 100%;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
}

.header-actions {
  display: flex;
  align-items: stretch;
  border: 3px solid var(--c-white);
  height: 48px;
  transition: border-color 0.3s ease;
}

.logo img {
  width: 112px;
  transition: width 0.3s ease;
}

.menu-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggler .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-inline: 6px;
}

.menu-toggler .close-icon {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 34px;
  height: 24px;
  padding-inline: 6px;
}

.menu-toggler .close-icon .line {
  position: absolute;
  top: 50%;
  left: 50%;
}

.menu-toggler .close-icon .line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggler .close-icon .line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggler .line {
  width: 34px;
  height: 4px;
  background-color: var(--c-white);
  transition: all 0.3s ease;
}

.header-actions .language-switcher {
  display: flex;
  align-items: center;
  padding-inline: 16px;
  border-inline-start: 3px solid var(--c-white);
  transition: border-color 0.3s ease;
}

.language-switcher select {
  border: none;
  color: var(--c-white);
  background-color: transparent;
  font-size: var(--text-14px);
  height: 100%;
  transition: color 0.3s ease;
}

.language-switcher select option {
  color: var(--color-black);
}

@media (min-width: 992px) {
  .logo img {
    width: 200px;
  }

  .header--scrolled .logo img {
    width: 140px;
  }
}

/* Fullscreen overlay menu — same behavior at every breakpoint.
   The header stays behind it (lower z-index, no background of its own),
   dimly visible through the translucent blue. This overlay has its own
   close (X) button, positioned to land exactly on top of the hamburger. */
.fullscreen-menu {
  position: fixed;
  inset: 20px;
  z-index: 1000;
  overflow-y: auto;
  border-radius: 12px;
  background-color: hsl(var(--blue) / 94%);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding-block: 120px 40px;
}

.fullscreen-menu-close-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  padding-block: var(--header-top-offset);
  pointer-events: none;
}

.fullscreen-menu-close-bar .container {
  display: flex;
  max-width: none;
  width: 100%;
}

.fullscreen-menu-close {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 48px;
  padding: 0;
  border: 3px solid var(--c-white);
  background: none;
  cursor: pointer;
}

.fullscreen-menu-close .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 4px;
  background-color: var(--c-white);
}

.fullscreen-menu-close .line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fullscreen-menu-close .line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fullscreen-menu.active {
  visibility: visible;
  opacity: 1;
}

/* Nav list */
.fullscreen-menu .menu {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin-inline: auto;
}

.fullscreen-menu .menu > .menu-item {
  display: flex;
  align-items: flex-start;
  column-gap: 24px;
}

.fullscreen-menu .menu .menu-item-icon {
  object-fit: contain;
  flex-shrink: 0;
}

.fullscreen-menu .menu .menu-item-content {
  flex: 1;
  border-bottom: 1px dashed var(--color-yellow);
}

.fullscreen-menu .menu > .menu-item:last-child .menu-item-content {
  border-bottom: none;
}

.fullscreen-menu .menu .menu-item-content > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 20px;
  line-height: 1;
  color: var(--c-white);
  font-size: var(--text-28px);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.fullscreen-menu .menu .menu-item a:hover,
.fullscreen-menu .menu .menu-item.current-menu-item a {
  color: var(--color-yellow);
}

.fullscreen-menu .menu .has-sub-menu.open > a .arrow-icon {
  transform: rotate(-180deg);
}

.fullscreen-menu .menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding-bottom 0.3s ease;
}

.fullscreen-menu .menu .has-sub-menu.open .sub-menu {
  margin-block-end: 20px;
}

.fullscreen-menu .menu .sub-menu li a {
  display: block;
  color: var(--c-white);
  font-size: var(--text-18px);
  transition: color 0.3s ease;
}

.fullscreen-menu .menu .arrow-icon {
  margin-inline-start: 4px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .header-actions {
    height: 34px;
  }

  .menu-toggler .hamburger-icon {
    gap: 4px;
  }

  .language-switcher select {
    font-size: 15px;
  }

  .fullscreen-menu {
    inset: 0;
    border-radius: 0;
    background-color: hsl(var(--blue) / 100%);
  }

  .fullscreen-menu .menu {
    max-width: 100%;
  }

  .fullscreen-menu .menu .menu-item-icon {
    max-width: 46px;
  }

  .fullscreen-menu .menu .menu-item-content > a {
    font-size: 20px;
  }

  .fullscreen-menu .menu .arrow-icon {
    width: 14px;
  }

  .fullscreen-menu-close {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }

  .fullscreen-menu-close .line {
    width: 14px;
    height: 2px;
  }

  .menu-toggler .line {
    width: 20px;
    height: 2px;
  }
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   Booking Engine — the SimpleBooking widget. Renders inline, right after
   the hero, on every screen size. On mobile it additionally becomes a
   full-screen slide-up panel behind a sticky bottom "Book Now" bar, which
   doubles as the close control once open (text stays, an X appears
   alongside it — same idea as the menu hamburger). The bar is always in
   the markup; CSS alone decides whether it's shown, since a PHP
   wp_is_mobile() check can't react to the viewport being resized.
   ========================================================================== */
.booking-engine-panel {
  background-color: var(--color-beige);
}

.booking-engine-widget {
  padding-top: 24px;
}

.booking-engine-toggle {
  display: none;
}

@media (max-width: 991px) {
  /* Positioned via "top" (not bottom) in both states so the same property
     can transition smoothly: closed sits flush with the bottom edge, open
     slides all the way up to where the header sits. */
  .booking-engine-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: calc(100% - var(--booking-engine-btn-mobile-height));
    left: 0;
    width: 100%;
    z-index: 1003;
    height: var(--booking-engine-btn-mobile-height);
    padding: 0;
    border: none;
    background-color: var(--color-primary);
    box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transition: top 0.4s ease;
  }

  .booking-engine-toggle.active {
    top: 0;
  }

  .booking-engine-toggle-text {
    color: var(--c-white);
    font-size: 18px;
    font-weight: 600;
  }

  /* Sits alongside the text (not replacing it) at the inline-start edge —
     the right side in the site's primary RTL layout. */
  .booking-engine-toggle-close {
    display: none;
    position: absolute;
    top: 50%;
    inset-inline-start: 20px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid var(--c-white);
  }

  .booking-engine-toggle-close .line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background-color: var(--c-white);
  }

  .booking-engine-toggle-close .line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .booking-engine-toggle-close .line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .booking-engine-toggle.active .booking-engine-toggle-close {
    display: block;
  }

  .booking-engine-panel {
    position: fixed;
    inset: 0;
    z-index: 1002;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  .booking-engine-panel.active {
    transform: translateY(0);
  }

  .booking-engine-widget {
    padding-top: 80px;
  }

  body.booking-engine-open {
    overflow: hidden;
  }
}

/* Floating "join club" button — unchanged, unrelated to this redesign */
.club-container {
  background-color: var(--color-primary);
  border-end-end-radius: 90px;
  border-start-end-radius: 90px;
  color: white;
  display: inline-block;
  position: fixed;
  top: 55dvh;
  inset-inline-start: 0;
  z-index: 9;
  padding-block: 16px;
  padding-inline-end: 16px;
  transform: translateX(100px);
  transition: all 0.3s ease;
}

body:not(.rtl) .club-container {
  transform: translateX(-100px);
}

body .club-container:hover {
  transform: translateX(0);
}

.club-container .club-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.club-container .club-label {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  max-width: 100px;
  color: white;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .club-container {
    display: none;
  }
}

.footer-section {
  padding-block: 110px 70px;
  background-color: var(--color-primary);
  color: var(--color-beige);
}

body.home .footer-section {
  border-top: 2px solid var(--c-white);
}

.footer-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
}

.footer-col-logo img {
  width: 140px;
}

.footer-col-links {
  display: flex;
  gap: 80px;
}

.footer-col-links .details p {
  margin: 0 0 10px;
}

.footer-col-links .details a img {
  display: inline-block;
}

.footer-col-links .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .footer-col .social-links a img:hover {
  filter: brightness(0) saturate(100%) invert(77%) sepia(97%) saturate(2470%)
    hue-rotate(333deg) brightness(94%) contrast(81%);
}

.footer-nav {
  columns: 3;
  column-gap: 40px;
}

.footer-nav > * {
  margin-bottom: 8px;
  break-inside: avoid;
}

.footer-nav li a:hover,
.footer-nav li.current-menu-item a {
  color: var(--color-yellow);
}

.footer-email-form input {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  font-size: 15px;
  color: var(--c-white) !important;
  padding-right: 60px;
  height: 46px;
  margin-block-start: 12px;
}

.footer-email-form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4941176471);
}

.footer-email-form ::placeholder {
  color: rgba(255, 255, 255, 0.4941176471);
}

.footer-email-form ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4941176471);
}

.footer-email-form :-moz-placeholder {
  color: rgba(255, 255, 255, 0.4941176471);
  opacity: 1;
}

.footer-email-form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4941176471);
  opacity: 1;
}

.footer-email-form :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4941176471);
}

.footer-email-form .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-inline: 16px;
}

@media (max-width: 991px) {
  .footer-section {
    padding-block-end: 180px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col-logo img {
    margin: auto;
  }

  .footer-col-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    border-top: 1px solid var(--c-white);
    padding-block-start: 40px;
    column-gap: 30px;
  }
}

@media (max-width: 380px) {
  .footer-nav {
    columns: 2;
  }
}

/* hero section start */
.hero-section {
  position: relative;
  background: var(--hero-bg-image) center / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: hsla(0, 0%, 0%, 0.2);
  pointer-events: none;
}

.hero-section .hero-img {
  height: 80dvh;
}

.hero-title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding-inline: 20px;
  font-family: var(--ff-heading);
  text-align: center;
  color: var(--c-white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.hero-title * {
  color: inherit;
  margin: 0;
}

.hero-title--standard {
  font-size: var(--text-55px);
}

.hero-title--large {
  font-size: var(--text-74px);
}

.hero-section .hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.inner-hero img {
  max-height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 300px;
}

.hero-video {
  position: relative;
  height: 80dvh;
  overflow: hidden;
}

/* Cover-fit a 16:9 video regardless of the box's own aspect ratio: size it
   from the viewport (100vw wide / 56.25vw tall = 16:9), then let whichever
   dimension that leaves short of the actual box get rescued by min-width/
   min-height — no per-breakpoint iframe overrides needed, only the
   .hero-video height itself changes below. */
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

@media (max-width: 991px) {
  .hero-video {
    height: 100dvh;
  }

  /* The base cover-fit formula above assumes a 16:9 (landscape) video —
     correct when a phone reuses the desktop video, since that's what it
     actually is. But a dedicated mobile video is shot portrait (9:16), and
     16:9-derived constants don't cover a portrait video correctly (this
     was the bug: at ~650px a mobile video left gaps). Re-derive the same
     formula for a 9:16 aspect ratio instead. */
  .hero-video--has-mobile .hero-video-iframe {
    width: 100vw;
    height: 177.78vw;
    min-width: 56.25vh;
    min-height: 100%;
  }

  .hero-title {
    transform: translate(-50%, -100%);
  }
}

/* hero section end */
/* hotel section start */
.hotel-section {
  padding-top: 50px;
  padding-bottom: 65px;
  background: rgba(239, 230, 208, 0.168627451);
  box-shadow: 0px 9px 26px 0px rgba(0, 0, 0, 0.0705882353);
}

@media (max-width: 575px) {
  .hotel-section .container {
    padding-inline: 12px;
  }
}

.hotel-content {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.hotel-content img {
  margin-bottom: 35px;
}

@media (max-width: 575px) {
  .hotel-content img {
    margin-bottom: 24px;
  }
}

.hotel-content h1 {
  font-size: var(--text-32px);
  font-weight: 300;
  position: relative;
  padding-top: 35px;
}

@media (max-width: 575px) {
  .hotel-content h1 {
    font-size: 24px;
    padding-top: 24px;
  }
}

.hotel-content h1 span {
  font-weight: 400;
}

.hotel-content h1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #09346e;
  width: 32px;
  height: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 550px;
  gap: 20px;
  margin-inline: auto;
  margin-block-start: 48px;
}

@media (max-width: 575px) {
  .amenities-grid {
    margin-block-start: 36px;
    gap: 10px;
  }
}

.amenities-grid li {
  text-align: center;
}

.amenities-grid li:nth-child(even) {
  margin-block-start: 32px;
}

.amenities-grid li a {
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.1;
}

@media (max-width: 575px) {
  .amenities-grid li a {
    font-size: 11px;
  }
}

.amenities-grid li a:hover img {
  transform: scaleX(-1);
}

.amenities-grid li a img {
  transition: all 0.4s ease;
}

@media (max-width: 575px) {
  .amenities-grid li a img {
    max-width: 50px;
  }
}

/* hotel section end */
/* rooms and suites section start */
.section-header {
  max-width: 815px;
  margin-bottom: 48px;
}

@media (max-width: 991px) {
  .section-header {
    text-align: center;
    margin-bottom: 36px;
  }
}

.section-header h2 {
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .section-header h2 {
    margin-bottom: 16px;
  }
}

.section-header h3 {
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 23px;
  font-family: var(--ff-body);
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .section-header h3 {
    margin-bottom: 10px;
  }
}

.rooms-and-suites-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .rooms-and-suites-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .rooms-and-suites-section .container {
    padding-inline: 0;
  }

  .rooms-and-suites-section .container .section-header {
    padding-inline: 24px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.accordion-button::after {
  background-image: url("../images/icons/arrow-down.svg") !important;
  background-size: 10px;
  font-size: 0;
  width: 10px;
  height: 10px;
}

.room-accordion {
  margin-bottom: 16px;
}

.room-accordion .accordion-item {
  background-color: transparent;
  border: none;
}

.room-accordion .accordion-button {
  gap: 16px;
  background-color: transparent;
  font-size: 12px;
  border: none;
  padding-inline: 0;
  border-radius: 0 !important;
  transition: none;
  box-shadow: none;
}

.room-accordion .accordion-button .bar {
  color: rgba(215, 201, 170, 0.5882352941);
}

.room-accordion .accordion-body {
  border: none;
  padding-inline: 0;
  border-top: 1px solid rgba(119, 107, 79, 0.368627451);
}

.thumb-content-item {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .thumb-content-item {
    flex-direction: column;
  }
}

.thumb-content-item .thumb {
  max-width: 930px;
  width: 70%;
}

@media (max-width: 991px) {
  .thumb-content-item .thumb {
    width: 100%;
    max-width: 100%;
  }
}

.thumb-content-item .content {
  max-width: 500px;
  width: 35%;
  margin-left: -80px;
  position: relative;
  padding: 60px 30px 40px;
  background-color: var(--color-beige);
}

.thumb-content-item .content h2 {
  font-size: var(--text-55px);
}

@media (max-width: 1199px) {
  .thumb-content-item .content {
    padding: 32px;
  }
}

@media (max-width: 991px) {
  .thumb-content-item .content {
    width: calc(100% - 22px);
    max-width: 100%;
    margin-inline: auto;
    margin-block-start: -80px;
  }
}

.thumb-content-item .content h3 {
  margin-bottom: 28px;
  line-height: 1.35;
}

.thumb-content-item .content .btn {
  margin-block-start: 20px;
}

.thumb-content-item .content .icon1 {
  position: absolute;
  right: 80px;
  top: 22px;
}

@media (max-width: 575px) {
  .thumb-content-item .content .icon1 {
    right: 66px;
  }
}

.thumb-content-item .content .icon2 {
  position: absolute;
  right: 20px;
  top: 24px;
}

.thumb-content-item.style--two {
  gap: 24px;
  align-items: unset;
}

.thumb-content-item.style--two:not(:last-child) {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .thumb-content-item.style--two:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .thumb-content-item.style--two {
    flex-direction: column;
  }
}

.thumb-content-item.style--two:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .thumb-content-item.style--two:nth-child(even) {
    flex-direction: column;
  }
}

.thumb-content-item.style--two.active {
  align-items: flex-start;
}

.thumb-content-item.style--two .content-slider {
  height: 100%;
}

.thumb-content-item.style--two .content-slider > div {
  height: 100%;
}

.thumb-content-item.style--two .content-slider > div > div {
  height: 100%;
}

.thumb-content-item.style--two .content-slider > div > div > div {
  height: 100%;
}

.thumb-content-item.style--two .content-slider > div > div > div > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.thumb-content-item.style--two .content {
  margin: 0;
  max-width: unset;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

@media (max-width: 991px) {
  .thumb-content-item.style--two .content {
    width: calc(100% - 24px);
    margin-block-start: -60px;
    margin-inline: 12px;
  }
}

.thumb-content-item.style--two .content h3 {
  margin-bottom: 8px;
}

.thumb-content-item.style--two .content .btn {
  width: 100%;
  margin-block-start: auto;
}

.thumb-content-item.style--two .thumb {
  height: auto;
  width: calc(65% - 24px);
}

@media (max-width: 991px) {
  .thumb-content-item.style--two .thumb {
    width: 100%;
  }
}

.rooms-and-suites-section-two {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .rooms-and-suites-section-two {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .rooms-and-suites-section-two .container {
    padding-inline: 0;
  }

  .rooms-and-suites-section-two .container .section-header {
    padding-inline: 24px;
  }
}

@media (max-width: 991px) {
  .rooms-and-suites-section-two .thumb-content-item {
    flex-direction: column-reverse;
  }
}

.rooms-and-suites-section-two .thumb-content-item .content {
  margin-left: 0;
  margin-right: -80px;
  z-index: 1;
}

@media (max-width: 991px) {
  .rooms-and-suites-section-two .thumb-content-item .content {
    width: calc(100% - 22px);
    max-width: 100%;
    margin-inline: auto;
    margin-block-start: -80px;
  }
}

.features-list {
  gap: 24px 28px;
}

.features-list li {
  max-width: 40px;
  text-align: center;
}

.features-list li img {
  max-width: 22px;
  max-height: 22px;
  margin-inline: auto;
}

.features-list li span {
  line-height: 1;
  color: var(--color-primary);
  font-size: 12px;
  margin-block-start: 6px;
}

@media (max-width: 575px) {
  .rooms-and-business-section.style--two .container {
    padding-inline: 0;
  }
}

@media (max-width: 575px) {
  .rooms-and-business-section .container .section-header {
    padding-inline: 30px;
  }
}

/* rooms and suites section end */
/* special offers section start */
.special-offers-section {
  padding-block: 90px;
  background-color: var(--color-primary);
}

.card-row-section + .special-offers-section {
  padding-block-start: 200px;
}

.special-offers-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 68px;
  max-height: 68px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.special-offers-header {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 56px;
  text-align: center;
}

.special-offers-title {
  color: var(--color-beige);
}

.special-offers-description {
  color: var(--color-beige);
  margin-block-start: 16px;
}

.special-offers-description p {
  margin: 0;
}

.special-offers-slider-wrapper {
  position: relative;
  margin-bottom: 56px;
}

.special-offers-slider .slick-track {
  display: flex;
}

.special-offers-slider .slick-slide {
  height: auto;
  margin-inline: 4px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.offer-card__thumb {
  display: block;
  aspect-ratio: 1.2;
  overflow: hidden;
}

.offer-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.offer-card:hover .offer-card__thumb img {
  transform: scale(1.05);
}

.offer-card__body {
  position: relative;
  z-index: 1;
  width: 85%;
  margin-inline: auto;
  margin-block-start: -50px;
  padding: 40px 24px 32px;
  background-color: var(--c-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
}

.offer-card__title {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: var(--ff-body);
  font-size: 22px;
  font-weight: 600;
}

.offer-card__text {
  margin-bottom: 16px;
}

.offer-card__link {
  margin-block-start: auto;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.offer-card:hover .offer-card__link {
  text-decoration: underline;
}

.special-offers-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-beige);
  cursor: pointer;
}

.special-offers-prev {
  left: -60px;
}

.special-offers-next {
  right: -60px;
}

.special-offers-arrow i {
  color: var(--color-beige);
  font-size: 18px;
}

.special-offers-arrow.slick-disabled {
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 991px) {
  .special-offers-section {
    padding-block: 60px;
  }

  .card-row-section + .special-offers-section {
    padding-block-start: 150px;
  }

  .special-offers-header {
    margin-bottom: 36px;
  }

  .special-offers-icon {
    max-width: 40px;
    max-height: 40px;
  }

  .special-offers-title {
    font-size: 45px;
  }

  .special-offers-arrow {
    display: none;
  }

  .container:has(.special-offers-slider) {
    padding-left: 16px;
    padding-right: 0;
  }

  .special-offers-slider .slick-list {
    margin-left: 0;
  }

  .offer-card-item {
    width: 80vw;
  }
}

.special-offers-cta {
  text-align: center;
}

/* .offer-item* rules below are shared with the sport & wellness section slider */
.offer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: all 0.3s ease;
  transition-delay: 0.2s;
}

.offer-item:hover .offer-item__thumb img {
  transform: scale(1.05);
}

.offer-item__thumb {
  aspect-ratio: 0.95;
  overflow: hidden;
}

.offer-item__thumb a {
  display: block;
  height: 100%;
}

.offer-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}

.offer-item__content {
  padding: 10px;
  padding-top: 32px;
}

.offer-item__content h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-family: var(--ff-body);
  font-size: 22px;
  font-weight: 700;
}

.offer-item__content p:last-child {
  margin-bottom: 24px;
}

.offer-item .btn {
  margin-block-start: auto;
  margin-inline: 10px;
}

.offer-item.style--two {
  position: relative;
  padding-bottom: 12px;
}

.offer-item.style--two:hover::before {
  opacity: 1;
}

.offer-item.style--two::before {
  position: absolute;
  content: "";
  left: -16px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  padding: 18px 16px;
  background-color: var(--color-beige);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.slick-dots {
  bottom: 12px;
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li.slick-active button {
  background-color: var(--color-primary);
}

.slick-dots li button {
  width: 25px;
  height: 4px;
  background-color: var(--c-white);
  padding: 0;
}

.slick-dots li button::before {
  display: none;
}

.slick-prev {
  left: -55px;
  top: 35%;
}

@media (max-width: 1600px) {
  .slick-prev {
    left: -45px;
  }
}

.slick-next {
  right: -25px;
  top: 35%;
}

@media (max-width: 1600px) {
  .slick-next {
    right: -15px;
  }
}

/* special offers section end */
/* video section start */
.video-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: #000;
  padding-top: 130px;
  padding-bottom: 140px;
  background-attachment: fixed;
}

@media (max-width: 991px) {
  .video-section {
    padding-top: 150px;
    padding-bottom: 40px;
  }
}

.video-wrapper {
  position: relative;
  padding-inline: var(--site-padding);
}

.video-wrapper .video-contents {
  max-width: 810px;
  text-align: center;
  margin-inline: auto;
}

.video-wrapper .video-contents {
  color: var(--c-white);
  font-size: var(--text-55px);
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .video-wrapper .video-contents {
    font-size: var(--text-36px);
  }
}

.video-wrapper .video-thumb {
  opacity: 0.5;
  min-height: 430px;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-wrapper .play-icon {
  cursor: pointer;
}

@media (max-width: 991px) {
  .video-wrapper .play-icon {
    display: none;
  }
}

.video-wrapper .link-text {
  text-align: right;
}

@media (max-width: 991px) {
  .video-wrapper .link-text {
    text-align: center;
    margin-block-start: 90px;
  }
}

.video-wrapper a {
  font-weight: 700;
  color: var(--color-beige);
}

/* video section end */
/* sport and wellness section start */
.sport-and-wellness-section {
  padding-top: 70px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .sport-and-wellness-section {
    padding-bottom: 30px;
    padding-top: 50px;
  }
}

@media (max-width: 991px) {
  .sport-and-wellness-section .container {
    padding-inline: 0;
  }

  .sport-and-wellness-section .container .section-header {
    padding-inline: 30px;
  }
}

.sport-wellness-slider {
  margin-inline: -18px;
}

.sport-wellness-slider .slick-track {
  padding-bottom: 50px;
}

.sport-wellness-slider .single-slide {
  transition: all 0.3s ease;
  transition-delay: 0.2s;
  padding-inline: 18px;
  transform: translateY(50px);
}

@media (max-width: 575px) {
  .sport-wellness-slider .single-slide {
    padding-inline: 12px;
  }
}

.sport-wellness-slider .slick-center {
  transform: translateY(0px);
}

.sport-wellness-slider .slick-center .offer-item {
  padding: 16px;
  background-color: #fbf9f5;
}

/* sport and wellness section end */
/* ==========================================================================
   CTA Section — full-bleed, no .container. 50/50 image + navy content, with
   a circular logo overlapping the section's top edge (half above, half in).
   ========================================================================== */
.cta-section {
  position: relative;
  padding-top: 80px;
}

.cta-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 160px;
  height: 160px;
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-wrapper {
  display: flex;
}

.cta-body,
.cta-media {
  flex: 0 0 50%;
  max-width: 50%;
}

.cta-body {
  padding: 100px 80px;
  background-color: var(--color-primary);
  color: var(--c-white);
}

.cta-body-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
  margin: auto;
}

.cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-title {
  color: var(--c-white);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.cta-description {
  color: var(--c-white);
  font-size: 22px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.cta-description strong {
  font-weight: 600;
}

.cta-link {
  max-width: 200px;
  width: 100%;
  align-self: flex-start;
}

@media (max-width: 991px) {
  .cta-wrapper {
    flex-direction: column-reverse;
  }

  .cta-logo img {
    width: 115px;
    margin: auto;
  }

  .cta-body,
  .cta-media {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .cta-body {
    padding: 60px 35px;
  }

  .cta-media img {
    height: auto;
    aspect-ratio: 9 / 11;
  }

  .cta-title {
    font-size: 34px;
  }

  .cta-description {
    font-size: var(--text-18px);
  }

  .cta-description br {
    display: none;
  }
}

/* spa center section start */
.spa-center-section {
  background: linear-gradient(
    240.59deg,
    rgba(240, 231, 210, 0.17) 4.67%,
    rgba(231, 218, 185, 0.17) 98.97%
  );
  padding-top: 50px;
  padding-bottom: 100px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .spa-center-section {
    padding-bottom: 50px;
  }
}

.spa-center-section .flower-shape {
  position: absolute;
  bottom: 0;
  left: 3%;
}

@media (max-width: 575px) {
  .spa-center-section .flower-shape {
    left: -10%;
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .spa-center-section .container {
    max-width: 100%;
    padding-inline: 0;
  }
}

.spa-center-wrapper {
  display: flex;
  align-items: center;
  gap: 36px 48px;
}

@media (max-width: 991px) {
  .spa-center-wrapper {
    flex-direction: column-reverse;
  }
}

.spa-center-wrapper .left-content {
  max-width: 400px;
  text-align: center;
}

@media (max-width: 991px) {
  .spa-center-wrapper .left-content {
    max-width: 100%;
    padding-inline: 30px;
  }
}

.spa-center-wrapper .left-content h2 {
  margin-bottom: 40px;
  font-size: var(--text-55px);
}

@media (max-width: 991px) {
  .spa-center-wrapper .left-content h2 {
    margin-bottom: 24px;
    font-size: 25px;
  }
}

.spa-center-wrapper .left-content .btn {
  margin-block-start: 40px;
}

@media (max-width: 991px) {
  .spa-center-wrapper .left-content .btn {
    margin-block-start: 6px;
  }
}

.spa-center-wrapper .right-thumb {
  border: 1px solid transparent;
  background-color: var(--color-beige);
}

.spa-center-wrapper .right-thumb img {
  width: 100%;
  min-height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* spa center section end */
/* rooms and business section start */
.rooms-and-business-section {
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: rgba(234, 224, 200, 0.168627451);
  box-shadow: 0px 9px 26px 0px rgba(0, 0, 0, 0.0705882353);
}

/* Initial state before animation */
@media (max-width: 991px) {
  .rotate-in {
    transition: transform 0.7s;
  }

  /* Animated state when in view */
  .rotate-in.visible {
    transform: scaleX(-1);
  }

  .amenities-grid li a img {
    transition: 0.8s;
  }

  .amenities-grid li:nth-child(1) a img {
    transition-delay: 0.5s;
  }

  .amenities-grid li:nth-child(2) a img {
    transition-delay: 0.6s;
  }

  .amenities-grid li:nth-child(3) a img {
    transition-delay: 0.7s;
  }

  .amenities-grid li:nth-child(4) a img {
    transition-delay: 0.8s;
  }

  .amenities-grid li:nth-child(5) a img {
    transition-delay: 0.9s;
  }
}

@media (min-width: 992px) {
  .rotate-in {
    transition-delay: 0s !important;
  }
}

/* rooms and business section end */
/* guest section start */
.promotion-item {
  display: flex;
  align-items: center;
  padding: 50px 60px;
  gap: 40px 100px;
  background: var(--color-beige);
  box-shadow: 0px 9px 26px 0px rgba(0, 0, 0, 0.07);
}

.promotion-item:not(:last-child) {
  margin-bottom: 40px;
}

.promotion-item:nth-of-type(2n + 1) {
  background: linear-gradient(
    240.59deg,
    rgba(240, 231, 210, 0.15) 4.67%,
    rgba(231, 218, 185, 0.19) 98.97%
  );
}

@media (min-width: 992px) {
  .promotion-item:nth-of-type(2n + 1) {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1400px) {
  .promotion-item:nth-of-type(2n + 1) .promotion-item__content {
    padding-left: 24px;
    padding-right: 120px;
  }
}

@media (max-width: 1399px) {
  .promotion-item {
    gap: 24px 60px;
  }
}

@media (max-width: 1199px) {
  .promotion-item {
    gap: 24px 60px;
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .promotion-item {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .promotion-item {
    padding: 16px;
  }
}

.promotion-item__thumb {
  max-width: 50%;
}

@media (max-width: 991px) {
  .promotion-item__thumb {
    max-width: 100%;
  }
}

.promotion-item__thumb img {
  width: 100%;
}

.promotion-item__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-primary);
}

@media (max-width: 991px) {
  .promotion-item__content {
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .promotion-item__content {
    padding-right: 120px;
  }
}

@media (min-width: 1600px) {
  .promotion-item__content {
    padding-right: 150px;
  }
}

.promotion-item__content h3 {
  color: var(--color-primary);
  font-family: var(--ff-body);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .promotion-item__content h3 {
    margin-bottom: 16px;
  }
}

.promotion-item__content .btn {
  margin-block-start: auto;
}

/* guest section end */
/* spa and wellness section start */
.spa-wellness-row {
  --bs-gutter-x: 100px;
  --bs-gutter-y: 40px;
}

@media (max-width: 1199px) {
  .spa-wellness-row {
    --bs-gutter-x: 60px;
  }
}

@media (max-width: 991px) {
  .images-slider-section .container {
    max-width: 100%;
    padding: 0;
  }
}

.images-slider .single-slide {
  padding-inline: 8px;
}

/* spa and wellness section end */
/* facilities section start */
.facilities-row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 20px;
}

/* facilities section end */
/* gallery section start */
.gallery-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .gallery-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 24px;
  max-width: 100%;
}

@media (max-width: 1199px) {
  .gallery-wrapper {
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .gallery-wrapper {
    gap: 8px;
  }
}

@media (max-width: 991px) {
  .gallery-wrapper {
    grid-template-columns: auto auto auto auto;
  }
}

@media (min-width: 992px) {
  .gallery-item:nth-of-type(9n + 1) {
    grid-column: span 2;
  }

  .gallery-item:nth-of-type(9n + 2),
  .gallery-item:nth-of-type(9n + 3),
  .gallery-item:nth-of-type(9n + 4) {
    grid-column: span 1;
  }

  .gallery-item:nth-of-type(9n + 5) {
    grid-column: span 1;
    grid-row: span 2;
    height: auto;
  }

  .gallery-item:nth-of-type(9n + 6) {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .gallery-item {
    max-height: 234px;
    min-height: 100px;
  }

  .gallery-item:nth-of-type(9n + 1) {
    grid-row: span 1;
    grid-column: span 4;
  }

  .gallery-item:nth-of-type(9n + 2) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-of-type(9n + 3) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-of-type(9n + 4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-of-type(9n + 5) {
    grid-row: span 2;
    grid-column: span 2;
  }

  .gallery-item:nth-of-type(9n + 6) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-of-type(9n + 7) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-of-type(9n + 8) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-of-type(9n + 9) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

/* gallery section end */
/* contact section start */
.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;

  --wpforms-button-background-color: var(--color-primary);
  --wpforms-button-background-color-alt: transparent;
  --wpforms-button-border-color: var(--color-primary);
  --wpforms-button-text-color: var(--color-primary);
  --wpforms-button-border-style: solid;
  --wpforms-button-border-radius: 0;
  --wpforms-label-color: var(--color-primary);
  --wpforms-label-size-font-size: var(var(--text-18px));
  --wpforms-field-border-radius: 0;
  --wpforms-button-size-height: 50px;
  --wpforms-button-size-font-size: 16px;
  --wpforms-field-text-color: var(--color-primary);
}

.contact-section div.wpforms-container-full input:focus,
.contact-section
  div.wpforms-container-full
  .wpforms-form
  .wpforms-field
  input.wpforms-error:hover {
  box-shadow: none !important;
}

.contact-section div.wpforms-container-full button[type="submit"] {
  font-weight: 700;
  letter-spacing: 0.1875em;
  min-width: 100px;
}

.contact-section div.wpforms-container-full button[type="submit"]:hover {
  background: var(--color-primary);
  color: var(--color-beige);
}

.contact-section
  div.wpforms-container-full
  .wpforms-form
  .wpforms-submit-spinner {
  align-self: center;
}

@media (max-width: 991px) {
  .contact-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.contact-wrapper {
  display: flex;
  background: var(--color-beige);
  overflow: hidden;
}

@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column-reverse;
  }
}

.contact-wrapper .content {
  max-width: 450px;
  width: 100%;
  padding: 60px;
}

@media (max-width: 1399px) {
  .contact-wrapper .content {
    padding: 40px;
    max-width: 410px;
  }
}

@media (max-width: 1199px) {
  .contact-wrapper .content {
    padding: 36px;
    max-width: 380px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .content {
    padding: 24px;
  }
}

.contact-wrapper .content h3 {
  font-size: 26px;
  font-family: var(--ff-body);
  letter-spacing: 2px;
  font-weight: 600;
}

.contact-wrapper .content p {
  font-size: 17px;
}

.contact-wrapper .content ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-form {
  max-width: 920px;
  margin-inline: auto;
}

.contact-form .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.contact-form textarea.form-control {
  min-height: 250px;
}

.contact-form .btn {
  color: #f5feff;
}

/* contact section end */
/* mclub section start */
.mclub-hero img {
  max-height: 800px;
}

@media (max-width: 575px) {
  .mclub-section .container {
    padding-inline: 12px;
  }
}

.mclub-wrapper {
  max-width: 1180px;
  background-color: var(--color-primary);
  padding: 60px;
  display: flex;
  gap: 30px 60px;
  transform: translateY(-80%);
  z-index: 1;
  position: relative;
  margin-inline-start: auto;
  margin-bottom: -100px;
}

@media (max-width: 991px) {
  .mclub-wrapper {
    flex-direction: column-reverse;
    transform: translateY(-15%);
    margin-bottom: 0;
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .mclub-wrapper {
    transform: translateY(-12%);
    padding: 24px;
  }
}

.mclub-wrapper .left-content {
  max-width: 350px;
  text-align: center;
  color: #fdffff;
}

.mclub-wrapper .left-content h1 {
  font-size: var(--text-55px);
}

@media (max-width: 991px) {
  .mclub-wrapper .left-content {
    max-width: 100%;
  }
}

.mclub-wrapper .left-content img {
  margin-bottom: 24px;
}

.mclub-wrapper .mclub-form .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.mclub-wrapper .mclub-form .form-control {
  background-color: transparent;
  border-color: var(--c-white);
  color: #f0e7d2;
}

.mclub-wrapper .mclub-form .form-control:focus {
  border-color: var(--c-white);
}

.mclub-wrapper .mclub-form .form-label {
  color: #f0e7d2;
  background-color: transparent;
  background-color: var(--color-primary);
  padding-block: 0;
}

.mclub-wrapper .mclub-form .btn {
  height: 62px;
}

.mclub-wrapper .mclub-form .btn:hover {
  color: var(--c-white);
  background-color: #93184f;
  border-color: #93184f;
}

/* mclub section end */

/** Simple booking */

#sb-container {
  max-width: 1300px;
  margin: 0 auto;
}

.sb-wrap {
  padding-bottom: 0;
  padding-block: 24px;
}

@media (max-width: 992px) {
  .sb-wrap section.booking {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .sb-wrap .booking__date-from,
  .sb-wrap .booking__date-to {
    width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 768px) {
  .sb-wrap .booking__date-to,
  .sb-wrap .booking__date-from {
    width: 100%;
  }
}

/* ==========================================================================
   Image Content Section — flexible content layout with a configurable
   image/text direction and image vertical alignment.
   ========================================================================== */
.image-content-section {
  padding-block-start: 48px;
  background-color: var(--color-beige);
}

.image-content-container {
  position: relative;
  margin-block-end: 180px;
}

.image-content-wrapper {
  display: flex;
  justify-content: center;
  gap: 55px;
}

.image-content-section--image_left .image-content-wrapper {
  flex-direction: row-reverse;
}

.image-content-media {
  margin-bottom: -120px;
}

body.home .banner-section + .image-content-section .image-content-media {
  margin-block-start: -120px;
}

.image-content-body {
  flex: 1 0 0;
  max-width: 460px;
  padding-block-end: 40px;
}

.image-content-title {
  color: var(--color-primary);
  font-family: var(--ff-heading);
  font-size: var(--text-74px);
  letter-spacing: 0.046em;
  line-height: 1;
}

.image-content-subtitle {
  color: var(--color-primary);
  font-size: var(--text-22px);
  font-weight: 700;
  margin-block-start: 16px;
}

.image-content-description {
  color: var(--color-primary);
  font-size: var(--text-18px);
  line-height: 1.7;
  margin-block-start: 16px;
}

.image-content-title p,
.image-content-subtitle p,
.image-content-description p {
  margin: 0;
}

@media (max-width: 991px) {
  .image-content-section {
    padding-block: 48px;
  }

  .image-content-container,
  body.home .banner-section + .image-content-section .image-content-media {
    margin-block: 0px;
  }

  .image-content-wrapper {
    display: flex;
    gap: 24px;
    padding-block: 0;
  }

  .image-content-wrapper,
  .image-content-section--image_left .image-content-wrapper {
    flex-direction: column-reverse;
  }

  .image-content-wrapper::before {
    display: none;
  }

  .image-content-media,
  body.home .banner-section + .image-content-section .image-content-media {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    margin-block-end: -190px;
  }

  .image-content-media img {
    height: auto;
    margin: auto;
  }

  .image-content-body {
    max-width: 100%;
    margin-inline: 0;
    padding-block-end: 0;
    background-color: var(--color-beige);
  }

  .image-content-title {
    font-size: 36px;
  }

  .image-content-title br,
  .image-content-subtitle br {
    display: none;
  }
}

/* ==========================================================================
   Full Bleed Image Content Section — image runs to the true viewport edge
   (sits outside .container); text stays inside the normal container gutter.
   ========================================================================== */
.full-bleed-content-section {
  padding-block: 80px;
  position: relative;
}

.full-bleed-content-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.full-bleed-content-section--align-center .full-bleed-content-wrapper {
  align-items: center;
}

.full-bleed-content-section--align-bottom .full-bleed-content-wrapper {
  align-items: flex-end;
}

.full-bleed-content-section--tinted {
  background-color: var(--color-beige);
}

.full-bleed-content-section--image_left .full-bleed-content-wrapper {
  flex-direction: row-reverse;
}

.full-bleed-content-media-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.full-bleed-content-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.full-bleed-content-media:not(.full-bleed-content-slider) {
  overflow: hidden;
}

.full-bleed-content-slide {
  outline: none;
}

.full-bleed-content-body {
  flex: 1;
  max-width: 600px;
}

/* Gap between text and image sits on whichever side actually touches the
   image; the outer side keeps the standard page margin instead. */
.full-bleed-content-section--image_right .full-bleed-content-body {
  padding-inline-start: 80px;
  padding-inline-end: 36px;
}

.full-bleed-content-section--image_left .full-bleed-content-body {
  padding-inline-end: 80px;
  padding-inline-start: 36px;
}

.full-bleed-content-icons {
  position: absolute;
  bottom: calc(100% - 40px);
  inset-inline-start: -80px;
  display: flex;
  z-index: 2;
  flex-direction: column-reverse;
}

.full-bleed-content-section--image_right .full-bleed-content-icons {
  right: auto;
  inset-inline-end: -80px;
}

.full-bleed-content-icon:nth-child(2) {
  align-self: flex-end;
  position: absolute;
  bottom: 100%;
  inset-inline-start: 100%;
  width: 100%;
}

.full-bleed-content-section--image_right .full-bleed-content-icon:nth-child(2) {
  right: auto;
  inset-inline-end: 100%;
}

.full-bleed-content-title {
  position: relative;
  color: var(--color-primary);
  font-family: var(--ff-heading);
  font-size: var(--text-74px);
  letter-spacing: 0.046em;
  line-height: 1;
}

/* Starts at the title's own edge and overflows past the body's padding —
   which is exactly 80px wide — so it reaches right up to the media side.
   The gap (and so the overflow direction) sits on whichever edge of the
   body actually touches the media, which flips with --image_left/_right. */
.full-bleed-content-title-line {
  position: absolute;
  bottom: 100%;
  inset-inline-start: 0;
  width: 150%;
  height: 6px;
  background-color: var(--color-primary);
  margin-block-end: 40px;
}

.full-bleed-content-section--image_right .full-bleed-content-title-line {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

.full-bleed-content-subtitle {
  color: var(--color-primary);
  font-size: var(--text-22px);
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-block-start: 16px;
}

.full-bleed-content-description {
  color: var(--color-gray);
  font-size: var(--text-18px);
  line-height: 1.7;
  margin-block-start: 16px;
}

.full-bleed-content-title p,
.full-bleed-content-subtitle p,
.full-bleed-content-description p {
  margin: 0;
}

.full-bleed-content-link {
  margin-block-start: 24px;
}

.full-bleed-content-slide {
  aspect-ratio: 740 / 540;
}

.full-bleed-content-slide.slick-slide {
  width: 38vw;
  margin-inline-end: 12px;
}

.full-bleed-slider-arrow {
  position: absolute;
  top: 100%;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-primary);
  cursor: pointer;
}

/* Arrows aligned left (Both english & hebrew) */
body.rtl .full-bleed-content-section--image_right .full-bleed-slider-arrow,
body:not(.rtl)
  .full-bleed-content-section--image_left
  .full-bleed-slider-arrow {
  left: 0;
}

body.rtl .full-bleed-content-section--image_right .full-bleed-slider-next,
body:not(.rtl) .full-bleed-content-section--image_left .full-bleed-slider-next {
  left: 33px;
}

/* Arrows aligned right (Both english & hebrew) */
body.rtl .full-bleed-content-section--image_left .full-bleed-slider-arrow,
body:not(.rtl)
  .full-bleed-content-section--image_right
  .full-bleed-slider-arrow {
  right: 0;
}

body.rtl .full-bleed-content-section--image_left .full-bleed-slider-prev,
body:not(.rtl)
  .full-bleed-content-section--image_right
  .full-bleed-slider-prev {
  right: 33px;
}

.full-bleed-slider-arrow i {
  color: var(--color-primary);
  font-size: 22px;
}

@media (max-width: 991px) {
  .full-bleed-content-section {
    padding-block-start: 270px;
  }

  .intro-cards-section + .full-bleed-content-section,
  .full-bleed-content-section + .full-bleed-content-section {
    padding-block-start: 0;
  }

  .full-bleed-content-wrapper,
  .full-bleed-content-section--image_left .full-bleed-content-wrapper {
    flex-direction: column;
  }

  .full-bleed-content-section--align-center .full-bleed-content-wrapper {
    align-items: flex-start;
  }

  .full-bleed-content-section--tinted {
    background-color: transparent;
  }

  .full-bleed-content-media-wrapper {
    max-width: 100%;
  }

  .full-bleed-content-media-wrapper:not(:has(.slick-slider)) {
    max-width: 80%;
  }

  .full-bleed-content-section--image_left .full-bleed-content-media-wrapper {
    margin-inline-start: auto;
  }

  .full-bleed-content-section--image_right .full-bleed-content-media-wrapper {
    margin-inline-end: auto;
  }

  /* Same fix as desktop above: width-driven sizing so the slide actually
     scales with the viewport instead of being pinned to a fixed height. */
  .full-bleed-content-slide,
  .full-bleed-content-slide.slick-slide {
    width: 80vw;
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .full-bleed-content-icons {
    bottom: calc(100% - 20px);
    right: -50px;
  }

  .full-bleed-content-icon {
    width: 70px;
  }

  .full-bleed-content-body,
  .full-bleed-content-section--image_right .full-bleed-content-body,
  .full-bleed-content-section--image_left .full-bleed-content-body {
    max-width: 100%;
    margin-block-start: 24px;
    padding-inline: 34px;
  }

  .full-bleed-content-title-line,
  .full-bleed-content-section--image_right .full-bleed-content-title-line {
    width: 85%;
    inset-inline-start: -34px;
    margin-block-end: 15px;
  }

  .full-bleed-content-title {
    font-size: 40px;
  }

  .full-bleed-content-description {
    font-size: var(--text-16px);
  }
}

/* ==========================================================================
   Banner Section — full-width image (hardcoded 20% opacity) with text
   centered on top.
   ========================================================================== */
.banner-section {
  position: relative;
  height: 880px;
  overflow: hidden;
}

.banner-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: hsl(0 0% 0% / 0.3);
}

.banner-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding-inline: 20px;
  text-align: center;
  color: var(--c-white);
  font-family: var(--ff-heading);
  font-size: var(--text-95px);
  letter-spacing: 0.046em;
  line-height: 1;
}

.banner-section-text p {
  margin: 0;
}

@media (max-width: 991px) {
  .banner-section {
    height: 545px;
  }
}

/* ==========================================================================
   Card Row — repeater of image cards. 4 or fewer cards render as a plain
   centered row inside .container, no Slick instance at all. More than 4
   becomes a real infinite Slick carousel that runs full-bleed to the
   viewport edge (.card-row-bleed, sits outside .container).
   ========================================================================== */
.card-row-section {
  padding-block: 60px;
}

.card-row-section:has(+ .special-offers-section) {
  margin-block-end: -150px;
}

.card-row-title {
  color: var(--color-primary);
  text-align: center;
  margin-block-end: 70px;
}

.card-row-title p {
  margin: 0;
}

.card-row-slider {
  position: relative;
}

.card-row-slider--static {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.card-row-slider--scroll .slick-list {
  padding-inline-start: 36px;
}

.card-row-slider--scroll .card-row-item {
  margin-inline-end: 16px;
}

.card-row-item--small {
  width: 285px;
}

.card-row-item--large {
  width: 325px;
}

.card-row-card {
  position: relative;
  display: block;
  height: 550px;
  overflow: hidden;
}

.card-row-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.card-row-item:hover .card-row-image {
  transform: scale(1.05);
}

.card-row-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0 0% 0% / 60%), transparent 50%);
  pointer-events: none;
}

.card-row-content {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 16px;
  text-align: center;
}

.card-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  margin-bottom: 16px;
}

.card-row-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.card-row-divider {
  display: block;
  width: 90%;
  height: 3px;
  background-color: var(--color-beige);
  margin-bottom: 4px;
}

.card-row-text {
  color: var(--color-beige);
  font-size: var(--text-28px);
  font-weight: 600;
}

.card-row-item--large .card-row-text {
  font-size: var(--text-32px);
}

@media (max-width: 991px) {
  .container:has(.card-row-slider--scroll),
  .card-row-bleed:has(.card-row-slider--scroll) {
    padding-left: 16px;
    padding-right: 0;
  }

  .card-row-slider--scroll .slick-list {
    padding-left: 0;
  }

  .card-row-slider--scroll .card-row-item--small,
  .card-row-slider--scroll .card-row-item--large {
    width: 70vw;
  }

  .card-row-section:has(+ .special-offers-section) {
    margin-block-start: -60px;
  }

  .card-row-container {
    padding-inline-start: 0;
  }

  .card-row-card {
    height: 500px;
  }

  .card-row-title {
    font-size: 40px;
    margin-block-end: 40px;
  }

  .card-row-text {
    font-size: 22px;
  }
}

/* ==========================================================================
   Content + Cards — icon/description block full-bleed behind, with the
   card row (same markup/styles as Card Row) riding up over it via a
   negative margin-block-start so the cards half-overlap the color band.
   ========================================================================== */
.content-cards-top {
  background-color: var(--color-beige);
  padding-block: 64px 410px;
  text-align: center;
}

.content-cards-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.content-cards-description {
  max-width: 550px;
  margin-inline: auto;
  color: var(--color-primary);
  font-size: var(--text-20px);
  letter-spacing: -0.2px;
  line-height: 1.7;
}

.content-cards-description p {
  margin: 0;
}

.content-cards-row {
  margin-block-start: -350px;
  padding-block-end: 0 60px;
}

@media (max-width: 991px) {
  .content-cards-section {
    padding-block: 60px;
  }

  .content-cards-top {
    background-color: transparent;
    padding-block: 0 70px;
  }

  .content-cards-icon img {
    max-width: 75px;
  }

  .content-cards-description {
    font-size: var(--text-18px);
  }

  .content-cards-row {
    margin-block-start: 0;
    padding-block-end: 0;
  }
}

/* ==========================================================================
   Intro + Cards — logo/divider/description block full-bleed behind, cards
   riding up over it. Same overlap technique as Content + Cards, but the
   gap between the text and the cards is fixed at 125px (padding-block-end
   minus the cards' negative margin-block-start).
   ========================================================================== */
.intro-cards-top {
  background-color: var(--color-beige);
  padding-block: 64px 340px;
}

.intro-cards-top .container {
  max-width: 950px;
}

.intro-cards-logo {
  display: flex;
}

.intro-cards-logo {
  border-bottom: 3px solid var(--color-primary);
  padding-block-end: 28px;
  margin-block-end: 28px;
}

.intro-cards-logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline-start: auto;
}

.intro-cards-description {
  max-width: 550px;
  color: var(--color-primary);
  font-size: var(--text-36px);
  line-height: 1.4;
  font-weight: 300;
}

.intro-cards-description p {
  margin: 0;
}

.intro-cards-row {
  margin-block-start: -220px;
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .intro-cards-top {
    padding-block: 48px 180px;
  }

  .intro-cards-logo {
    border-bottom: none;
    margin-block-end: 0;
    padding-block-end: 54px;
  }

  .intro-cards-logo img {
    max-width: 150px;
    margin: auto;
  }

  .intro-cards-description {
    font-size: 26px;
    text-align: center;
    margin: auto;
  }

  .intro-cards-description br {
    display: none;
  }

  .intro-cards-row {
    margin-block-start: -110px;
  }
}

/* ==========================================================================
   Rooms — 2-up grid of room cards, each a gallery slider + content pairing.
   ========================================================================== */
.rooms-section {
  padding-block: 60px 150px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 20px;
}

.room-item {
  /* min-width/min-height:0 — .room-item is a grid item (.rooms-grid), and
     grid/flex items default to min-width:auto/min-height:auto, meaning
     their floor is their content's intrinsic size instead of 0. That
     default is what was actually forcing the runaway size on
     .room-item-gallery below: min-width always wins over an explicit
     width, so no width/max-width value on the gallery itself could ever
     have fixed it — confirmed by disabling every property on the gallery
     rule one at a time and seeing zero change. Root cause was here, one
     level up, not in the gallery's own box model. */
  display: flex;
  align-items: flex-start;
  min-width: 0;
  min-height: 0;
  gap: 24px;
  padding-inline-end: 12px;
  border-inline-end: 5px solid var(--color-beige);
}

.room-item-gallery {
  /* Same default (min-width/min-height:auto) applies here too, as a flex
     item of .room-item — belt and suspenders with the fix above. Now that
     the actual root cause is fixed, aspect-ratio is safe to use directly
     (it was never the bug by itself, it just triggered the min-width:auto
     trap) — width is explicit/definite, so height derives from it with no
     circularity. */
  position: relative;
  flex: 0 0 300px;
  min-width: 0;
  min-height: 0;
  width: 300px;
  aspect-ratio: 1;
  overflow: hidden;
}

.room-item-slider {
  height: 100%;
}

/* slick.js inserts .slick-list and .slick-track between .room-item-slider
   and .room-item-slide when it initializes — without their own height:100%
   the percentage chain breaks there (both default to auto), so the image
   below falls back to its own natural aspect ratio instead of filling the
   square. */
.room-item-slider .slick-list,
.room-item-slider .slick-track {
  height: 100%;
}

.room-item-slide {
  height: 100%;
}

.room-item-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-item-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 15px;
}

.room-item-slider .slick-dots li {
  margin: 0 2px;
}

.room-item-slider .slick-dots li button {
  width: 10px;
  height: 2px;
}

.room-item-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 90px;
  height: 43px;
  padding-inline: 6px;
  border-start-end-radius: 23px;
  border-end-end-radius: 23px;
  background-color: var(--color-primary);
}

.room-item-badge .percentage {
  color: var(--color-beige);
  font-size: 25px;
  font-weight: 300;
}

.room-item-badge img {
  height: 100%;
  object-fit: contain;
}

.room-item-body {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-item-title {
  color: var(--color-primary);
  font-family: var(--ff-body);
  font-size: 24px;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 12px;
}

.room-item-text {
  color: var(--color-gray);
  margin-bottom: 16px;
}

.room-item-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.room-item-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-primary);
  font-size: 14px;
}

.room-item-meta li.guests {
  max-width: 100px;
}

.room-item-meta img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.room-item-meta span {
  font-weight: 500;
}

.room-item-link {
  margin-block-start: auto;
  align-self: flex-end;
  margin-inline-end: 14px;
}

@media (max-width: 991px) {
  .rooms-section {
    padding-block-end: 70px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .room-item {
    flex-direction: column;
    align-items: stretch;
    border-inline-end: none;
    padding-inline-end: 0;
    padding-bottom: 24px;
    border-bottom: 5px solid var(--color-beige);
  }

  .room-item-gallery {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    margin: auto;
  }

  .room-item-link {
    align-self: stretch;
    width: 100%;
    margin-inline-end: 0;
  }

  .room-item-meta li:first-child {
    max-width: 100%;
  }
}

/* ==========================================================================
   Partners — logo strip with a continuous marquee scroll (Slick with
   autoplaySpeed:0 + a slow linear easing, no arrows/dots/swipe).
   ========================================================================== */
.partners-section {
  padding-block: 70px 190px;
  margin-block-start: 70px;
  overflow: hidden;
  border-top: 2px solid #b1b4ce;
}

.partners-title {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 40px;
}

.partners-slider {
  overflow: hidden;
}

.partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  border-inline-end: 1px solid #707070;
}

.partners-item img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .partners-section {
    padding-block: 0 60px;
    margin-block-start: 0;
    border-top: none;
  }

  .partners-title {
    font-size: 14px;
    letter-spacing: 2.8px;
  }
}

/* ==========================================================================
   Image Slider — editor picks Contained vs Full Width (the .container is
   rendered conditionally by the template based on that choice).
   ========================================================================== */
.image-slider-header {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
}

.image-slider-title {
  color: var(--color-primary);
  font-family: var(--ff-heading);
  font-size: var(--text-55px);
  font-weight: 700;
}

.image-slider-description {
  color: var(--color-gray);
  font-size: var(--text-18px);
  line-height: 1.7;
  margin-block-start: 16px;
}

.image-slider-slide {
  height: 600px;
  aspect-ratio: 1;
  margin-inline-end: 16px;
  overflow: hidden;
}

.image-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .image-slider-title {
    font-size: var(--text-32px);
  }

  .image-slider-slide {
    max-width: 320px;
    height: 400px;
  }
}

/* ==========================================================================
   Contact Form New — full-bleed beige background, contact details (fixed
   width) + form (flexible width), separated by a divider.
   ========================================================================== */
.contact-form-new-section {
  background-color: var(--color-beige);
  padding-block: 120px 50px;
}

.contact-form-new-wrapper {
  display: flex;
  gap: 80px;
}

.contact-form-new-details {
  flex: 0 0 320px;
  max-width: 320px;
  padding-inline-end: 40px;
  border-inline-end: 1px solid var(--color-primary);
}

.contact-form-new-details-title {
  color: var(--color-primary);
  font-size: var(--text-18px);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-form-new-details-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-new-details-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
}

a.contact-form-new-details-content:hover {
  text-decoration: underline;
}

.contact-form-new-details-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-form-new-form {
  flex: 1;
}

.contact-form-new-form-title {
  color: var(--color-primary);
  font-size: var(--text-55px);
  margin-bottom: 16px;
}

.contact-form-new-form-description {
  max-width: 600px;
  color: var(--color-primary);
  font-size: var(--text-20px);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-form-new-form-description p {
  margin: 0;
}

.contact-form-new-form-shortcode {
  --wpforms-field-size-input-spacing: 0;
  --wpforms-field-background-color: transparent;
  --wpforms-field-border-size: 0;
  --wpforms-field-size-input-height: auto;
  --wpforms-button-background-color-alt: transparent;
  --wpforms-button-border-color: var(--color-primary);
  --wpforms-button-text-color: var(--color-primary);
  --wpforms-button-border-style: solid;
  --wpforms-button-border-radius: 0;
  --wpforms-label-color: var(--color-primary);
  --wpforms-label-size-font-size: var(var(--text-18px));
  --wpforms-field-border-radius: 0;
  --wpforms-button-size-height: 50px;
  --wpforms-button-size-font-size: 16px;
  --wpforms-field-text-color: var(--color-primary);
}

.contact-form-new-form-shortcode
  div.wpforms-container-full
  .wpforms-form
  .wpforms-error-container {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form-new-form-shortcode .wpforms-field-layout-rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form-new-form-shortcode
  div.wpforms-container
  .wpforms-form
  .wpforms-field-layout
  .wpforms-layout-row {
  margin-right: 0;
  margin-left: 0;
  gap: 80px;
}

.contact-form-new-form-shortcode
  div.wpforms-container
  .wpforms-form
  .wpforms-field-layout
  .wpforms-layout-column {
  padding: 0;
}

.contact-form-new-form-shortcode
  .wpforms-container
  .wpforms-field:not(.wpforms-field-layout) {
  display: flex;
  border-bottom: 1px solid var(--color-primary);
  padding: 0;
}

.contact-form-new-form-shortcode
  .wpforms-container
  .wpforms-field.wpforms-has-error {
  border-bottom-color: var(--wpforms-label-error-color);
}

.contact-form-new-form-shortcode
  .wpforms-container
  .wpforms-field.wpforms-has-error
  em.wpforms-error {
  display: none !important;
}

.contact-form-new-form-shortcode
  .wpforms-container
  .wpforms-form
  .wpforms-field-label {
  flex-shrink: 0;
  font-weight: 400;
}

.contact-form-new-form-shortcode div.wpforms-container-full input {
  padding-block-end: 10px !important;
}

.contact-form-new-form-shortcode div.wpforms-container-full input:focus,
.contact-form-new-form-shortcode
  div.wpforms-container-full
  .wpforms-form
  .wpforms-field
  input.wpforms-error:hover {
  box-shadow: none !important;
}

.wpforms-form input[type="number"]::-webkit-outer-spin-button,
.wpforms-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.wpforms-form input[type="number"] {
  -moz-appearance: textfield !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  display: flex;
  justify-content: flex-end;
}

.contact-form-new-form-shortcode
  div.wpforms-container-full
  button[type="submit"] {
  font-weight: 700;
  letter-spacing: 0.1875em;
  min-width: 100px;
}

.contact-form-new-form-shortcode
  div.wpforms-container-full
  button[type="submit"]:hover {
  background: var(--color-primary);
  color: var(--color-beige);
}

.contact-form-new-form-shortcode
  div.wpforms-container-full
  .wpforms-form
  .wpforms-submit-spinner {
  align-self: center;
}

@media (max-width: 991px) {
  .contact-form-new-section {
    padding-block: 48px;
  }

  .contact-form-new-wrapper {
    flex-direction: column-reverse;
    gap: 46px;
  }

  .contact-form-new-details {
    flex: none;
    max-width: 100%;
    padding-inline-end: 0;
    border-inline-end: none;
  }

  .contact-form-new-form-title {
    font-size: 40px;
  }

  .contact-form-new-form-description {
    font-size: var(--text-16px);
  }

  .contact-form-new-form-shortcode
    div.wpforms-container
    .wpforms-form
    .wpforms-field-layout
    .wpforms-layout-row {
    gap: 40px;
  }

  div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  /* Override for events page */
  .page-template-events {
    .full-bleed-content-wrapper,
    .full-bleed-content-section--image_left .full-bleed-content-wrapper {
      flex-direction: column-reverse;
      gap: 54px;
    }

    .full-bleed-content-body,
    .full-bleed-content-section--image_right .full-bleed-content-body,
    .full-bleed-content-section--image_left .full-bleed-content-body {
      margin-block-start: 0;
    }
  }
}

/* 404 page start */
/* main--offset-header already pushes this down by --header-height (no hero
   on this page), so sizing against the full 100dvh here would run the page
   past one screen. Subtracting the header height keeps header + section
   together at exactly one viewport, while still growing for taller content. */
.not-found-section {
  display: flex;
  align-items: center;
  min-height: 50dvh;
}

.not-found-section .container {
  width: 100%;
}

.not-found-section h1 {
  font-size: var(--text-74px);
}
/* 404 page end */

.hero-banner.inner-banner {
  padding-block: 2rem;
}

.single-page-content {
  padding-bottom: 60px;
}

.single-page-content h1,
.single-page-content h2,
.single-page-content h3 {
  font-size: var(--text-55px);
}

@media (max-width: 767px) {
  .single-page-content {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
