@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;

  background: var(--white);

  color: var(--black);

  overflow-x: hidden;
}


body {
  font-family: var(--font-primary);
  background: var(--color-black);
  color: var(--color-white);
}


.site-header {
  position: fixed !important;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 9999;

  background: linear-gradient(to bottom,
      rgba(3, 12, 22, 0.78),
      rgba(3, 12, 22, 0));

  transform: translateY(0);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.header-hidden {
  transform: translateY(-105%);
}

.site-header.header-visible {
  transform: translateY(0);

  background: rgba(3, 12, 22, 0.94);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.18);
}

.site-header:not(.header-scrolled) {
  box-shadow: none;
}

.site-header.header-scrolled {
  background: rgba(3, 12, 22, 0.94);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.16);
}

.header-inner {
  min-height: 82px;
  padding: var(--space-30) 0;
}


.header-inner {
  min-height: 82px;
  padding: var(--space-30) 0;

  transition:
    min-height 0.35s ease,
    padding 0.35s ease;
}


.site-logo {
  flex-shrink: 0;
  gap: var(--space-10);
}

.site-logo img {
  width: 190px;
  height: auto;
  object-fit: contain;

  transition:
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s ease;
}


/* =========================================================
   SCROLLED HEADER
   Logo + Header become smaller
========================================================= */

.site-header.header-scrolled .header-inner {
  min-height: 64px;
  padding: 12px 0;
}

.site-header.header-scrolled .site-logo img {
  width: 145px;
}

/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.main-navigation {
  margin-left: auto;
  margin-right: var(--space-40);
}

.navigation-list {
  margin: 0;
  padding: 0;
}

.navigation-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 72px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 16px;
  font-weight: 500;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.navigation-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;

  width: 0;
  height: 2px;

  background: var(--color-secondary);

  transition: width 0.3s ease;
}

.navigation-list a:hover,
.navigation-list a.active {
  color: var(--color-secondary);
}

.navigation-list a:hover::after,
.navigation-list a.active::after {
  width: 100%;
}

/* ---------------------------------------------------------
   HEADER ACTIONS
   --------------------------------------------------------- */

.header-actions {
  flex-shrink: 0;
}

.header-booking {
  position: relative;
  min-height: 52px;
  padding: 0 25px;
  gap: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;


  border-radius: 50px;

  background: #e09a03;
  color: #ffffff;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;

  overflow: hidden;
  isolation: isolate;

  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Cream hover */
.header-booking::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #fff8ed;

  transform: translateX(-101%);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: -1;
}

.header-booking span,
.header-booking i {
  position: relative;
  z-index: 2;
}

.header-booking i {
  font-size: 13px;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.header-booking:hover {
  color: #bd8305;
  border-color: #bd8305;

  box-shadow:
    0 12px 30px rgba(189, 131, 5, 0.25);
}

.header-booking:hover::before {
  transform: translateX(0);
}

.header-booking:hover i {
  transform: translateX(6px);
  color: #bd8305;
}

.header-booking:active {
  transform: translateY(-1px);
}


/* ---------------------------------------------------------
   MOBILE MENU
   --------------------------------------------------------- */

.mobile-menu-btn {
  display: none;

  width: 44px;
  height: 44px;

  background: transparent;
}

.mobile-menu-btn span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: var(--color-white);
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding-top: 150px;

  background: var(--color-black);
}

/* ---------------------------------------------------------
   VIDEO
   --------------------------------------------------------- */

.hero-video-wrap {
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}







/* ---------------------------------------------------------
   SCROLL
   --------------------------------------------------------- */

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 100px;

  z-index: 4;

  display: flex;
  align-items: center;
  gap: 12px;

  transform: translateX(-50%);
  text-decoration: none;
  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease;

  color: rgba(255, 255, 255, 0.8);

  font-size: 12px;
}

.hero-scroll:hover {
  color: var(--color-secondary);
}

.hero-scroll:hover .scroll-circle {
  border-color: var(--color-secondary);
  transform: translateY(4px);
}



.scroll-circle {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.scroll-circle i {
  font-size: 12px;
}

#about {
  scroll-margin-top: 90px;
}

/* ---------------------------------------------------------
   BOTTOM FEATURES
   --------------------------------------------------------- */


@media (max-width: 1200px) {
  .main-navigation {
    margin-right: var(--space-20);
  }

  .navigation-list {
    gap: 20px !important;
  }

}

/* =========================================================
   MOBILE NAVIGATION — PREMIUM FULL HEIGHT SIDEBAR
========================================================= */

@media (max-width: 991px) {

  .site-header {
    padding-top: var(--space-15);
    padding-bottom: var(--space-15);
  }


  .main-navigation {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;

    width: min(320px, 86vw) !important;
    height: 100dvh !important;
    min-height: 100dvh !important;

    margin: 0 !important;
    padding: 105px 30px 40px !important;

    background:
      linear-gradient(180deg,
        rgba(4, 13, 22, 0.99) 0%,
        rgba(3, 12, 20, 0.985) 100%);

    box-shadow:
      15px 0 45px rgba(0, 0, 0, 0.28);

    overflow-y: auto;
    overflow-x: hidden;

    transform: translateX(-105%);

    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    z-index: 10001;

    visibility: hidden;
  }

  .main-navigation.menu-open {
    transform: translateX(0);

    visibility: visible;
  }

  .navigation-list {
    display: flex !important;

    flex-direction: column !important;
    align-items: stretch !important;

    width: 100%;

    gap: 0 !important;

    margin: 0;
    padding: 0;
  }

  .navigation-list li {
    width: 100%;
  }

  .navigation-list a {
    position: relative;

    display: flex;

    width: 100%;
    height: auto;

    min-height: 62px;

    padding: 16px 0;

    align-items: center;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;
    font-weight: 500;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition:
      color 0.3s ease,
      padding-left 0.3s ease;
  }


  .navigation-list a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--color-primary);

    transition: width 0.35s ease;
  }

  .navigation-list a:hover,
  .navigation-list a.active {
    color: var(--color-primary);

    padding-left: 8px;
  }

  .navigation-list a:hover::after,
  .navigation-list a.active::after {
    width: 100%;
  }


  .mobile-menu-btn {
    position: relative;

    display: block;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    z-index: 10003;
  }

  .mobile-menu-btn span {
    position: relative;

    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--color-white);

    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }


  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  .site-header:has(.main-navigation.menu-open) {
    transform: translateY(0) !important;
  }

  .site-header:has(.main-navigation.menu-open) .header-inner {
    position: relative;
    z-index: 10002;
  }

  .hero-section {
    min-height: 78vh;
    height: 78vh;
    padding-top: 110px;
  }

}

@media (max-width: 767px) {
  .header-inner {
    min-height: 68px;
  }

  #about {
    scroll-margin-top: 80px;
  }

  .site-logo img {
    width: 145px;
    height: auto;
  }

  .site-header.header-scrolled .site-logo img {
    width: 115px;
  }

  .site-header.header-scrolled .header-inner {
    min-height: 58px;
    padding: 8px 0;
  }

  .header-inner {
    min-height: 68px;
    padding: 0;
  }

  .main-navigation {
    padding-top: 90px;
  }

  .header-actions {
    gap: 8px !important;
  }


  .social-links {
    display: none !important;
  }

  .header-booking {
    min-height: 44px;

    padding-left: 15px;
    padding-right: 15px;
  }

  .header-booking i {
    display: none;
  }

  .hero-section {
    min-height: 68vh;
    height: 68vh;
    padding-top: 100px;
  }

}

@media (max-width: 575px) {
  .hero-section {
    min-height: 62vh;
    height: 62vh;
    padding-top: 90px;
  }
}

@media (max-width: 420px) {
  .hero-section {
    min-height: 58vh;
    height: 58vh;
    padding-top: 85px;
  }
}

/* =========================================================
   PREMIUM EXPERIENCE FEATURE SECTION
========================================================= */

.experience-feature-section {
  position: relative;
  overflow: hidden;

  padding: 110px 0;

  background:
    radial-gradient(circle at 85% 15%,
      rgba(189, 131, 5, 0.055),
      transparent 30%),
    #ffffff;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.experience-feature-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr) minmax(0, 1.1fr);

  align-items: center;

  gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.experience-feature-content {
  position: relative;
  z-index: 2;

  max-width: 620px;
}


/* =========================================================
   EYEBROW
========================================================= */

.experience-feature-eyebrow {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 46px;

  padding: 7px 18px 7px 10px;

  border: 1px solid rgba(189, 131, 5, 0.12);

  border-radius: 50px;

  background:
    linear-gradient(135deg,
      rgba(189, 131, 5, 0.10),
      rgba(189, 131, 5, 0.025));


  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.experience-feature-eyebrow span {
  color: var(--color-primary);

  font-size: 14px;

}


.experience-feature-eyebrow-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: rgba(189, 131, 5, 0.10);

  color: var(--color-primary);

  font-size: 12px;

  line-height: 1;
}


/* =========================================================
   HEADING
========================================================= */

.experience-feature-content h2 {
  max-width: 620px;

  margin: 20px 0 20px;

  color: var(--dark-blue);

  font-family: var(--font-secondary);

  font-size: clamp(2.5rem, 4vw, 4rem);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -2.5px;
}


.experience-feature-content h2 span {
  display: block;

  color: var(--color-primary);

  font-style: italic;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.experience-feature-description {
  max-width: 560px;

  margin: 0 0 32px;

  color: #626872;

  font-size: 15px;

  line-height: 1.4;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.experience-feature-list {
  display: flex;

  flex-direction: column;

  gap: 13px;

  max-width: 590px;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.experience-feature-item {
  display: flex;

  align-items: center;

  gap: 18px;

  min-height: 88px;

  padding: 14px 18px;

  border: 1px solid rgba(16, 35, 61, 0.055);

  border-radius: 16px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 1),
      rgba(248, 249, 251, 0.9));

  box-shadow:
    0 8px 28px rgba(16, 35, 61, 0.045);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.experience-feature-item:hover {
  transform: translateX(5px);

  border-color: rgba(189, 131, 5, 0.20);

  box-shadow:
    0 15px 35px rgba(16, 35, 61, 0.08);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.experience-feature-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 54px;

  width: 54px;
  height: 54px;

  border-radius: 50%;
  background:
    linear-gradient(135deg,
      rgba(189, 131, 5, 0.10),
      rgba(189, 131, 5, 0.025));

  color: var(--color-secondary);

  font-size: 20px;

  line-height: 1;

  box-shadow:
    0 8px 20px rgba(16, 35, 61, 0.15);
}


.experience-feature-icon i {
  display: block;

  margin: 0;

  line-height: 1;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.experience-feature-item-content {
  min-width: 0;
}


.experience-feature-item-content h4 {
  margin: 0 0 5px;

  color: var(--dark-blue);

  font-family: var(--font-primary);

  font-size: 17px;

  font-weight: 700;

  line-height: 1.35;
}


.experience-feature-item-content p {
  margin: 0;

  color: #737983;

  font-size: 15px;

  line-height: 1.3;
}


/* =========================================================
   BUTTONS
========================================================= */

.experience-feature-actions {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 30px;
}



/* =========================================================
   RIGHT VISUAL
========================================================= */

.experience-feature-visual {
  position: relative;

  min-height: 620px;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.experience-main-image {
  position: relative;

  width: calc(100% - 45px);

  height: 600px;

  margin-left: auto;

  overflow: hidden;

  border-radius: 28px;

  box-shadow:
    0 30px 70px rgba(16, 35, 61, 0.16);
}


.experience-main-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}


.experience-feature-visual:hover .experience-main-image img {
  transform: scale(1.025);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.experience-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(16, 35, 61, 0.02) 35%,
      rgba(16, 35, 61, 0.22) 100%);

  pointer-events: none;
}


/* =========================================================
   GUEST BADGE
========================================================= */

.experience-guest-badge {
  position: absolute;

  top: 35px;
  left: 0;

  z-index: 5;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 108px;
  min-height: 150px;

  padding: 15px;

  border-radius: 18px;
  background: var(--dark-blue);

  /* background: linear-gradient(135deg,
      rgb(255, 233, 186),
      rgb(155, 107, 2)); */

  color: #ffffff;

  text-align: center;

  box-shadow:
    0 18px 40px rgba(16, 35, 61, 0.25);
}


.experience-guest-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  margin-bottom: 7px;

  /* color: var(--color-secondary); */

  font-size: 28px;

  line-height: 1;
}


.experience-guest-badge span {
  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  line-height: 1.3;
}



.experience-guest-badge b {
  margin: 1px 0;

  color: #ffffff;

  font-family: var(--font-secondary);

  font-size: 40px;

  font-weight: 500;

  line-height: 0.95;
}


.experience-guest-badge small {
  font-size: 12px;

  font-weight: 500;

  letter-spacing: 1px;
}




/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .experience-feature-section {
    padding: 90px 0;
  }


  .experience-feature-layout {
    gap: 45px;
  }


  .experience-feature-content h2 {
    font-size: clamp(2.7rem, 5vw, 4rem);
  }


  .experience-feature-visual {
    min-height: 580px;
  }


  .experience-main-image {
    width: calc(100% - 30px);

    height: 540px;
  }


}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

  .experience-feature-section {
    padding: 80px 0;
  }


  .experience-feature-layout {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .experience-feature-content {
    max-width: 720px;
  }


  .experience-feature-content h2 {
    max-width: 680px;
  }


  .experience-feature-description {
    max-width: 650px;
  }


  .experience-feature-list {
    max-width: 680px;
  }


  .experience-feature-visual {
    min-height: 650px;
  }


  .experience-main-image {
    width: calc(100% - 55px);

    height: 600px;
  }


  .experience-guest-badge {
    left: 10px;
  }



}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .experience-feature-section {
    padding: 65px 0;
  }


  .experience-feature-layout {
    gap: 45px;
  }


  /* Eyebrow */

  .experience-feature-eyebrow {
    min-height: 42px;

    padding: 6px 15px 6px 8px;

    font-size: 10px;

    letter-spacing: 1px;
  }


  .experience-feature-eyebrow-icon {
    width: 28px;
    height: 28px;

    flex-basis: 28px;
  }


  /* Heading */

  .experience-feature-content h2 {
    margin-top: 20px;

    font-size: clamp(2.5rem, 10vw, 3.5rem);

    letter-spacing: -1.5px;
  }


  /* Description */

  .experience-feature-description {
    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.4;
  }


  /* Feature */

  .experience-feature-list {
    gap: 10px;
  }


  .experience-feature-item {
    min-height: 78px;

    padding: 11px 13px;

    gap: 14px;

    border-radius: 14px;
  }


  .experience-feature-icon {
    flex-basis: 46px;

    width: 46px;
    height: 46px;

    font-size: 17px;
  }


  .experience-feature-item-content h4 {
    margin-bottom: 4px;

    font-size: 15px;
  }


  .experience-feature-item-content p {
    font-size: 14px;
  }


  /* Buttons */

  .experience-feature-actions {
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
  }


  .experience-primary-button,
  .experience-secondary-button {
    min-height: 52px;

    padding: 0 18px;

    font-size: 11px;
  }


  /* Visual */

  .experience-feature-visual {
    min-height: 450px;
  }


  .experience-main-image {
    width: calc(100% - 25px);

    height: 470px;

    border-radius: 22px;
  }


  /* Guest badge */

  .experience-guest-badge {
    top: 20px;
    left: 0;

    width: 88px;

    min-height: 125px;

    padding: 12px;

    border-radius: 14px;
  }


  .experience-guest-icon {
    width: 30px;
    height: 30px;

    font-size: 14px;
  }


  .experience-guest-badge b {
    font-size: 32px;
  }



}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

  .experience-feature-section {
    padding: 55px 0;
  }


  .experience-feature-content h2 {
    font-size: clamp(2.3rem, 12vw, 3rem);
  }


  .experience-feature-divider {
    margin-bottom: 20px;
  }


  .experience-feature-divider span {
    width: 60px;
  }


  .experience-feature-actions {
    flex-direction: column;

    align-items: stretch;

    width: 100%;
  }


  .experience-primary-button,
  .experience-secondary-button {
    width: 100%;
  }


  /* Visual */

  .experience-feature-visual {
    min-height: 375px;
  }


  .experience-main-image {
    width: 100%;

    height: 360px;

    border-radius: 18px;
  }


  .experience-guest-badge {
    top: 15px;
    left: 12px;

    width: 82px;

    min-height: 115px;
  }


  .experience-guest-badge b {
    font-size: 29px;
  }



}

/* =========================================================
   HOME AWARDS / RECOGNITION MARQUEE
========================================================= */

.home-awards-section {
  --award-size: 105px;
  --award-gap: 65px;

  position: relative;

  width: 100%;

  padding: 32px 0 38px;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #faf8f3 100%);

  border-top: 1px solid rgba(189, 131, 5, 0.10);
  border-bottom: 1px solid rgba(189, 131, 5, 0.10);
}


/* =========================================================
   HEADING
========================================================= */

.home-awards-heading {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-bottom: 25px;

  color: var(--color-primary);

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 0.28em;

  text-transform: uppercase;
}


.home-awards-line {
  width: 38px;
  height: 1px;

  background: rgba(189, 131, 5, 0.35);
}


/* =========================================================
   MARQUEE
========================================================= */

.home-awards-marquee {
  position: relative;

  width: 100%;

  overflow: hidden;
}


/* =========================================================
   SOFT EDGE FADE
========================================================= */

.home-awards-marquee::before,
.home-awards-marquee::after {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  width: 120px;

  z-index: 5;

  pointer-events: none;
}


.home-awards-marquee::before {
  left: 0;

  background:
    linear-gradient(90deg,
      #faf8f3 0%,
      rgba(250, 248, 243, 0) 100%);
}


.home-awards-marquee::after {
  right: 0;

  background:
    linear-gradient(270deg,
      #faf8f3 0%,
      rgba(250, 248, 243, 0) 100%);
}


/* =========================================================
   TRACK
========================================================= */

.home-awards-track {
  display: flex;

  align-items: center;

  width: max-content;

  gap: var(--award-gap);

  will-change: transform;

  animation:
    homeAwardsScroll 24s linear infinite;
}


/* =========================================================
   EACH COMPLETE SET
========================================================= */

.home-awards-group {
  display: flex;

  align-items: center;

  flex: 0 0 auto;

  gap: var(--award-gap);
}


/* =========================================================
   AWARD ITEM
========================================================= */

.home-award-item {
  flex: 0 0 var(--award-size);

  width: var(--award-size);
  height: var(--award-size);

  display: flex;

  align-items: center;
  justify-content: center;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}


.home-award-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;


  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.home-award-item:hover {
  transform: translateY(-4px);
}


.home-award-item:hover img {
  transform: scale(1.06);

  filter:
    drop-shadow(0 12px 22px rgba(189, 131, 5, 0.20));
}


/* =========================================================
   TRUE SEAMLESS INFINITE LOOP

   5 × 105px = 525px
   4 × 65px  = 260px

   Complete group = 785px
   Track gap      = 65px

   Total movement = 850px
========================================================= */

@keyframes homeAwardsScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-850px);
  }

}


/* =========================================================
   PAUSE
========================================================= */

.home-awards-marquee:hover .home-awards-track {
  animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .home-awards-section {
    --award-size: 90px;
    --award-gap: 50px;

    padding: 28px 0 32px;
  }


  .home-awards-heading {
    margin-bottom: 20px;

  }


  .home-awards-track {
    animation-duration: 21s;
  }


  /* 
     5 × 90 = 450
     4 × 50 = 200
     group = 650
     + track gap 50
     = 700
  */

  @keyframes homeAwardsScroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-700px);
    }

  }


  .home-awards-marquee::before,
  .home-awards-marquee::after {
    width: 80px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .home-awards-section {
    --award-size: 75px;
    --award-gap: 38px;

    padding: 25px 0 28px;
  }


  .home-awards-heading {
    gap: 10px;

    margin-bottom: 18px;

    font-size: 12px;

    letter-spacing: 0.20em;
  }


  .home-awards-line {
    width: 25px;
  }


  .home-awards-track {
    animation-duration: 18s;
  }


  /*
     5 × 75 = 375
     4 × 38 = 152
     group = 527
     + track gap 38
     = 565
  */

  @keyframes homeAwardsScroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-565px);
    }

  }


  .home-awards-marquee::before,
  .home-awards-marquee::after {
    width: 45px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .home-awards-section {
    --award-size: 68px;
    --award-gap: 32px;
  }


  .home-awards-track {
    animation-duration: 16s;
  }


  /*
     5 × 68 = 340
     4 × 32 = 128
     group = 468
     + track gap 32
     = 500
  */

  @keyframes homeAwardsScroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-500px);
    }

  }

}


/* =========================================================
   GIFT VOUCHER SECTION
========================================================= */
.gift-voucher-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 120px 0;

  background:
    radial-gradient(circle at 85% 15%,
      rgba(189, 131, 5, 0.055),
      transparent 30%),
    #ffffff;
}


/* =========================================================
   LARGE ROTATING CIRCLE FIELD
========================================================= */

.gift-voucher-section::before,
.gift-voucher-section::after {
  content: "";
  position: absolute;

  pointer-events: none;

  border-radius: 50%;

  z-index: -1;
}


/* =========================================================
   LARGE GOLD CIRCLE
========================================================= */

.gift-voucher-section::before {
  width: 700px;
  height: 700px;

  top: -320px;
  right: -230px;

  border: 1px solid rgba(229, 156, 0, 0.384);

  box-shadow:
    0 0 0 70px #e59c000f,
    0 0 0 140px #e59c000c,
    0 0 0 210px #e59c0006;

  animation:
    giftCircleRotate 28s linear infinite;
}


/* =========================================================
   LARGE CREAM CIRCLE
========================================================= */

.gift-voucher-section::after {
  width: 600px;
  height: 600px;

  left: -270px;
  bottom: -300px;

  border: 1px solid rgba(229, 156, 0, 0.384);

  box-shadow:
    0 0 0 60px #e59c0006,
    0 0 0 120px #e59c000c,
    0 0 0 180px #e59c000f;

  animation:
    giftCircleRotateReverse 34s linear infinite;
}


/* =========================================================
   ROTATION
========================================================= */

@keyframes giftCircleRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes giftCircleRotateReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}



/* =========================================================
   WRAPPER
========================================================= */

.gift-voucher-wrapper {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr) minmax(0, 1.05fr);

  align-items: center;

  gap: 80px;
}


.gift-voucher-wrapper::before,
.gift-voucher-wrapper::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}


/* Small gold circle */

.gift-voucher-wrapper::before {
  width: 160px;
  height: 160px;

  top: 5%;
  left: 38%;

  border: 1px solid rgba(229, 156, 0, 0.14);

  box-shadow:
    0 0 0 30px rgba(229, 156, 0, 0.096),
    0 0 0 60px rgba(229, 156, 0, 0.068);

  animation:
    giftFloatingCircle 12s ease-in-out infinite;
}


/* Small cream circle */

.gift-voucher-wrapper::after {
  width: 110px;
  height: 110px;

  right: 7%;
  top: 12%;

  border: 1px solid rgba(245, 237, 223, 0.14);

  animation:
    giftFloatingCircleReverse 15s ease-in-out infinite;
}


@keyframes giftFloatingCircle {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform:
      translate3d(25px, -25px, 0) rotate(180deg);
  }

}


@keyframes giftFloatingCircleReverse {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0) rotate(360deg);
  }

  50% {
    transform:
      translate3d(-20px, 25px, 0) rotate(180deg);
  }

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.gift-voucher-content {
  position: relative;
  z-index: 2;

  max-width: 590px;
}


/* =========================================================
   EYEBROW
========================================================= */

.gift-voucher-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 24px;

  color: var(--color-primary);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.24em;

  text-transform: uppercase;
}

.gift-voucher-eyebrow-line {
  width: 42px;
  height: 1px;

  background: var(--color-primary);
}

.gift-voucher-content .experience-feature-eyebrow {
  color: #e5c98c;
}

/* =========================================================
   HEADING
========================================================= */

.gift-voucher-content h2 {
  margin: 0 0 25px;

  color: var(--dark-blue);

  font-family: var(--font-secondary);

  font-size: clamp(2.5rem, 4vw, 4rem);

  font-weight: 400;

  line-height: 1.05;
}

.gift-voucher-content h2 span {
  display: block;

  color: var(--color-primary);

  font-style: italic;
}


/* =========================================================
   INTRO
========================================================= */

.gift-voucher-intro {
  max-width: 550px;

  margin: 0 0 32px;

  color: #626872;

  font-size: 16px;

  line-height: 1.4;
}



.gift-voucher-occasions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 35px;
}


/* =========================================================
   OCCASION BUTTON
========================================================= */

.gift-voucher-occasion {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 11px;

  min-height: 50px;

  padding: 0 21px;

  /* border: 1px solid rgba(229, 156, 0, 0.28); */

  border-radius: 50px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025));

  color: var(--dark-blue);

  font-family: inherit;

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.035em;

  line-height: 1;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 25px rgba(0, 0, 0, 0.18);

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}



/* =========================================================
   ICON
========================================================= */

.gift-voucher-occasion i {
  color: var(--color-primary);

  font-size: 18px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


/* =========================================================
   BUTTON TEXT
========================================================= */

.gift-voucher-occasion span {
  color: inherit;
}


/* =========================================================
   HOVER
========================================================= */

.gift-voucher-occasion:hover {
  color: #111111;

  background:
    linear-gradient(135deg,
      #f5eddf 0%,
      #e7c982 45%,
      #d9a441 100%);

  border-color: #d9a441;

  /* transform: translateY(-4px); */

  box-shadow:
    0 14px 30px rgba(229, 156, 0, 0.20),
    0 0 25px rgba(229, 156, 0, 0.08);
}


.gift-voucher-occasion:hover i {
  color: #111111;

  transform:
    scale(1.15) rotate(-8deg);
}


/* =========================================================
   ACTIVE BUTTON
========================================================= */

.gift-voucher-occasion.is-active {
  color: #111111;

  background:
    linear-gradient(135deg,
      #d19a42 0%,
      #e9d19a 48%,
      #d9a441 100%);


  box-shadow:
    0 12px 32px rgba(229, 156, 0, 0.22),
    0 0 35px rgba(229, 156, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}


.gift-voucher-occasion.is-active i {
  color: #111111;
}



/* =========================================================
   CTA AREA
========================================================= */

.gift-voucher-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 25px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.gift-voucher-primary-button {
  min-height: 58px;

  padding: 0 27px;

  background: var(--color-primary);

  color: #ffffff;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  box-shadow:
    0 12px 30px rgba(189, 131, 5, 0.18);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gift-voucher-primary-button i {
  color: #ffffff;

  transition: transform 0.3s ease;
}

.gift-voucher-primary-button:hover {
  background: #d99a0a;

  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(189, 131, 5, 0.28);
}

.gift-voucher-primary-button:hover i {
  transform: translateX(5px);
}


/* =========================================================
   CTA NOTE
========================================================= */

.gift-voucher-note {
  display: inline-flex;

  align-items: center;
  font-weight: 500;
  gap: 8px;

  color: var(--dark-blue);

  font-size: 16px;
}

.gift-voucher-note i {
  color: var(--color-primary);

  font-size: 16px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.gift-voucher-visual {
  position: relative;

  min-height: 570px;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* =========================================================
   GOLD GLOW
========================================================= */

.gift-voucher-glow {
  position: absolute;

  width: 470px;
  height: 470px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(189, 131, 5, 0.22) 0%,
      rgba(189, 131, 5, 0.09) 40%,
      transparent 72%);

  filter: blur(5px);

  pointer-events: none;
}


/* =========================================================
   CERTIFICATE OUTER FRAME
========================================================= */

.gift-certificate {
  position: relative;

  z-index: 2;

  width: min(100%, 590px);

  min-height: 390px;

  padding: 12px;

  background:
    linear-gradient(135deg,
      #8d5c05 0%,
      #e2b64c 22%,
      #a87313 50%,
      #f0ca67 75%,
      #8d5c05 100%);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.35),
    0 12px 30px rgba(189, 131, 5, 0.16);

  transform: rotate(-2deg);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.gift-certificate:hover {
  transform: rotate(0deg) translateY(-7px);

  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.42),
    0 18px 35px rgba(189, 131, 5, 0.22);
}


/* =========================================================
   CERTIFICATE INNER
========================================================= */

.gift-certificate-inner {
  position: relative;

  min-height: 366px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.65);

  background: #111111;
}


/* =========================================================
   CERTIFICATE IMAGE
========================================================= */

.gift-certificate-inner img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 1;

  transform: scale(1);

  transition:
    opacity 0.35s ease,
    transform 0.7s ease;
}


/* =========================================================
   IMAGE CHANGING STATE
========================================================= */

.gift-certificate-inner img.is-changing {
  opacity: 0;

  transform: scale(1.03);
}


.gift-certificate:hover .gift-certificate-inner img {
  transform: scale(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gift-certificate-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(0, 38, 83, 0.12) 0%,
      rgba(0, 38, 83, 0.28) 45%,
      rgba(0, 18, 40, 0.88) 100%);
}


/* =========================================================
   INNER BORDER
========================================================= */

.gift-certificate-inner::before {
  content: "";

  position: absolute;

  z-index: 4;

  inset: 15px;

  border: 1px solid rgba(255, 255, 255, 0.38);

  pointer-events: none;
}




/* =========================================================
   CERTIFICATE DIVIDER
========================================================= */

.gift-certificate-divider {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin: 18px auto;
}

.gift-certificate-divider span {
  width: 48px;

  height: 1px;

  background: rgba(255, 255, 255, 0.4);
}

.gift-certificate-divider i {
  color: var(--color-primary);

  font-size: 8px;
}




/* =========================================================
   DECORATIVE CORNERS
========================================================= */

.gift-certificate-corner {
  position: absolute;

  z-index: 6;

  width: 24px;
  height: 24px;

  border-color: rgba(255, 255, 255, 0.7);

  border-style: solid;

  pointer-events: none;
}

.gift-certificate-corner.top-left {
  top: 25px;
  left: 25px;

  border-width: 1px 0 0 1px;
}

.gift-certificate-corner.top-right {
  top: 25px;
  right: 25px;

  border-width: 1px 1px 0 0;
}

.gift-certificate-corner.bottom-left {
  bottom: 25px;
  left: 25px;

  border-width: 0 0 1px 1px;
}

.gift-certificate-corner.bottom-right {
  right: 25px;
  bottom: 25px;

  border-width: 0 1px 1px 0;
}


/* =========================================================
   FLOATING BADGE
========================================================= */

.gift-voucher-floating-badge {
  position: absolute;

  z-index: 8;

  right: -15px;

  bottom: 55px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 18px;

  background: var(--dark-blue);

  border: 1px solid rgba(189, 131, 5, 0.35);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3);

  color: #ffffff;

  transform: rotate(3deg);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.gift-voucher-floating-badge:hover {
  transform: rotate(0deg) translateY(-3px);

  border-color: rgba(189, 131, 5, 0.65);
}


/* =========================================================
   FLOATING ICON
========================================================= */

.gift-voucher-floating-icon {
  width: 38px;
  height: 38px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border: 1px solid rgba(189, 131, 5, 0.7);

  border-radius: 50%;

  color: var(--color-primary);

  font-size: 14px;
}


/* =========================================================
   FLOATING TEXT
========================================================= */

.gift-voucher-floating-badge div {
  display: flex;

  flex-direction: column;

  gap: 2px;
}

.gift-voucher-floating-badge small {
  color: rgba(255, 255, 255, 0.5);

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.15em;
}

.gift-voucher-floating-badge strong {
  color: #ffffff;

  font-size: 14px;

  letter-spacing: 0.08em;
}


/* =========================================================
   TABLET — 1100px
========================================================= */

@media (max-width: 1100px) {

  .gift-voucher-wrapper {
    gap: 50px;
  }

  .gift-voucher-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
  }

  .gift-voucher-visual {
    min-height: 500px;
  }

}


/* =========================================================
   TABLET — 991px
========================================================= */
/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 991px) {

  .gift-voucher-section {
    padding: 90px 0;
  }


  /* -------------------------------------------------------
     MAIN WRAPPER
  ------------------------------------------------------- */

  .gift-voucher-wrapper {
    display: flex;

    flex-direction: column;

    gap: 0;

    align-items: stretch;
  }


  /* -------------------------------------------------------
     CONTENT
  ------------------------------------------------------- */

  .gift-voucher-content {
    display: flex;

    flex-direction: column;

    width: 100%;

    max-width: 100%;
  }


  /* -------------------------------------------------------
     CONTENT TOP
  ------------------------------------------------------- */

  .gift-voucher-content-top {
    order: 1;

    width: 100%;

    max-width: 700px;

    margin-bottom: 45px;
  }


  /* -------------------------------------------------------
     VISUAL
  ------------------------------------------------------- */

  .gift-voucher-visual {
    order: 2;

    width: 100%;

    min-height: 500px;

    margin: 0 auto 45px;

    display: flex;

    align-items: center;

    justify-content: center;
  }


  /* -------------------------------------------------------
     OCCASIONS
  ------------------------------------------------------- */

  .gift-voucher-occasions-wrapper {
    order: 3;

    width: 100%;

    margin-bottom: 35px;
  }


  .gift-voucher-occasions {
    display: block;

    width: 100%;

    margin: 0;
  }


  /* -------------------------------------------------------
     SLICK
  ------------------------------------------------------- */

  .gift-voucher-occasions.slick-slider {
    display: block;
  }


  .gift-voucher-occasions .slick-list {
    width: 100%;

    margin: 0;

    overflow: hidden;
  }


  .gift-voucher-occasions .slick-track {
    display: flex;

    align-items: stretch;
  }


  .gift-voucher-occasions .slick-slide {
    height: auto;

    padding: 0 6px;

    box-sizing: border-box;
  }


  .gift-voucher-occasions .slick-slide>div {
    height: 100%;
  }


  /* -------------------------------------------------------
     OCCASION BUTTON
  ------------------------------------------------------- */

  .gift-voucher-occasion {
    width: 100%;

    min-height: 52px;

    padding: 0 18px;

    white-space: nowrap;

    box-sizing: border-box;
  }


  /* -------------------------------------------------------
     DOT NAVIGATION
  ------------------------------------------------------- */

  .gift-voucher-slider-navigation {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    margin-top: 20px;
  }


  .gift-voucher-slider-dots {
    width: 100%;
  }


  .gift-voucher-slider-dots .slick-dots {
    position: static;

    display: flex !important;

    align-items: center;

    justify-content: center;

    gap: 7px;

    width: 100%;

    margin: 0;

    padding: 0;

    list-style: none;
  }


  .gift-voucher-slider-dots .slick-dots li {
    width: auto;

    height: auto;

    margin: 0;

    padding: 0;
  }


  .gift-voucher-slider-dots .slick-dots li button {
    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(189,
        131,
        5,
        0.25);

    font-size: 0;

    cursor: pointer;

    transition:
      width 0.3s ease,
      background 0.3s ease,
      border-radius 0.3s ease;
  }


  .gift-voucher-slider-dots .slick-dots li button::before {
    display: none;
  }


  .gift-voucher-slider-dots .slick-dots li.slick-active button {

    width: 24px;

    border-radius: 20px;

    background: var(--color-primary);
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .gift-voucher-actions {
    order: 4;

    width: 100%;
    padding-top: 20px !important;
  }

}


/* =========================================================
   MOBILE — 767px
========================================================= */
@media (max-width: 767px) {

  .gift-voucher-section {
    padding: 75px 0;
  }


  .gift-voucher-content-top {
    margin-bottom: 35px;
  }


  .gift-voucher-content h2 {
    font-size: 2.5rem;
  }


  .gift-voucher-intro {
    font-size: 14px;

    line-height: 1.75;
  }


  /* -------------------------------------------------------
     VISUAL
  ------------------------------------------------------- */

  .gift-voucher-visual {
    width: 100%;

    min-height: 420px;

    margin-bottom: 35px;
  }


  .gift-certificate {
    width: 100%;

    max-width: 620px;

    min-height: 340px;

    padding: 9px;

    box-sizing: border-box;
  }


  .gift-certificate-inner {
    min-height: 320px;
  }


  /* -------------------------------------------------------
     OCCASION
  ------------------------------------------------------- */

  .gift-voucher-occasion {
    min-height: 50px;

    padding: 0 16px;

    font-size: 14px;
  }


  .gift-voucher-occasion i {
    font-size: 16px;
  }


  /* -------------------------------------------------------
     CTA
  ------------------------------------------------------- */

  .gift-voucher-actions {

    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }


  .gift-voucher-actions .header-actions {
    width: 100%;
  }


  .gift-voucher-actions .header-booking {
    width: 100%;
  }

}

/* =========================================================
   MOBILE — 480px
========================================================= */
@media (max-width: 480px) {

  .gift-voucher-section {
    padding: 65px 0;
  }


  .gift-voucher-content h2 {
    font-size: 2.15rem;
  }


  .gift-voucher-intro {
    font-size: 13px;
  }


  .gift-voucher-visual {
    min-height: 350px;

    margin-bottom: 30px;
  }


  .gift-certificate {
    width: calc(100% - 10px);

    min-height: 285px;

    padding: 7px;
  }


  .gift-certificate-inner {
    min-height: 271px;
  }


  .gift-voucher-occasion {
    min-height: 48px;

    padding: 0 13px;

    gap: 8px;

    font-size: 13px;
  }


  .gift-voucher-occasion i {
    font-size: 15px;
  }


  .gift-voucher-floating-badge {
    right: 0;

    bottom: 20px;

    max-width: calc(100% - 20px);

    padding: 10px 12px;

    box-sizing: border-box;
  }


  .gift-voucher-floating-icon {
    width: 30px;

    height: 30px;

    font-size: 11px;
  }


  .gift-voucher-floating-badge strong {
    font-size: 8px;
  }

}

/* =========================================================
   BOOKING PRICE SECTION
========================================================= */

.booking-price-section {
  position: relative;
  background:
    linear-gradient(180deg,
      #fffaf2 0%,
      var(--color-beige) 50%,
      #ebd1b0 100%);

  overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.booking-price-header {
  max-width: 720px;
  margin: 0 auto var(--space-50);
}

.booking-price-header .experience-feature-eyebrow {
  justify-content: center;
  margin-bottom: var(--space-15);
}

.booking-price-header h2 {
  margin-bottom: var(--space-15);
  color: var(--dark-blue);
  font-family: var(--font-secondary);
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.booking-price-header h2 span {
  color: var(--color-primary);
  font-style: italic;
}

.booking-price-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #756b5e;
  line-height: 1.7;
}


/* =========================================================
   SLIDER
========================================================= */

.booking-price-slider {
  margin-left: -12px;
  margin-right: -12px;
}

.booking-price-slider .slick-list {
  padding: 10px 0 25px;
}

.booking-price-slider .slick-slide {
  padding: 0 12px;
}


/* =========================================================
   CARD
========================================================= */

.booking-price-card {
  position: relative;

  height: 100%;

  background: #171614;

  border: 1px solid rgba(189, 131, 5, 0.22);

  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(44, 34, 21, 0.10);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.booking-price-card:hover {
  transform: translateY(-7px);

  border-color: rgba(189, 131, 5, 0.65);

  box-shadow:
    0 20px 45px rgba(44, 34, 21, 0.20);
}


/* =========================================================
   IMAGE
========================================================= */

.booking-price-card-image {
  height: 285px;
}

.booking-price-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.booking-price-card:hover .booking-price-card-image img {
  transform: scale(1.06);
  filter: saturate(0.92);
}


/* =========================================================
   IMAGE GRADIENT
========================================================= */

.booking-price-card-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(13, 13, 13, 0.02) 20%,
      rgba(13, 13, 13, 0.15) 45%,
      rgba(13, 13, 13, 0.90) 100%);

  pointer-events: none;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.booking-price-card-number {
  position: absolute;

  top: 18px;
  left: 18px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  background: rgba(13, 13, 13, 0.28);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.booking-price-card-content {
  position: relative;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: var(--space-20);

  min-height: 138px;

  margin-top: -82px;

  padding:
    95px var(--space-20) var(--space-20);

  background:
    linear-gradient(180deg,
      rgba(13, 13, 13, 0.05) 0%,
      rgba(13, 13, 13, 0.88) 35%,
      #171614 100%);

  z-index: 2;
}


/* =========================================================
   TITLE
========================================================= */

.booking-price-card-info {
  flex: 1;
  min-width: 0;
}

.booking-price-card-info h3 {
  margin-bottom: var(--space-10);

  color: var(--color-cream);

  font-family: var(--font-primary);

  font-size: 18px;
  font-weight: 600;

  line-height: 1.35;

  transition: color 0.3s ease;
}

.booking-price-card:hover .booking-price-card-info h3 {
  color: #ffffff;
}


/* =========================================================
   PRICE DETAILS
========================================================= */

.booking-price-details {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.booking-price-details p {
  margin: 0;

  color: rgba(255, 250, 242, 0.72);

  font-size: 14px;
  line-height: 1.5;
}

.booking-price-details p span {
  color: var(--color-gold-light);
  font-weight: 600;
}

.booking-price-details .booking-price-passengers {
  margin-top: 3px;

  color: rgba(255, 250, 242, 0.52);

  font-size: 13px;
}


/* =========================================================
   ACTIONS
========================================================= */

.booking-price-card-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

/* =========================================================
   BOOK BUTTON
========================================================= */

.booking-price-book-button {
  min-width: 82px;
  min-height: 42px;
  border-radius: 50px;
  padding:
    0 var(--space-15);

  background:
    linear-gradient(135deg,
      #d7a52e 0%,
      #bd8305 55%,
      #a96e00 100%);

  color: #ffffff;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.5px;

  border: 1px solid rgba(255, 220, 137, 0.45);

  overflow: hidden;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.booking-price-book-button i {
  font-size: 10px;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-price-book-button:hover {
  background:
    linear-gradient(135deg,
      #e7c56d 0%,
      #c99217 55%,
      #bd8305 100%);

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(189, 131, 5, 0.30);
}

.booking-price-book-button:hover i {
  transform: translateX(4px);
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.booking-price-controls {
  margin-top: var(--space-20);
}

.booking-price-arrow {
  width: 46px;
  height: 46px;

  border: 1px solid rgba(189, 131, 5, 0.40);

  background: rgba(255, 250, 242, 0.80);

  color: var(--color-primary);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.booking-price-arrow:hover {
  background: var(--color-primary);

  border-color: var(--color-primary);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(189, 131, 5, 0.20);
}

.booking-price-arrow i {
  font-size: 12px;
}


/* =========================================================
   SLICK DOTS
========================================================= */

.booking-price-slider .slick-dots {
  bottom: -45px;
}

.booking-price-slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px;
}

.booking-price-slider .slick-dots li button {
  width: 8px;
  height: 8px;

  padding: 0;

  border-radius: 50%;

  background: #d8c9b3;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.booking-price-slider .slick-dots li button::before {
  display: none;
}

.booking-price-slider .slick-dots li.slick-active {
  width: 24px;
}

.booking-price-slider .slick-dots li.slick-active button {
  width: 24px;

  border-radius: 10px;

  background: var(--color-primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .booking-price-section {
    padding-top: var(--space-60) !important;
    padding-bottom: var(--space-60) !important;
  }

  .booking-price-header {
    margin-bottom: var(--space-40);
  }

  .booking-price-card-image {
    height: 260px;
  }

  .booking-price-card-content {
    padding-left: var(--space-15);
    padding-right: var(--space-15);
  }

  .booking-price-card-info h3 {
    font-size: 16px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .booking-price-header {
    margin-bottom: var(--space-30);
  }

  .booking-price-header h2 {
    font-size: 32px;
  }

  .booking-price-slider {
    margin-left: -8px;
    margin-right: -8px;
  }

  .booking-price-slider .slick-slide {
    padding: 0 8px;
  }

  .booking-price-card-image {
    height: 300px;
  }

  .booking-price-card-content {
    gap: 12px;

    padding:
      90px var(--space-15) var(--space-15);
  }

  .booking-price-card-info h3 {
    font-size: 17px;
  }

  .booking-price-details p {
    font-size: 10px;
  }

  .booking-price-book-button {
    min-width: 75px;
    min-height: 40px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .booking-price-card-image {
    height: 275px;
  }

  .booking-price-card-content {
    align-items: flex-end;
  }

  .booking-price-card-actions {
    gap: 8px;
  }


  .booking-price-book-button {
    min-width: 70px;

    padding-left: 10px;
    padding-right: 10px;
  }

}

/* =========================================================
   GONDOLA GALLERY SECTION
========================================================= */

.gondola-gallery-section {
  position: relative;
  width: 100%;

  background: #fffaf2;

  overflow: hidden;
}


/* =========================================================
   SLIDER
========================================================= */

.gondola-gallery-grid {
  width: 100%;
}

.gondola-gallery-grid .slick-list {
  overflow: hidden;
}

.gondola-gallery-grid .slick-track {
  display: flex;
}

.gondola-gallery-grid .slick-slide {
  height: auto;
}

.gondola-gallery-grid .slick-slide>div {
  height: 100%;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.gondola-gallery-item {
  position: relative;

  display: block;

  width: 100%;

  /*
    Increased gallery height.
    Previously this was aspect-ratio: 1 / 1.
  */
  height: 480px;

  overflow: hidden;

  background: #111;

  color: #fff;

  text-decoration: none;
}


/* =========================================================
   IMAGE
========================================================= */

.gondola-gallery-item>img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1);

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

.gondola-gallery-item:hover>img,
.gondola-gallery-item:focus-visible>img,
.gondola-gallery-item.gallery-touch-active>img {
  transform: scale(1.09);

  filter: saturate(0.95);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.gondola-gallery-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.48) 25%,
      rgba(0, 0, 0, 0.08) 58%,
      rgba(0, 0, 0, 0) 78%);

  opacity: 0;

  transition: opacity 0.55s ease;
}


.gondola-gallery-item:hover .gondola-gallery-overlay,
.gondola-gallery-item:focus-visible .gondola-gallery-overlay,
.gondola-gallery-item.gallery-touch-active .gondola-gallery-overlay {
  opacity: 1;
}


/* =========================================================
   TOP RIGHT ICON
========================================================= */

.gondola-gallery-type {
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 5;

  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.95);

  font-size: 18px;

  opacity: 0.95;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}


.gondola-gallery-image-icon {
  font-size: 19px;
}


.gondola-gallery-item:hover .gondola-gallery-type,
.gondola-gallery-item.gallery-touch-active .gondola-gallery-type {
  transform: translateY(-4px);
}


/* =========================================================
   CONTENT
========================================================= */

.gondola-gallery-content {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 28px;

  z-index: 6;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  transform: translateY(18px);

  opacity: 0;

  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}


.gondola-gallery-item:hover .gondola-gallery-content,
.gondola-gallery-item:focus-visible .gondola-gallery-content,
.gondola-gallery-item.gallery-touch-active .gondola-gallery-content {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   CATEGORY
========================================================= */

.gondola-gallery-category {
  display: block;

  margin-bottom: 8px;

  font-family:
    var(--font-primary, "Montserrat", sans-serif);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #d8a63c;
}


/* =========================================================
   TITLE
========================================================= */

.gondola-gallery-title {
  display: block;

  max-width: 85%;

  font-family:
    var(--font-secondary, "Playfair Display", serif);

  font-size: clamp(19px, 1.5vw, 26px);

  font-weight: 500;

  line-height: 1.15;

  letter-spacing: -0.2px;

  color: #fff;
}


/* =========================================================
   GOLD LINE
========================================================= */

.gondola-gallery-content::before {
  content: "";

  width: 0;
  height: 1px;

  margin-bottom: 13px;

  background: var(--color-primary, #bd8305);

  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}


.gondola-gallery-item:hover .gondola-gallery-content::before,
.gondola-gallery-item.gallery-touch-active .gondola-gallery-content::before {
  width: 38px;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.gondola-gallery-prev,
.gondola-gallery-next {
  position: absolute;

  top: 50%;

  z-index: 30;

  width: 54px;
  height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 50%;

  background: rgba(13, 13, 13, 0.45);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  color: #fff;

  font-size: 14px;

  cursor: pointer;

  opacity: 0;

  transform: translateY(-50%);

  transition:
    opacity 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}


/* =========================================================
   ARROW POSITION
========================================================= */

.gondola-gallery-prev {
  left: 22px;
}

.gondola-gallery-next {
  right: 22px;
}


/* =========================================================
   SHOW ARROWS
========================================================= */

.gondola-gallery-section:hover .gondola-gallery-prev,
.gondola-gallery-section:hover .gondola-gallery-next,
.gondola-gallery-section:focus-within .gondola-gallery-prev,
.gondola-gallery-section:focus-within .gondola-gallery-next {
  opacity: 1;
}


/* =========================================================
   ARROW HOVER
========================================================= */

.gondola-gallery-prev:hover,
.gondola-gallery-next:hover {
  background: var(--color-primary, #bd8305);

  border-color: var(--color-primary, #bd8305);

  transform: translateY(-50%) scale(1.06);
}


/* =========================================================
   DISABLED ARROW
========================================================= */

.gondola-gallery-prev.slick-disabled,
.gondola-gallery-next.slick-disabled {
  opacity: 0.25;

  cursor: default;

  pointer-events: none;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.gondola-gallery-item:focus-visible {
  outline: 2px solid var(--color-primary, #bd8305);

  outline-offset: -2px;
}

.gondola-gallery-prev:focus-visible,
.gondola-gallery-next:focus-visible {
  outline: 2px solid #fff;

  outline-offset: 3px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

  .gondola-gallery-item {
    height: 580px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .gondola-gallery-item {
    height: 440px;
  }

  .gondola-gallery-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .gondola-gallery-title {
    font-size: 20px;
  }

  .gondola-gallery-prev,
  .gondola-gallery-next {
    width: 46px;
    height: 46px;
  }

  .gondola-gallery-prev {
    left: 15px;
  }

  .gondola-gallery-next {
    right: 15px;
  }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 767px) {

  .gondola-gallery-item {
    height: 360px;
  }

  .gondola-gallery-type {
    top: 12px;
    right: 12px;
  }

  .gondola-gallery-content {
    left: 17px;
    right: 17px;
    bottom: 18px;
  }

  .gondola-gallery-category {
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .gondola-gallery-title {
    font-size: 17px;
  }

  .gondola-gallery-prev,
  .gondola-gallery-next {
    width: 40px;
    height: 40px;

    font-size: 11px;
  }

  .gondola-gallery-prev {
    left: 10px;
  }

  .gondola-gallery-next {
    right: 10px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

  .gondola-gallery-item {
    height: 300px;
  }

  .gondola-gallery-content {
    transform: translateY(0);

    opacity: 1;

    bottom: 15px;
  }

  .gondola-gallery-overlay {
    opacity: 0.55;
  }

  .gondola-gallery-title {
    font-size: 16px;
  }

  .gondola-gallery-category {
    margin-bottom: 5px;
  }

  .gondola-gallery-prev,
  .gondola-gallery-next {
    width: 36px;
    height: 36px;

    font-size: 10px;
  }

  .gondola-gallery-prev {
    left: 8px;
  }

  .gondola-gallery-next {
    right: 8px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

  .gondola-gallery-item {
    height: 270px;
  }

}


/* =========================================================
   GONDOLA GALLERY LIGHTBOX MODAL
========================================================= */

.gondola-gallery-modal {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 40px;

  visibility: hidden;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}


/* =========================================================
   MODAL OPEN
========================================================= */

.gondola-gallery-modal.is-open {
  visibility: visible;

  opacity: 1;

  pointer-events: auto;
}


/* =========================================================
   BACKDROP
========================================================= */

.gondola-gallery-modal-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(5, 5, 5, 0.94);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);
}


/* =========================================================
   DIALOG
========================================================= */

.gondola-gallery-modal-dialog {
  position: relative;

  width: min(1200px, 92vw);

  height: min(90vh, 900px);

  display: flex;

  align-items: center;
  justify-content: center;

  z-index: 2;

  transform: scale(0.94);

  opacity: 0;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}


.gondola-gallery-modal.is-open .gondola-gallery-modal-dialog {
  transform: scale(1);

  opacity: 1;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.gondola-gallery-modal-image-wrap {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.gondola-gallery-modal-image {
  display: block;

  max-width: 100%;

  max-height: calc(100% - 80px);

  width: auto;

  height: auto;

  object-fit: contain;

  user-select: none;

  -webkit-user-drag: none;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5);

  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.gondola-gallery-modal-close {
  position: absolute;

  top: 0;

  right: 0;

  z-index: 20;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background: rgba(15, 15, 15, 0.65);

  color: #fff;

  font-size: 17px;

  cursor: pointer;

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.gondola-gallery-modal-close:hover {
  background: var(--color-primary, #bd8305);

  border-color: var(--color-primary, #bd8305);

  transform: rotate(90deg);
}


/* =========================================================
   MODAL NAVIGATION
========================================================= */

.gondola-gallery-modal-prev,
.gondola-gallery-modal-next {
  position: absolute;

  top: 50%;

  z-index: 20;

  width: 54px;
  height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 50%;

  background: rgba(15, 15, 15, 0.55);

  color: #fff;

  font-size: 14px;

  cursor: pointer;

  transform: translateY(-50%);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


/* =========================================================
   PREVIOUS POSITION
========================================================= */

.gondola-gallery-modal-prev {
  left: -75px;
}


/* =========================================================
   NEXT POSITION
========================================================= */

.gondola-gallery-modal-next {
  right: -75px;
}


/* =========================================================
   NAV HOVER
========================================================= */

.gondola-gallery-modal-prev:hover,
.gondola-gallery-modal-next:hover {
  background: var(--color-primary, #bd8305);

  border-color: var(--color-primary, #bd8305);

  transform: translateY(-50%) scale(1.08);
}


/* =========================================================
   CAPTION
========================================================= */

.gondola-gallery-modal-caption {
  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 10;

  width: 100%;

  padding: 35px 20px 0;

  text-align: center;

  pointer-events: none;

  background:
    linear-gradient(to top,
      rgba(5, 5, 5, 0.85),
      rgba(5, 5, 5, 0));
}


/* =========================================================
   MODAL CATEGORY
========================================================= */

.gondola-gallery-modal-category {
  display: block;

  margin-bottom: 7px;

  font-family:
    var(--font-primary, "Montserrat", sans-serif);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2.5px;

  text-transform: uppercase;

  color: #d8a63c;
}


/* =========================================================
   MODAL TITLE
========================================================= */

.gondola-gallery-modal-title {
  margin: 0;

  font-family:
    var(--font-secondary, "Playfair Display", serif);

  font-size: clamp(22px, 2.2vw, 34px);

  font-weight: 500;

  line-height: 1.15;

  color: #fff;
}


/* =========================================================
   COUNTER
========================================================= */

.gondola-gallery-modal-counter {
  margin-top: 12px;

  font-family:
    var(--font-primary, "Montserrat", sans-serif);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.65);
}


.gondola-modal-current {
  color: #d8a63c;
}


/* =========================================================
   MODAL IMAGE CHANGE ANIMATION
========================================================= */

.gondola-gallery-modal-image.is-changing {
  opacity: 0;

  transform: scale(0.97);
}


/* =========================================================
   BODY LOCK
========================================================= */

body.gondola-modal-open {
  overflow: hidden;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.gondola-gallery-modal button:focus-visible {
  outline: 2px solid #fff;

  outline-offset: 4px;
}


/* =========================================================
   MODAL TABLET
========================================================= */

@media (max-width: 1100px) {

  .gondola-gallery-modal {
    padding: 30px;
  }

  .gondola-gallery-modal-dialog {
    width: min(100%, 900px);

    height: 88vh;
  }

  .gondola-gallery-modal-prev {
    left: 15px;
  }

  .gondola-gallery-modal-next {
    right: 15px;
  }

  .gondola-gallery-modal-close {
    top: 10px;

    right: 10px;
  }

}


/* =========================================================
   MODAL MOBILE
========================================================= */

@media (max-width: 767px) {

  .gondola-gallery-modal {
    padding: 15px;
  }

  .gondola-gallery-modal-dialog {
    width: 100%;

    height: 90vh;
  }

  .gondola-gallery-modal-image {
    max-width: 100%;

    max-height: calc(100% - 120px);
  }

  .gondola-gallery-modal-prev,
  .gondola-gallery-modal-next {
    width: 42px;

    height: 42px;

    font-size: 11px;
  }

  .gondola-gallery-modal-prev {
    left: 5px;
  }

  .gondola-gallery-modal-next {
    right: 5px;
  }

  .gondola-gallery-modal-close {
    width: 42px;

    height: 42px;

    top: 5px;

    right: 5px;

    font-size: 14px;
  }

  .gondola-gallery-modal-caption {
    padding-left: 50px;

    padding-right: 50px;
  }

  .gondola-gallery-modal-title {
    font-size: 22px;
  }

}


/* =========================================================
   MODAL SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gondola-gallery-modal {
    padding: 10px;
  }

  .gondola-gallery-modal-dialog {
    height: 92vh;
  }

  .gondola-gallery-modal-prev,
  .gondola-gallery-modal-next {
    width: 38px;

    height: 38px;
  }

  .gondola-gallery-modal-prev {
    left: 2px;
  }

  .gondola-gallery-modal-next {
    right: 2px;
  }

  .gondola-gallery-modal-caption {
    padding-left: 45px;

    padding-right: 45px;
  }

  .gondola-gallery-modal-category {
    font-size: 8px;

    letter-spacing: 1.7px;
  }

  .gondola-gallery-modal-title {
    font-size: 19px;
  }

}


/* =========================================================
   PREMIUM GONDOLA FAQ
========================================================= */

.gondola-faq-section {
  position: relative;

  width: 100%;

  padding: 125px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  /* background: var(--color-beige); */
  overflow: visible;
}





/* =========================================================
   MAIN LAYOUT
========================================================= */

.gondola-faq-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(300px, 0.72fr) minmax(500px, 1.28fr);

  gap: clamp(60px, 8vw, 130px);

  /*
     Very important for sticky
  */
  align-items: start;
}


/* =========================================================
   LEFT EDITORIAL PANEL
   STICKY
========================================================= */

.gondola-faq-intro {

  position: sticky;

  top: 110px;

  align-self: start;

  height: max-content;

  padding-top: 10px;

  margin-bottom: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.gondola-faq-eyebrow {

  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 28px;

  font-family:
    var(--font-primary,
      "Montserrat",
      sans-serif);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2.5px;

  text-transform: uppercase;

  color: #8b650c;
}


.gondola-faq-eyebrow-line {

  width: 38px;

  height: 1px;

  background:
    var(--color-primary, #bd8305);
}


/* =========================================================
   HEADING
========================================================= */

.gondola-faq-heading {

  max-width: 540px;

  margin-top: 20px;

  font-family:
    var(--font-secondary,
      "Playfair Display",
      serif);

  font-size: clamp(2.5rem, 4vw, 4rem);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -2.4px;

  color: var(--dark-blue);
}


.gondola-faq-heading em {

  display: block;

  color:
    var(--color-primary, #bd8305);

  font-style: italic;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.gondola-faq-description {

  max-width: 430px;

  margin: 30px 0 0;

  font-family:
    var(--font-primary,
      "Montserrat",
      sans-serif);

  font-size: 14px;

  font-weight: 400;

  line-height: 1.85;

  color: #707070;
}


/* =========================================================
   INTRO BOTTOM
========================================================= */

.gondola-faq-intro-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  max-width: 430px;

  margin-top: 65px;

  padding-top: 22px;

  border-top:
    1px solid rgba(17, 17, 17, 0.13);
}


.gondola-faq-small-label {

  font-family:
    var(--font-primary,
      "Montserrat",
      sans-serif);

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 2px;

  color: var(--dark-blue);
}


/* =========================================================
   COUNTER
========================================================= */

.gondola-faq-counter {

  display: flex;

  align-items: center;

  gap: 11px;

  font-family:
    var(--font-primary,
      "Montserrat",
      sans-serif);

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 1px;

  color: #999;
}


.gondola-faq-current {

  color: #111;
}


.gondola-faq-counter-line {

  width: 28px;

  height: 1px;

  background:
    var(--color-primary, #bd8305);
}


/* =========================================================
   RIGHT FAQ LIST
========================================================= */

.gondola-faq-list {

  width: 100%;

  border-top:
    1px solid rgba(17, 17, 17, 0.14);

  /*
     Let this column determine section height
  */
  min-width: 0;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.gondola-faq-item {

  position: relative;

  border-bottom:
    1px solid rgba(17, 17, 17, 0.14);

  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}


.gondola-faq-item::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 2px;

  height: 0;

  background:
    var(--color-primary, #bd8305);

  transition:
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


.gondola-faq-item.is-active::before {

  height: 100%;
}


.gondola-faq-item:hover {

  background:
    rgba(255, 255, 255, 0.58);
}


/* =========================================================
   QUESTION
========================================================= */

.gondola-faq-question {

  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns:
    55px minmax(0, 1fr) 48px;

  align-items: center;

  gap: 22px;

  padding:
    30px 25px 30px 27px;

  border: 0;

  background: transparent;

  text-align: left;

  cursor: pointer;

  font-family: inherit;
}


/* =========================================================
   NUMBER
========================================================= */

.gondola-faq-number {

  align-self: start;

  padding-top: 3px;

  font-family:
    var(--font-primary,
      "Montserrat",
      sans-serif);

  font-size: 25px;

  font-weight: 600;

  letter-spacing: 1.5px;

  color: var(--dark-blue);

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}


.gondola-faq-item.is-active .gondola-faq-number {

  color:
    var(--color-primary, #bd8305);

  transform:
    translateX(3px);
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.gondola-faq-question-text {

  position: relative;

  font-family:
    var(--font-secondary,
      "Playfair Display",
      serif);

  font-size:
    clamp(19px, 1.65vw, 25px);

  font-weight: 400;

  line-height: 1.3;

  letter-spacing: -0.3px;

  color: #181818;

  transition:
    color 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.gondola-faq-question:hover .gondola-faq-question-text {

  transform:
    translateX(5px);
}


.gondola-faq-item.is-active .gondola-faq-question-text {

  color: #8c6204;
}


/* =========================================================
   PLUS / MINUS
========================================================= */

.gondola-faq-icon {

  position: relative;

  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid rgba(17, 17, 17, 0.17);

  border-radius: 50%;

  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.45s ease;
}


.gondola-faq-icon span {

  position: absolute;

  width: 12px;

  height: 1px;

  background: #555;

  transition:
    transform 0.4s ease,
    background 0.3s ease;
}


.gondola-faq-icon span:last-child {

  transform:
    rotate(90deg);
}


.gondola-faq-item.is-active .gondola-faq-icon {

  background:
    var(--color-primary, #bd8305);

  border-color:
    var(--color-primary, #bd8305);

  transform:
    rotate(90deg);
}

.gondola-faq-item.is-active {

  background:
    rgba(255, 255, 255, 0.58);
}


.gondola-faq-item.is-active .gondola-faq-icon span {

  background: #fff;
}


.gondola-faq-item.is-active .gondola-faq-icon span:last-child {

  transform:
    rotate(0deg);
}


/* =========================================================
   ANSWER
========================================================= */

.gondola-faq-answer {

  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


.gondola-faq-item.is-active .gondola-faq-answer {

  grid-template-rows: 1fr;
}


.gondola-faq-answer-inner {

  min-height: 0;

  overflow: hidden;

  padding-left: 104px;

  padding-right: 95px;

  opacity: 0;

  transform:
    translateY(-8px);

  transition:
    opacity 0.35s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


.gondola-faq-item.is-active .gondola-faq-answer-inner {

  padding-bottom: 31px;

  opacity: 1;

  transform:
    translateY(0);
}


.gondola-faq-answer p {

  max-width: 680px;

  margin: 0;

  font-family:
    var(--font-primary,
      "Montserrat",
      sans-serif);

  font-size: 13px;

  font-weight: 400;

  line-height: 1.9;

  color: #777;
}


/* =========================================================
   GOLD ACTIVE LINE
========================================================= */

.gondola-faq-item.is-active .gondola-faq-question::after {

  content: "";

  position: absolute;

  left: 104px;

  bottom: 0;

  width: 34px;

  height: 1px;

  background:
    var(--color-primary, #bd8305);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .gondola-faq-section {

    padding: 90px 0;
  }


  .gondola-faq-layout {

    grid-template-columns: 1fr;

    gap: 65px;
  }


  /*
     Tablet-এ normal flow
  */

  .gondola-faq-intro {

    position: relative;

    top: auto;
  }


  .gondola-faq-heading {

    max-width: 600px;
  }


  .gondola-faq-description {

    max-width: 600px;
  }


  .gondola-faq-intro-bottom {

    max-width: 600px;

    margin-top: 35px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .gondola-faq-section {

    padding: 75px 0;
  }


  .gondola-faq-layout {

    gap: 45px;
  }


  .gondola-faq-eyebrow {

    margin-bottom: 20px;

    font-size: 9px;

    letter-spacing: 2px;
  }


  .gondola-faq-heading {

    font-size:
      clamp(40px, 12vw, 55px);

    letter-spacing: -1.7px;
  }


  .gondola-faq-description {

    margin-top: 22px;

    font-size: 13px;

    line-height: 1.75;
  }


  .gondola-faq-intro-bottom {

    margin-top: 30px;
  }


  .gondola-faq-question {

    grid-template-columns:
      35px minmax(0, 1fr) 40px;

    gap: 12px;

    padding:
      23px 13px 23px 17px;
  }


  .gondola-faq-number {

    font-size: 9px;
  }


  .gondola-faq-question-text {

    font-size: 18px;

    line-height: 1.3;
  }


  .gondola-faq-icon {

    width: 36px;

    height: 36px;
  }


  .gondola-faq-answer-inner {

    padding-left: 64px;

    padding-right: 35px;
  }


  .gondola-faq-item.is-active .gondola-faq-answer-inner {

    padding-bottom: 25px;
  }


  .gondola-faq-answer p {

    font-size: 12px;

    line-height: 1.8;
  }


  .gondola-faq-item.is-active .gondola-faq-question::after {

    left: 64px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gondola-faq-section {

    padding: 65px 0;
  }


  .gondola-faq-layout {

    gap: 38px;
  }


  .gondola-faq-question {

    grid-template-columns:
      28px minmax(0, 1fr) 34px;

    gap: 9px;

    padding:
      21px 8px 21px 12px;
  }


  .gondola-faq-question-text {

    font-size: 16px;
  }


  .gondola-faq-icon {

    width: 32px;

    height: 32px;
  }


  .gondola-faq-icon span {

    width: 10px;
  }


  .gondola-faq-answer-inner {

    padding-left: 49px;

    padding-right: 15px;
  }


  .gondola-faq-item.is-active .gondola-faq-answer-inner {

    padding-bottom: 23px;
  }


  .gondola-faq-answer p {

    font-size: 11.5px;
  }


  .gondola-faq-item.is-active .gondola-faq-question::after {

    left: 49px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gondola-faq-item,
  .gondola-faq-question-text,
  .gondola-faq-number,
  .gondola-faq-icon,
  .gondola-faq-icon span,
  .gondola-faq-answer,
  .gondola-faq-answer-inner {

    transition: none !important;
  }

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .gondola-faq-item,
  .gondola-faq-question-text,
  .gondola-faq-number,
  .gondola-faq-icon,
  .gondola-faq-icon span,
  .gondola-faq-answer,
  .gondola-faq-answer-inner {
    transition: none !important;
  }

}


/* =========================================================
   PREMIUM GONDOLA TESTIMONIAL
========================================================= */

.gondola-testimonial-section {
  position: relative;

  padding: 125px 0;

  background: var(--color-offwhite);

  overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.gondola-testimonial-header {
  display: grid;

  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);

  align-items: end;

  gap: 60px;

  margin-bottom: 70px;
}


.gondola-testimonial-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: var(--color-primary);

  font-family: var(--font-primary);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2.5px;

  text-transform: uppercase;
}


.gondola-testimonial-eyebrow::before {
  content: "";

  width: 35px;

  height: 1px;

  background: var(--color-primary);
}


.gondola-testimonial-title {
  margin-top: 10px;

  max-width: 700px;

  color: var(--dark-blue);

  font-family: var(--font-secondary);

  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -1.5px;
}


.gondola-testimonial-title em {
  color: var(--color-primary);

  font-weight: 400;
}


.gondola-testimonial-intro {
  max-width: 400px;

  padding-bottom: 5px;
}


.gondola-testimonial-intro p {
  margin: 0;

  color: var(--color-text);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.gondola-testimonial-layout {
  display: grid;

  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);

  min-height: 540px;

  background: var(--color-black);
}


/* =========================================================
   VISUAL PANEL
========================================================= */
/* =========================================================
   GONDOLA TESTIMONIAL VISUAL
========================================================= */

.gondola-testimonial-visual {
  position: relative;

  min-height: 540px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 55px;

  overflow: hidden;

  background: var(--dark-blue);
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.gondola-testimonial-visual-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.03);

  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.gondola-testimonial-layout:hover .gondola-testimonial-visual-image {
  transform: scale(1.08);
}


/* =========================================================
   DARK / BLUE OVERLAY
========================================================= */

.gondola-testimonial-visual-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(180deg,
      rgba(0, 20, 42, 0.45) 0%,
      rgba(0, 20, 42, 0.62) 35%,
      rgba(0, 10, 25, 0.92) 100%),
    linear-gradient(90deg,
      rgba(0, 38, 83, 0.72) 0%,
      rgba(0, 38, 83, 0.22) 65%,
      rgba(0, 0, 0, 0.15) 100%);

  pointer-events: none;
}


/* =========================================================
   GOLD RADIAL GLOW
========================================================= */

.gondola-testimonial-visual-glow {
  position: absolute;

  z-index: 2;

  width: 300px;
  height: 300px;

  top: -120px;
  right: -100px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(189, 131, 5, 0.24) 0%,
      rgba(189, 131, 5, 0.08) 35%,
      transparent 72%);

  pointer-events: none;
}


/* =========================================================
   QUOTE MARK
========================================================= */

.gondola-testimonial-quote-mark {
  position: relative;

  z-index: 4;

  color: #d8a63c;

  font-family: Georgia, serif;

  font-size: 150px;

  font-weight: 400;

  line-height: 0.65;

  text-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   VISUAL CONTENT
========================================================= */

.gondola-testimonial-visual-content {
  position: relative;

  z-index: 4;

  display: flex;

  flex-direction: column;

  gap: 14px;

  max-width: 430px;
}


/* small label */

.gondola-testimonial-visual-content span {
  color: rgba(255, 255, 255, 0.68);

  font-family: var(--font-primary);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}


/* heading */

.gondola-testimonial-visual-content strong {
  color: #fff;

  font-family: var(--font-secondary);

  font-size: clamp(38px, 4vw, 58px);

  font-weight: 400;

  line-height: 1.02;

  letter-spacing: -1px;
}


/* paragraph */

.gondola-testimonial-visual-content p {
  margin: 8px 0 0;

  color: rgba(255, 255, 255, 0.76);

  font-family: var(--font-primary);

  font-size: 13px;

  line-height: 1.8;
}


/* =========================================================
   BOTTOM LABEL
========================================================= */

.gondola-testimonial-visual-bottom {
  position: relative;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 14px;

  color: rgba(255, 255, 255, 0.6);

  font-family: var(--font-primary);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2.5px;

  text-transform: uppercase;
}


/* =========================================================
   GOLD LINE
========================================================= */

.gondola-testimonial-mini-line {
  display: block;

  width: 55px;

  height: 1px;

  background: var(--color-primary);
}


/* =========================================================
   DECORATIVE RINGS
========================================================= */

.gondola-testimonial-visual::before {
  content: "";

  position: absolute;

  z-index: 3;

  width: 330px;
  height: 330px;

  top: -170px;
  right: -170px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 50%;

  pointer-events: none;
}


.gondola-testimonial-visual::after {
  content: "";

  position: absolute;

  z-index: 3;

  width: 210px;
  height: 210px;

  bottom: -120px;
  left: -110px;

  border: 1px solid rgba(189, 131, 5, 0.22);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   DECORATIVE LINE
========================================================= */

.gondola-testimonial-line {
  position: absolute;

  left: 55px;

  bottom: 55px;

  width: 70px;

  height: 1px;

  background: var(--color-primary);
}


/* =========================================================
   CONTENT
========================================================= */

.gondola-testimonial-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 70px 75px;

  background: var(--color-white);
}


/* =========================================================
   SLIDER
========================================================= */

.gondola-testimonial-slider {
  width: 100%;
}


.gondola-testimonial-item {
  outline: none;

  padding: 10px 0 25px;
}


/* =========================================================
   RATING
========================================================= */

.gondola-testimonial-rating {
  display: flex;

  align-items: center;

  gap: 6px;

  margin-bottom: 32px;
}


.gondola-testimonial-rating i {
  color: var(--color-primary);

  font-size: 13px;
}


/* =========================================================
   QUOTE
========================================================= */

.gondola-testimonial-item blockquote {
  max-width: 760px;

  margin: 0 0 45px;

  color: var(--color-dark);

  font-family: var(--font-secondary);

  font-size: clamp(25px, 3vw, 38px);

  font-weight: 400;

  line-height: 1.35;

  letter-spacing: -0.5px;
}


/* =========================================================
   AUTHOR
========================================================= */

.gondola-testimonial-author {
  display: flex;

  align-items: center;

  gap: 18px;
}


.gondola-testimonial-author-image {
  width: 58px;

  height: 58px;

  flex: 0 0 58px;

  overflow: hidden;

  border-radius: 50%;
}


.gondola-testimonial-author-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}


.gondola-testimonial-author-info {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.gondola-testimonial-author-info h4 {
  margin: 0;

  color: var(--color-dark);

  font-family: var(--font-primary);

  font-size: 14px;

  font-weight: 700;
}


.gondola-testimonial-author-info span {
  color: var(--color-text);

  font-family: var(--font-primary);

  font-size: 11px;

  letter-spacing: 0.5px;
}


/* =========================================================
   CONTROLS
========================================================= */

.gondola-testimonial-controls {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 30px;

  padding-top: 28px;

  border-top: 1px solid #e9e9e9;
}


/* =========================================================
   COUNTER
========================================================= */

.gondola-testimonial-counter {
  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--color-text);

  font-family: var(--font-primary);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1px;
}


.gondola-testimonial-current {
  color: var(--color-dark);

  font-weight: 700;
}


.gondola-testimonial-counter-line {
  width: 45px;

  height: 1px;

  background: #d5d5d5;
}


/* =========================================================
   ARROWS
========================================================= */

.gondola-testimonial-arrows {
  display: flex;

  align-items: center;

  gap: 10px;
}


.gondola-testimonial-prev,
.gondola-testimonial-next {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 48px;

  height: 48px;

  border: 1px solid #dedede;

  background: transparent;

  color: var(--color-dark);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.gondola-testimonial-prev:hover,
.gondola-testimonial-next:hover {
  border-color: var(--color-primary);

  background: var(--color-primary);

  color: var(--color-white);

  transform: translateY(-2px);
}


.gondola-testimonial-prev i,
.gondola-testimonial-next i {
  font-size: 12px;
}


/* =========================================================
   SLICK
========================================================= */

.gondola-testimonial-slider .slick-list {
  overflow: hidden;
}


.gondola-testimonial-slider .slick-track {
  display: flex;

  align-items: stretch;
}


.gondola-testimonial-slider .slick-slide {
  height: auto;
}


.gondola-testimonial-slider .slick-slide>div {
  height: 100%;
}


/* Remove default slick arrows */
.gondola-testimonial-slider .slick-arrow {
  display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .gondola-testimonial-section {
    padding: 90px 0;
  }


  .gondola-testimonial-header {
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 50px;
  }


  .gondola-testimonial-intro {
    max-width: 600px;
  }


  .gondola-testimonial-layout {
    grid-template-columns: 1fr;
  }


  .gondola-testimonial-visual {
    min-height: 300px;

    padding: 40px;
  }


  .gondola-testimonial-quote-mark {
    font-size: 100px;
  }


  .gondola-testimonial-visual-content strong {
    font-size: 42px;
  }


  .gondola-testimonial-line {
    left: 40px;

    bottom: 40px;
  }


  .gondola-testimonial-content {
    padding: 55px 45px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .gondola-testimonial-section {
    padding: 70px 0;
  }


  .gondola-testimonial-header {
    margin-bottom: 35px;
  }


  .gondola-testimonial-title {
    letter-spacing: -0.8px;
  }


  .gondola-testimonial-layout {
    display: block;
  }


  .gondola-testimonial-visual {
    min-height: 260px;

    padding: 30px;
  }


  .gondola-testimonial-quote-mark {
    font-size: 85px;
  }


  .gondola-testimonial-visual-content strong {
    font-size: 34px;
  }


  .gondola-testimonial-line {
    left: 30px;

    bottom: 30px;
  }


  .gondola-testimonial-content {
    padding: 40px 25px;
  }


  .gondola-testimonial-item {
    padding-bottom: 15px;
  }


  .gondola-testimonial-rating {
    margin-bottom: 22px;
  }


  .gondola-testimonial-item blockquote {
    margin-bottom: 32px;

    font-size: 24px;

    line-height: 1.4;
  }


  .gondola-testimonial-controls {
    margin-top: 15px;

    padding-top: 22px;
  }


  .gondola-testimonial-prev,
  .gondola-testimonial-next {
    width: 43px;

    height: 43px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gondola-testimonial-visual {
    min-height: 230px;

    padding: 25px;
  }


  .gondola-testimonial-quote-mark {
    font-size: 70px;
  }


  .gondola-testimonial-visual-content strong {
    font-size: 30px;
  }


  .gondola-testimonial-content {
    padding: 35px 20px;
  }


  .gondola-testimonial-item blockquote {
    font-size: 22px;
  }


  .gondola-testimonial-author-image {
    width: 50px;

    height: 50px;

    flex-basis: 50px;
  }

}

/* =========================================================
   PREMIUM GONDOLA FOOTER
========================================================= */

.gondola-footer {
  position: relative;
  overflow: hidden;

  background: var(--dark-blue);

  color: var(--color-white);

  isolation: isolate;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.gondola-footer-bg {
  position: absolute;

  inset: 0;

  z-index: -3;

  overflow: hidden;
}

.gondola-footer-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  opacity: 0.28;

  transform: scale(1.04);
}


/* =========================================================
   DARK BLUE OVERLAY
========================================================= */

.gondola-footer-overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background: fixed linear-gradient(180deg,
      rgba(91, 61, 12, 0.38) 0%,
      rgba(63, 40, 7, 0.62) 35%,
      rgba(20, 13, 4, 0.93) 100%),
    linear-gradient(90deg,
      rgba(183, 132, 32, 0.52) 0%,
      rgba(183, 132, 32, 0.18) 65%,
      rgba(20, 13, 4, 0.24) 100%);
}


/* =========================================================
   TOP CTA
========================================================= */

.gondola-footer-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  padding: 80px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


.gondola-footer-cta-content {
  max-width: 760px;
}


.gondola-footer-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 20px;

  font-family: var(--font-primary);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.22em;

  color: var(--color-secondary);
}


.gondola-footer-eyebrow::before {
  content: "";

  width: 34px;

  height: 1px;

  background: var(--color-secondary);
}


.gondola-footer-cta h2 {
  margin: 0;

  max-width: 720px;

  font-family: var(--font-secondary);

  font-size: clamp(38px, 5vw, 68px);

  line-height: 1.05;

  font-weight: 500;

  letter-spacing: -0.025em;

  color: var(--color-white);
}


.gondola-footer-cta h2 span {
  display: block;

  color: var(--color-secondary);

  font-style: italic;
}


.gondola-footer-cta p {
  max-width: 600px;

  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.gondola-footer-book-btn {
  min-width: 205px;

  min-height: 58px;

  padding: 0 24px;

  background: var(--color-secondary);

  color: var(--dark-blue);

  font-family: var(--font-primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.04em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.gondola-footer-book-btn i {
  transition: transform 0.3s ease;
}


.gondola-footer-book-btn:hover {
  background: var(--color-white);

  color: var(--dark-blue);

  transform: translateY(-3px);
}


.gondola-footer-book-btn:hover i {
  transform: translateX(5px);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.gondola-footer-main {
  display: grid;

  grid-template-columns:
    minmax(250px, 1.5fr) repeat(2, minmax(150px, 0.75fr)) minmax(260px, 1.2fr);

  gap: 60px;

  padding: 75px 0 65px;
}


/* =========================================================
   BRAND
========================================================= */

.gondola-footer-brand {
  max-width: 340px;
}


.gondola-footer-logo {
  display: inline-block;

  width: 190px;

  margin-bottom: 25px;
}


.gondola-footer-logo img {
  width: 100%;

  height: auto;

  object-fit: contain;
}


.gondola-footer-brand p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;

  line-height: 1.9;
}


/* =========================================================
   SOCIAL
========================================================= */

.gondola-footer-social {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 28px;
}


.gondola-footer-social a {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 40px;

  height: 40px;

  border: 1px solid rgba(255, 255, 255, 0.22);

  border-radius: 50%;

  color: var(--color-white);

  font-size: 13px;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.gondola-footer-social a:hover {
  background: var(--color-secondary);

  border-color: var(--color-secondary);

  color: var(--dark-blue);

  transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.gondola-footer-column h3 {
  margin: 0 0 24px;

  font-family: var(--font-primary);

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.14em;

  color: var(--color-white);
}


.gondola-footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 13px;

  padding: 0;

  margin: 0;
}


.gondola-footer-column li {
  margin: 0;
}


.gondola-footer-column li a {
  position: relative;

  display: inline-block;

  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;

  line-height: 1.5;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}


.gondola-footer-column li a::before {
  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  width: 0;

  height: 1px;

  background: var(--color-secondary);

  transform: translateY(-50%);

  transition: width 0.3s ease;
}


.gondola-footer-column li a:hover {
  color: var(--color-white);

  padding-left: 17px;
}


.gondola-footer-column li a:hover::before {
  width: 10px;
}


/* =========================================================
   CONTACT
========================================================= */

.gondola-footer-contact {
  min-width: 0;
}


.gondola-footer-contact-item {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 20px;

  color: var(--color-white);

  transition: color 0.3s ease;
}


.gondola-footer-contact-item:hover {
  color: var(--color-secondary);
}


.gondola-footer-contact-icon {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 auto;

  width: 42px;

  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 50%;

  color: var(--color-secondary);

  font-size: 13px;
}


.gondola-footer-contact-item>span:last-child {
  display: flex;

  flex-direction: column;

  gap: 4px;

  min-width: 0;
}


.gondola-footer-contact-item small {
  color: rgba(255, 255, 255, 0.45);

  font-family: var(--font-primary);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.gondola-footer-contact-item strong {
  display: block;

  color: rgba(255, 255, 255, 0.9);

  font-family: var(--font-primary);

  font-size: 13px;

  font-weight: 500;

  line-height: 1.5;

  overflow-wrap: anywhere;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.gondola-footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  padding: 24px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.gondola-footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 12px;
}




/* =========================================================
   BACK TO TOP
========================================================= */

.gondola-footer-top {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 auto;

  width: 42px;

  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.22);

  color: var(--color-white);

  font-size: 12px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.gondola-footer-top:hover {
  background: var(--color-secondary);

  color: var(--dark-blue);

  transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .gondola-footer-main {
    grid-template-columns:
      1.4fr 1fr 1fr;

    gap: 45px;
  }


  .gondola-footer-contact {
    grid-column: 1 / -1;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
  }


  .gondola-footer-contact h3 {
    grid-column: 1 / -1;
  }


  .gondola-footer-contact-item {
    margin-bottom: 0;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .gondola-footer-cta {
    flex-direction: column;

    align-items: flex-start;

    gap: 30px;

    padding: 60px 0;
  }


  .gondola-footer-cta h2 {
    font-size: clamp(36px, 10vw, 52px);
  }


  .gondola-footer-cta p {
    font-size: 14px;

    line-height: 1.75;
  }


  .gondola-footer-main {
    grid-template-columns: 1fr;

    gap: 45px;

    padding: 55px 0;
  }


  .gondola-footer-brand {
    max-width: 500px;
  }


  .gondola-footer-contact {
    display: block;
  }


  .gondola-footer-contact h3 {
    margin-bottom: 24px;
  }


  .gondola-footer-contact-item {
    margin-bottom: 18px;
  }


  .gondola-footer-bottom {
    flex-wrap: wrap;

    justify-content: center;

    text-align: center;

    padding: 22px 0;
  }


  .gondola-footer-top {
    order: -1;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gondola-footer-cta {
    padding: 50px 0;
  }


  .gondola-footer-eyebrow {
    font-size: 9px;

    letter-spacing: 0.16em;
  }


  .gondola-footer-cta h2 {
    font-size: 36px;
  }


  .gondola-footer-book-btn {
    width: 100%;
  }


  .gondola-footer-logo {
    width: 165px;
  }


  .gondola-footer-contact-item strong {
    font-size: 12px;
  }


}

/* ----------------------------------------------- About us page ------------------------------------------ */
/* =========================================================
   ABOUT US PAGE BANNER
========================================================= */

.aboutus-page-banner {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
}

/* ---------------------------------------------------------
   BACKGROUND IMAGE
--------------------------------------------------------- */

.aboutus-page-banner-bg {
  inset: 0;
  z-index: 0;
}

.aboutus-page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------------------------------------------------------
   DARK OVERLAY
--------------------------------------------------------- */

.aboutus-page-banner-overlay {
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 35%,
      rgba(0, 0, 0, 0.20) 75%,
      rgba(0, 0, 0, 0.08) 100%);
}

/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */
.aboutus-page-banner .container {
  position: relative;
  z-index: 3;
}

.aboutus-page-banner-content {
  width: min(600px, 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}


/* =========================================================
   ABOUT BANNER AWARDS
   3 TOP + 2 CENTERED BELOW
========================================================= */

.aboutus-page-banner-awards {
  position: absolute;

  top: 50%;
  right: 0;

  transform: translateY(-50%);

  width: clamp(220px, 22vw, 300px);

  display: grid;

  grid-template-columns: repeat(6, 1fr);

  row-gap: clamp(6px, 0.8vw, 12px);

  align-items: center;
  justify-items: center;

  z-index: 5;
}


/* =========================================================
   AWARD
========================================================= */

.aboutus-award {
  width: clamp(65px, 6vw, 88px);

  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutus-award img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.25));
}


/* =========================================================
   TOP ROW — 3 LOGOS
========================================================= */

.aboutus-award:nth-child(1) {
  grid-column: 1 / 3;
}

.aboutus-award:nth-child(2) {
  grid-column: 3 / 5;
}

.aboutus-award:nth-child(3) {
  grid-column: 5 / 7;
}


/* =========================================================
   BOTTOM ROW — 2 LOGOS
   Positioned between the 3 top logos
========================================================= */

.aboutus-award:nth-child(4) {
  grid-column: 2 / 4;
}

.aboutus-award:nth-child(5) {
  grid-column: 4 / 6;
}

/* ---------------------------------------------------------
   MAIN TITLE
--------------------------------------------------------- */

.aboutus-page-banner-title {
  margin: 0;

  font-family: var(--font-secondary);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -2px;
}

/* ---------------------------------------------------------
   GOLD SUB TITLE
--------------------------------------------------------- */

.aboutus-page-banner-subtitle {
  margin: var(--space-15) 0 var(--space-20);

  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
}

/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.aboutus-page-banner-description {
  max-width: 570px;
  margin: 0;

  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   GOLD CURVED BOTTOM
--------------------------------------------------------- */

.aboutus-page-banner-curve {
  left: -3%;
  bottom: -1px;

  width: 106%;
  height: 55px;

  z-index: 4;

  background: var(--color-white);

  border-radius: 50% 50% 0 0 / 100% 100% 0 0;

  box-shadow: 0 -5px 0 rgba(189, 131, 5, 0.85);
}

/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 991px) {

  .aboutus-page-banner {
    min-height: 420px;
  }

  .aboutus-page-banner-content {
    padding-top: var(--space-80);
    padding-bottom: var(--space-80);
  }

  .aboutus-page-banner-title {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .aboutus-page-banner-subtitle {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
  }

  .aboutus-page-banner-description {
    max-width: 520px;
  }
}

/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

  .aboutus-page-banner {
    min-height: 500px;
  }

  .aboutus-page-banner-bg img {
    object-position: 62% center;
  }

  .aboutus-page-banner-overlay {
    background:
      linear-gradient(90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.58) 60%,
        rgba(0, 0, 0, 0.35) 100%);
  }

  .aboutus-page-banner-content {
    padding-top: var(--space-60);
    padding-bottom: var(--space-80);
  }

  .aboutus-page-banner-title {
    font-size: clamp(3rem, 15vw, 4.5rem);
    letter-spacing: -1px;
  }

  .aboutus-page-banner-subtitle {
    margin-top: var(--space-10);
    margin-bottom: var(--space-20);

    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .aboutus-page-banner-description {
    font-size: 14px;
    line-height: 1.7;
    max-width: 470px;
  }

  .aboutus-page-banner-curve {
    height: 35px;
  }

  .aboutus-page-banner-awards {
    top: 100%;
    left: 25%;
  }
}

/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 576px) {

  .aboutus-page-banner {
    min-height: 470px;
  }

  .aboutus-page-banner-content {
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
  }

  .aboutus-page-banner-title {
    font-size: 3.2rem;
  }

  .aboutus-page-banner-subtitle {
    font-size: 2rem;
  }

  .aboutus-page-banner-description {
    font-size: 13px;
    line-height: 1.65;
  }

}



/* =========================================================
   ABOUT US PAGE - STORY SECTION
========================================================= */



/* =========================================================
   STORY GRID
   Desktop = 3 Cards Per Row
   Total = 6 Cards
========================================================= */

.aboutus-page-story-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

  width: 100%;
}


/* =========================================================
   STORY CARD
========================================================= */

.aboutus-page-story-card {
  position: relative;

  min-width: 0;

  min-height: 340px;

  padding: 35px 30px 30px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: flex-start;

  /* Card background */

  background: #f8f6f1;

  border: 1px solid rgba(189, 131, 5, 0.14);

  border-radius: 4px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Gold top accent */

.aboutus-page-story-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 3px;

  background: var(--color-primary);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.35s ease;
}


/* Card hover */

.aboutus-page-story-card:hover {
  transform: translateY(-6px);

  border-color: rgba(189, 131, 5, 0.35);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.08);
}

.aboutus-page-story-card:hover::before {
  transform: scaleX(1);
}


/* =========================================================
   CARD ICON
========================================================= */

.aboutus-page-story-card-icon {
  width: 62px;

  height: 62px;

  margin-bottom: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--color-primary);

  font-size: 38px;

  line-height: 1;

  background: rgba(189, 131, 5, 0.08);

  border: 1px solid rgba(189, 131, 5, 0.16);

  border-radius: 50%;

  flex-shrink: 0;
}

.aboutus-page-story-card-icon img {
  width: 34px;

  height: 34px;

  object-fit: contain;

  display: block;
}

.aboutus-page-story-card-icon i {
  font-size: inherit;

  line-height: 1;
}


/* =========================================================
   CARD TITLE
========================================================= */

.aboutus-page-story-card-title {
  margin: 0 0 var(--space-15);

  color: var(--color-black);

  font-family: var(--font-secondary);

  font-size: clamp(22px, 2vw, 27px);

  font-weight: 500;

  line-height: 1.2;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.aboutus-page-story-card-text {
  max-width: 100%;

  margin: 0;

  color: var(--color-dark);

  font-family: var(--font-primary);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   LEARN MORE BUTTON
========================================================= */

.aboutus-page-story-card-link {
  margin-top: auto;

  padding: 0;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  background: transparent;

  border: 0;

  color: var(--color-primary);

  font-family: var(--font-primary);

  font-size: 14px;

  font-weight: 600;

  line-height: 1.4;

  cursor: pointer;

  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.aboutus-page-story-card-link span {
  display: inline-block;
}

.aboutus-page-story-card-link i {
  font-size: 12px;

  transition: transform 0.3s ease;
}

.aboutus-page-story-card-link:hover {
  gap: 13px;

  color: var(--color-secondary);
}

.aboutus-page-story-card-link:hover i {
  transform: translateX(3px);
}


/* =========================================================
   HIDDEN MODAL CONTENT
   Content remains inside HTML for WordPress
========================================================= */

.aboutus-page-story-card-details {
  display: none;
}


/* =========================================================
   STORY MODAL
========================================================= */

.aboutus-page-story-modal {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: var(--space-30);

  visibility: hidden;

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.aboutus-page-story-modal.is-open {
  visibility: visible;

  opacity: 1;

  pointer-events: auto;
}


/* =========================================================
   MODAL BACKDROP
========================================================= */

.aboutus-page-story-modal-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(0, 20, 43, 0.72);

  backdrop-filter: blur(8px);

  -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   MODAL DIALOG
========================================================= */

.aboutus-page-story-modal-dialog {
  position: relative;

  z-index: 2;

  width: min(900px, 100%);

  max-height: 88vh;

  overflow-y: auto;

  background: var(--color-white);

  border-radius: 6px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28);

  transform: translateY(25px) scale(0.98);

  transition: transform 0.4s ease;
}

.aboutus-page-story-modal.is-open .aboutus-page-story-modal-dialog {
  transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.aboutus-page-story-modal-close {
  position: absolute;

  top: 22px;

  right: 22px;

  z-index: 5;

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 50%;

  background: var(--color-gray);

  color: var(--color-dark);

  font-size: 18px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.aboutus-page-story-modal-close:hover {
  background: var(--color-primary);

  color: var(--color-white);

  transform: rotate(90deg);
}


/* =========================================================
   MODAL INNER
========================================================= */

.aboutus-page-story-modal-inner {
  position: relative;

  display: flex;

  min-height: 450px;

  padding: var(--space-60);
}


/* =========================================================
   MODAL GOLD ACCENT
========================================================= */

.aboutus-page-story-modal-accent {
  flex: 0 0 4px;

  margin-right: var(--space-40);

  background: var(--color-primary);

  border-radius: 10px;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.aboutus-page-story-modal-content {
  flex: 1;

  padding-right: var(--space-40);
}

.aboutus-page-story-modal-content .aboutus-page-story-modal-label {
  display: inline-block;

  margin-bottom: var(--space-15);

  color: var(--color-primary);

  font-family: var(--font-primary);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.aboutus-page-story-modal-content h2 {
  margin: 0 0 var(--space-25);

  color: var(--color-black);

  font-family: var(--font-secondary);

  font-size: clamp(34px, 4vw, 52px);

  font-weight: 500;

  line-height: 1.1;
}

.aboutus-page-story-modal-content p {
  max-width: 720px;

  margin: 0 0 var(--space-20);

  color: var(--color-text);

  font-family: var(--font-primary);

  font-size: 15px;

  line-height: 1.8;
}

.aboutus-page-story-modal-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.aboutus-story-modal-open {
  overflow: hidden;
}


/* =========================================================
   TABLET
   2 Cards Per Row
========================================================= */

@media (max-width: 991px) {

  .aboutus-page-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .aboutus-page-story-card {
    min-height: 320px;

    padding: 30px 25px 25px;
  }

}


/* =========================================================
   MOBILE
   1 Card Per Row
========================================================= */

@media (max-width: 767px) {

  .aboutus-page-story {
    padding-top: var(--space-60) !important;

    padding-bottom: var(--space-60) !important;
  }



  .aboutus-page-story-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }


  .aboutus-page-story-card {
    width: 100%;

    min-height: auto;

    padding: 28px 22px 24px;
  }


  .aboutus-page-story-card-icon {
    width: 56px;

    height: 56px;

    margin-bottom: 18px;

    font-size: 34px;
  }


  .aboutus-page-story-card-icon img {
    width: 31px;

    height: 31px;
  }


  .aboutus-page-story-card-title {
    font-size: 25px;

    margin-bottom: var(--space-10);
  }


  .aboutus-page-story-card-text {
    max-width: 100%;

    font-size: 14px;

    line-height: 1.7;
  }


  .aboutus-page-story-card-link {
    margin-top: 22px;
  }


  /* =====================================================
     MODAL — MOBILE
  ===================================================== */

  .aboutus-page-story-modal {
    padding: 15px;
  }


  .aboutus-page-story-modal-dialog {
    max-height: 90vh;

    border-radius: 4px;
  }


  .aboutus-page-story-modal-inner {
    min-height: auto;

    padding:
      var(--space-50) var(--space-25) var(--space-30);
  }


  .aboutus-page-story-modal-accent {
    display: none;
  }


  .aboutus-page-story-modal-content {
    padding-right: 0;
  }


  .aboutus-page-story-modal-content h2 {
    font-size: 36px;

    margin-bottom: var(--space-20);
  }


  .aboutus-page-story-modal-content p {
    font-size: 14px;

    line-height: 1.7;
  }


  .aboutus-page-story-modal-close {
    top: 12px;

    right: 12px;

    width: 40px;

    height: 40px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .aboutus-page-story-divider {
    width: 180px;
  }


  .aboutus-page-story-divider span {
    width: 55px;
  }


  .aboutus-page-story-card {
    padding: 25px 20px 22px;
  }


  .aboutus-page-story-card-title {
    font-size: 23px;
  }

}

/* =========================================================
   FLOATING CALL BUTTON
========================================================= */

.floating-call-button {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 9998;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;

  padding: 0;

  color: #ffffff;

  background:
    linear-gradient(135deg,
      var(--color-primary, #bd8305),
      #d8a63c);

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50px;

  text-decoration: none;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.25);

  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}


/* =========================================================
   PHONE ICON
========================================================= */

.floating-call-icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 18px;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}


.floating-call-icon i {
  display: block;

  transition:
    transform 0.35s ease;
}


/* =========================================================
   CALL CONTENT
========================================================= */

.floating-call-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 145px;

  padding-right: 20px;

  opacity: 0;

  transform: translateX(15px);

  white-space: nowrap;

  transition:
    opacity 0.3s ease 0.08s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   CALL LABEL
========================================================= */

.floating-call-content small {
  display: block;

  margin-bottom: 2px;

  color: rgba(255, 255, 255, 0.75);

  font-family:
    var(--font-primary, "Montserrat", sans-serif);

  font-size: 14px;

  font-weight: 700;

  line-height: 1;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}


/* =========================================================
   PHONE NUMBER
========================================================= */

.floating-call-content strong {
  display: block;

  color: #ffffff;

  font-family:
    var(--font-primary, "Montserrat", sans-serif);

  font-size: 16px;

  font-weight: 700;

  line-height: 1.3;

  letter-spacing: 0.6px;
}


/* =========================================================
   HOVER
========================================================= */

.floating-call-button:hover {
  width: 205px;

  /* transform: translateY(-4px); */

  background:
    linear-gradient(135deg,
      #d8a63c,
      var(--color-primary, #bd8305));

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.30);
}


.floating-call-button:hover .floating-call-content {
  opacity: 1;

  transform: translateX(0);
}


/* .floating-call-button:hover .floating-call-icon i {
  transform: rotate(-10deg) scale(1.08);
} */


/* =========================================================
   PULSE RING
========================================================= */

.floating-call-button::before {
  content: "";

  position: absolute;

  inset: -4px;

  border: 1px solid rgba(189, 131, 5, 0.45);

  border-radius: inherit;

  pointer-events: none;

  animation:
    floating-call-pulse 2.2s ease-out infinite;
}


@keyframes floating-call-pulse {

  0% {
    opacity: 0.65;

    transform: scale(0.95);
  }

  70% {
    opacity: 0;

    transform: scale(1.18);
  }

  100% {
    opacity: 0;

    transform: scale(1.18);
  }

}


/* =========================================================
   ACTIVE / CLICK
========================================================= */

.floating-call-button:active {
  transform: translateY(-1px) scale(0.97);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.floating-call-button:focus-visible {
  outline: 2px solid #ffffff;

  outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .floating-call-button {
    right: 20px;
    bottom: 20px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

  .floating-call-button {
    right: 15px;
    bottom: 15px;

    width: 54px;
    height: 54px;
  }


  .floating-call-icon {
    flex-basis: 54px;

    width: 54px;
    height: 54px;

    font-size: 17px;
  }


  .floating-call-button:hover {
    width: 190px;
  }


  .floating-call-content {
    min-width: 136px;

    padding-right: 15px;
  }


  .floating-call-content small {
    font-size: 7px;
  }


  .floating-call-content strong {
    font-size: 11px;
  }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .floating-call-button,
  .floating-call-icon,
  .floating-call-icon i,
  .floating-call-content {
    transition: none;
  }

  .floating-call-button::before {
    animation: none;
  }

}


/* =========================================================
   ABOUT US INFORMATION ACCORDION
========================================================= */

.aboutus-page-info {
  position: relative;
  background:
    linear-gradient(180deg,
      #fffaf2 0%,
      var(--color-beige) 50%,
      #ffe3be 100%);

}




/* ---------------------------------------------------------
   ACCORDION WRAPPER
--------------------------------------------------------- */

.aboutus-page-info-accordion {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}


/* ---------------------------------------------------------
   ACCORDION ITEM
--------------------------------------------------------- */

.aboutus-page-info-item {
  width: 100%;
  border: 1px solid #d4d4d4;
  background: #ffffff;
}

.aboutus-page-info-item+.aboutus-page-info-item {
  margin-top: 6px;
}


/* ---------------------------------------------------------
   QUESTION / GOLD HEADER
--------------------------------------------------------- */

.aboutus-page-info-question {
  position: relative;

  width: 100%;
  min-height: 52px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #e2b454;
  color: #ffffff;

  text-align: left;

  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 0.04em;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}


/* ---------------------------------------------------------
   QUESTION TEXT
--------------------------------------------------------- */

.aboutus-page-info-question-text {
  display: block;
  padding-right: 20px;
}


/* ---------------------------------------------------------
   PLUS ICON
--------------------------------------------------------- */

.aboutus-page-info-question-icon {
  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;

  font-size: 12px;

  transition:
    transform 0.35s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.aboutus-page-info-question-icon i {
  transition: transform 0.35s ease;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.aboutus-page-info-question:hover {
  background: #d9aa4a;
}


/* ---------------------------------------------------------
   ACTIVE ICON
--------------------------------------------------------- */

.aboutus-page-info-item.is-active .aboutus-page-info-question-icon {
  background: rgba(255, 255, 255, 0.12);
}

.aboutus-page-info-item.is-active .aboutus-page-info-question-icon i {
  transform: rotate(45deg);
}


/* ---------------------------------------------------------
   ANSWER
--------------------------------------------------------- */

.aboutus-page-info-answer {
  display: grid;
  grid-template-rows: 0fr;

  overflow: hidden;

  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ---------------------------------------------------------
   ANSWER INNER
--------------------------------------------------------- */

.aboutus-page-info-answer-inner {
  min-height: 0;
  overflow: hidden;

  padding: 0 24px;

  transition:
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ---------------------------------------------------------
   ACTIVE ANSWER
--------------------------------------------------------- */

.aboutus-page-info-item.is-active .aboutus-page-info-answer {
  grid-template-rows: 1fr;
}

.aboutus-page-info-item.is-active .aboutus-page-info-answer-inner {
  padding-top: 22px;
  padding-bottom: 24px;
}


/* ---------------------------------------------------------
   ANSWER TYPOGRAPHY
--------------------------------------------------------- */

.aboutus-page-info-answer-inner p {
  margin: 0 0 18px;

  color: #111111;

  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;

  line-height: 1.65;
}

.aboutus-page-info-answer-inner p:last-child {
  margin-bottom: 0;
}

.aboutus-page-info-answer-inner strong {
  color: var(--dark-blue);
  font-weight: 700;
}


/* ---------------------------------------------------------
   LIST
--------------------------------------------------------- */

.aboutus-page-info-answer-inner ol,
.aboutus-page-info-answer-inner ul {
  margin: 0 0 18px;
  padding-left: 25px;
}

.aboutus-page-info-answer-inner li {
  margin-bottom: 6px;

  color: #111111;

  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {



  .aboutus-page-info-question {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .aboutus-page-info-answer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

}


@media (max-width: 767px) {

  .aboutus-page-info {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }



  .aboutus-page-info-question {
    min-height: 52px;

    padding: 0 15px;

    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .aboutus-page-info-question-icon {
    width: 27px;
    height: 27px;

    flex-basis: 27px;

    font-size: 10px;
  }

  .aboutus-page-info-answer-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .aboutus-page-info-item.is-active .aboutus-page-info-answer-inner {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .aboutus-page-info-answer-inner p,
  .aboutus-page-info-answer-inner li {
    font-size: 13px;
    line-height: 1.6;
  }

}


@media (max-width: 480px) {

  .aboutus-page-info-question {
    min-height: 50px;
  }

  .aboutus-page-info-question-text {
    padding-right: 12px;
  }


}

/* =========================================================
   PROPOSAL PAGE
   WHY CHOOSE OUR PROPOSAL PACKAGE
========================================================= */

.proposal-why-section {
  position: relative;
  background: #fff;
  padding: 80px 0 78px;
  overflow: hidden;
}


/* ---------------------------------------------------------
   FEATURE GRID
--------------------------------------------------------- */

.proposal-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}


/* ---------------------------------------------------------
   FEATURE CARD
--------------------------------------------------------- */

.proposal-feature-card {
  min-height: 210px;

  padding: 18px 22px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  background: rgba(255, 252, 246, 0.55);

  border: 1px solid rgba(159, 109, 8, 0.25);
  border-radius: 6px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.proposal-feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(159, 109, 8, 0.55);

  box-shadow: 0 12px 30px rgba(120, 82, 20, 0.08);
}


/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.proposal-feature-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;

  color: var(--color-gold-dark);

  font-size: 32px;
  line-height: 1;
}


/* ---------------------------------------------------------
   CARD TITLE
--------------------------------------------------------- */

.proposal-feature-card h3 {
  margin: 0 0 12px;

  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;

  color: var(--color-gold-dark);
}


/* ---------------------------------------------------------
   CARD DESCRIPTION
--------------------------------------------------------- */

.proposal-feature-card p {
  max-width: 230px;

  margin: 0;

  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;

  color: #292722;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .proposal-why-section {
    padding: 65px 0;
  }

  .proposal-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .proposal-feature-card {
    min-height: 220px;
  }

}


@media (max-width: 576px) {

  .proposal-why-section {
    padding: 55px 0;
  }

  .proposal-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proposal-feature-card {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .proposal-feature-card p {
    max-width: 300px;
  }

}

/* =========================================================
   PROPOSAL MOMENTS SLIDER
   Premium Center Focused Gallery
========================================================= */

.proposal-moments-section {
  position: relative;

  padding-top: var(--space-80);
  padding-bottom: var(--space-98);

  background: var(--color-offwhite);

  overflow: hidden;
}



/* =========================================================
   SLIDER OUTER WRAPPER
========================================================= */

.proposal-moments-slider-wrap {
  position: relative;

  width: 100%;

  padding-top: 5px;
  padding-bottom: 35px;
}


/* =========================================================
   SLICK SLIDER
========================================================= */

.proposal-moments-slider {
  width: 100%;

  overflow: hidden;
}


/* =========================================================
   SLICK TRACK
========================================================= */

.proposal-moments-slider .slick-list {
  overflow: visible;

  padding-top: 8px;
  padding-bottom: 8px;
}

.proposal-moments-slider .slick-track {
  display: flex;

  align-items: center;
}


/* =========================================================
   SLIDE
========================================================= */

.proposal-moment-slide {
  position: relative;

  padding: 0 5px;

  box-sizing: border-box;

  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms ease;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.proposal-moment-card {
  position: relative;

  width: 100%;

  height: 390px;

  overflow: hidden;

  border: 1px solid rgba(159, 109, 8, 0.25);

  border-radius: 8px;

  background: var(--color-cream);

  box-shadow:
    0 8px 25px rgba(0, 30, 65, 0.08);

  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms ease,
    opacity 700ms ease;
}


/* =========================================================
   IMAGE
========================================================= */

.proposal-moment-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  user-select: none;

  -webkit-user-drag: none;

  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}


/* =========================================================
   SIDE SLIDES
========================================================= */

.proposal-moments-slider .slick-slide:not(.slick-center) .proposal-moment-card {
  opacity: 0.9;

  transform: scale(0.94);

  box-shadow:
    0 5px 18px rgba(0, 30, 65, 0.05);
}

.proposal-moments-slider .slick-slide:not(.slick-center) .proposal-moment-card img {
  filter: brightness(0.82);
}


/* =========================================================
   ACTIVE CENTER SLIDE
========================================================= */

.proposal-moments-slider .slick-center .proposal-moment-card {
  opacity: 1;

  transform: scale(1);

  border-color: rgba(159, 109, 8, 0.42);

  box-shadow:
    0 18px 45px rgba(0, 30, 65, 0.14);
}

.proposal-moments-slider .slick-center .proposal-moment-card img {
  filter: brightness(1);

  transform: scale(1.015);
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .proposal-moments-slider .slick-center .proposal-moment-card:hover img {

    transform: scale(1.045);

  }

}


/* =========================================================
   DOTS
========================================================= */

.proposal-moments-dots {
  display: flex;

  align-items: center;
  justify-content: center;

  min-height: 12px;

  margin-top: 25px;
}

.proposal-moments-dots .slick-dots {
  position: static;

  display: flex !important;

  align-items: center;
  justify-content: center;

  gap: 8px;

  width: auto;

  margin: 0;
  padding: 0;

  list-style: none;
}

.proposal-moments-dots .slick-dots li {
  width: 7px;
  height: 7px;

  margin: 0;
  padding: 0;
}

.proposal-moments-dots .slick-dots li button {
  position: relative;

  width: 7px;
  height: 7px;

  margin: 0;
  padding: 0;

  border-radius: 50%;

  background: var(--color-beige);

  font-size: 0;

  transition:
    width 350ms ease,
    background 350ms ease,
    border-radius 350ms ease;
}

.proposal-moments-dots .slick-dots li button::before {
  display: none;
}

.proposal-moments-dots .slick-dots li.slick-active button {
  width: 24px;

  border-radius: 20px;

  background: var(--color-primary);
}


/* =========================================================
   REMOVE FOCUS OUTLINE FROM SLIDES
========================================================= */

.proposal-moment-slide:focus,
.proposal-moment-slide:focus-visible {
  outline: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .proposal-moments-section {
    padding-top: var(--space-60);
    padding-bottom: var(--space-80);
  }

  .proposal-moments-section .proposal-section-heading {
    margin-bottom: 35px;
  }

  .proposal-moment-card {
    height: 340px;
  }

  .proposal-moment-slide {
    padding: 0 4px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .proposal-moments-section {
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
  }

  .proposal-moments-section .proposal-section-heading {
    margin-bottom: 28px;
  }

  .proposal-moments-section .proposal-eyebrow {
    font-size: 9px;

    letter-spacing: 1.7px;
  }

  .proposal-moments-section .proposal-section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);

    line-height: 1.18;
  }

  .proposal-moments-slider .slick-list {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .proposal-moment-card {
    height: 300px;

    border-radius: 7px;
  }

  .proposal-moment-slide {
    padding: 0 3px;
  }

  .proposal-moments-dots {
    margin-top: 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .proposal-moments-section {
    padding-top: 45px;
    padding-bottom: 55px;
  }

  .proposal-moments-section .proposal-section-heading {
    margin-bottom: 24px;
  }

  .proposal-moment-card {
    height: 260px;

    border-radius: 6px;
  }

  .proposal-moments-slider .slick-slide:not(.slick-center) .proposal-moment-card {
    transform: scale(0.92);
  }

}

/* =========================================================
   PROPOSAL STORY SECTION
   READY TO POP THE QUESTION
========================================================= */

.proposal-story-section {
  position: relative;

  /* padding-top: var(--space-80); */
  padding-bottom: var(--space-80);

  background: var(--color-offwhite);

  overflow: hidden;
}


/* =========================================================
   MAIN GRID
========================================================= */

.proposal-story-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr) minmax(0, 1.08fr);

  align-items: center;

  gap: 55px;
}


.proposal-story-content {
  width: 100%;

  max-width: 590px;
}



.proposal-story-title {
  margin-bottom: 10px;

  color: var(--color-gold-dark);

  font-family: var(--font-secondary);

  font-size: clamp(1.55rem, 2.3vw, 2.5rem);

  font-weight: 500;

  line-height: 1.2;

  letter-spacing: 0.2px;
}


.proposal-story-text {
  width: 100%;
}

.proposal-story-text p {
  margin: 0 0 12px;

  color: var(--color-dark);

  font-family: var(--font-primary);

  font-size: 15px;

  font-weight: 400;

  line-height: 1.48;
}


/* Remove margin from last paragraph */

.proposal-story-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   GOLD HIGHLIGHT PARAGRAPH
========================================================= */

.proposal-story-text .proposal-story-highlight {
  margin-top: 14px;

  color: var(--color-gold-dark);

  font-family: var(--font-secondary);

  font-size: 17px;

  font-weight: 500;

  line-height: 1.38;
}


/* =========================================================
   RIGHT IMAGE WRAPPER
========================================================= */

.proposal-story-image-wrap {
  position: relative;

  width: 100%;

  display: flex;

  justify-content: flex-end;
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.proposal-story-image {
  position: relative;

  width: 100%;

  max-width: 590px;

  padding: 3px;

  border: 1px solid rgba(159, 109, 8, 0.45);

  border-radius: 9px;

  background: var(--color-white);

  box-shadow:
    0 12px 35px rgba(0, 30, 65, 0.08);

  overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.proposal-story-image img {
  width: 100%;

  aspect-ratio: 1 / 0.92;

  display: block;

  object-fit: cover;

  object-position: center;

  border-radius: 6px;

  user-select: none;

  -webkit-user-drag: none;

  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   IMAGE HOVER
========================================================= */

@media (hover: hover) {

  .proposal-story-image:hover img {
    transform: scale(1.025);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .proposal-story-section {

    padding-bottom: var(--space-60);
  }


  .proposal-story-grid {
    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);

    gap: 35px;
  }


  .proposal-story-title {
    font-size: 1.6rem;
  }


  .proposal-story-text p {
    font-size: 13px;

    line-height: 1.5;
  }


  .proposal-story-text .proposal-story-highlight {
    font-size: 14px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .proposal-story-section {

    padding-bottom: var(--space-60);
  }


  .proposal-story-grid {
    grid-template-columns: 1fr;

    gap: 32px;
  }


  .proposal-story-content {
    max-width: none;
  }


  .proposal-story-title {
    font-size: 1.55rem;

    text-align: left;
  }


  .proposal-story-text p {
    font-size: 13.5px;

    line-height: 1.55;

    margin-bottom: 13px;
  }


  .proposal-story-text .proposal-story-highlight {
    font-size: 15px;

    line-height: 1.42;
  }


  .proposal-story-image-wrap {
    justify-content: center;
  }


  .proposal-story-image {
    max-width: 100%;
  }


  .proposal-story-image img {
    aspect-ratio: 1 / 0.95;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .proposal-story-section {

    padding-bottom: 50px;
  }


  .proposal-story-grid {
    gap: 27px;
  }


  .proposal-story-title {
    font-size: 1.4rem;
  }


  .proposal-story-text p {
    font-size: 13px;

    line-height: 1.52;
  }


  .proposal-story-text .proposal-story-highlight {
    font-size: 14.5px;
  }


  .proposal-story-image {
    padding: 3px;

    border-radius: 8px;
  }


  .proposal-story-image img {
    border-radius: 5px;
  }

}

/* =========================================================
   PROPOSAL ULTIMATE PACKAGE
========================================================= */

.proposal-package-section {
  padding: 70px 0;
  background: var(--color-white);
}


/* =========================================================
   MAIN PACKAGE BOX
========================================================= */

.proposal-package-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;

  border: 1px solid #e5cfa5;
  border-radius: 6px;

  background:
    linear-gradient(135deg,
      #fffdf7 0%,
      #fbf7ed 50%,
      #fffdf8 100%);

  overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.proposal-package-content {
  padding: 16px 30px 24px;
}


/* =========================================================
   HEADING
========================================================= */

.proposal-package-heading h2 {
  margin: 0;

  color: #9d6208;

  font-family: var(--font-secondary);
  font-size: clamp(1.15rem, 2vw, 2.55rem);

  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 0.02em;
}

.proposal-package-heading h2 span {
  display: inline;
}



/* =========================================================
   FEATURES GRID
========================================================= */

.proposal-package-features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 45px;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.proposal-package-list {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin: 0;
  padding: 0;
}

.proposal-package-list li {
  display: flex;

  align-items: flex-start;

  gap: 11px;

  color: #303030;

  font-family: var(--font-primary);
  font-size: 15px;

  font-weight: 400;

  line-height: 1.35;
}

.proposal-package-list li small {
  font-size: 11px;

  color: #454545;
}


/* =========================================================
   CHECK ICON
========================================================= */

.proposal-package-check {
  flex: 0 0 20px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  margin-top: 1px;

  border: 1.5px solid #d18a16;

  border-radius: 50%;

  color: #d18a16;

  font-size: 12px;
}


/* =========================================================
   INVESTMENT CARD
========================================================= */

.proposal-investment-card {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  margin: 0;

  padding: 18px 20px;

  border-left: 1px solid #e5cfa5;

  text-align: center;

  background: rgba(255, 252, 244, 0.55);
}


/* =========================================================
   HEART ICON
========================================================= */

.proposal-investment-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  margin-bottom: 8px;

  color: #b87712;

  font-size: 22px;
}


/* =========================================================
   INVESTMENT LABEL
========================================================= */

.proposal-investment-label {
  display: block;

  margin-bottom: 2px;

  color: #9d6208;

  font-family: var(--font-primary);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.06em;
}


/* =========================================================
   PRICE
========================================================= */

.proposal-investment-price {
  color: #9d6208;

  font-family: var(--font-secondary);

  font-size: clamp(2.5rem, 4vw, 3rem);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.03em;

  margin-bottom: 4px;
}


/* =========================================================
   PER COUPLE
========================================================= */

.proposal-investment-couple {
  color: #9d6208;

  font-family: var(--font-primary);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.08em;
}



/* =========================================================
   NOTE
========================================================= */

.proposal-investment-note {
  max-width: 210px;

  margin: 9px 0 0;

  color: #383838;

  font-family: var(--font-primary);

  font-size: 14px;

  line-height: 1.35;

  text-align: center;
}

.proposal-page-btn {
  font-size: 14px;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

  .proposal-package-section {
    padding: 60px 0;
  }

  .proposal-package-box {
    grid-template-columns: 1fr 240px;
  }

  .proposal-package-content {
    padding: 18px 22px 22px;
  }

  .proposal-package-features {
    column-gap: 25px;
  }

  .proposal-package-list {
    gap: 12px;
  }

  .proposal-package-list li {
    font-size: 11.5px;
  }

  .proposal-investment-card {
    padding: 18px 15px;
  }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

  .proposal-package-section {
    padding: 50px 0;
  }

  .proposal-package-box {
    grid-template-columns: 1fr;
  }

  .proposal-package-content {
    padding: 22px 20px 25px;
  }

  .proposal-package-heading h2 {
    font-size: 1.2rem;
  }

  .proposal-package-heading h2 span {
    display: block;
  }

  .proposal-package-features {
    grid-template-columns: 1fr;

    gap: 13px;
  }

  .proposal-package-list {
    gap: 13px;
  }

  .proposal-package-list li {
    font-size: 12px;
  }

  .proposal-investment-card {
    border-top: 1px solid #e5cfa5;
    border-left: 0;

    padding: 25px 20px 27px;
  }


}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .proposal-package-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .proposal-package-list li {
    font-size: 11.5px;
  }

  .proposal-package-check {
    flex-basis: 16px;

    width: 16px;
    height: 16px;
  }

  .proposal-investment-price {
    font-size: 2.6rem;
  }
}


/* =========================================================
   MENU / PACKAGES SECTION
========================================================= */

.menu-packages-section {
  position: relative;

  padding-top: var(--space-80);
  padding-bottom: var(--space-110);

  background: var(--color-white);

  overflow: hidden;
}




/* =========================================================
   CATEGORY FILTERS
========================================================= */

.menu-packages-filters {
  margin-bottom: 26px;

  flex-wrap: wrap;
}


.menu-packages-filter {
  position: relative;

  min-width: 105px;

  height: 38px;

  padding: 0 17px;

  border: 1px solid rgba(159, 109, 8, 0.22);

  border-radius: 30px;

  background: var(--color-white);

  color: var(--color-dark);

  font-family: var(--font-primary);

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.35px;

  text-transform: uppercase;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}


.menu-packages-filter:hover {
  border-color: var(--color-gold-light);

  color: var(--color-gold-dark);

  transform: translateY(-1px);
}


.menu-packages-filter.is-active {
  border-color: var(--color-gold-light);

  background: linear-gradient(135deg,
      #c9a04b 0%,
      #b88a2e 100%);

  color: var(--color-white);

  box-shadow:
    0 7px 18px rgba(159, 109, 8, 0.18);
}


.menu-packages-filter:focus-visible {
  outline: 2px solid var(--color-gold-dark);

  outline-offset: 3px;
}


/* =========================================================
   LARGE IMAGE AREA
========================================================= */

.menu-packages-image-wrap {
  width: 100%;

  position: relative;
}


.menu-packages-image-frame {
  position: relative;

  width: 100%;

  /* aspect-ratio: 16 / 7; */

  overflow: hidden;

  border: 1px solid rgba(159, 109, 8, 0.72);

  background: var(--color-offwhite);
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.menu-packages-main-image {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition:
    opacity 0.25s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}


.menu-packages-main-image.is-changing {
  opacity: 0;

  transform: scale(1.025);
}


/* =========================================================
   DECORATIVE CORNERS
========================================================= */

.menu-packages-corner {
  position: absolute;

  width: 28px;

  height: 28px;

  z-index: 2;

  pointer-events: none;
}


.menu-packages-corner::before,
.menu-packages-corner::after {
  content: "";

  position: absolute;

  background: var(--color-gold-light);
}


.menu-packages-corner-tl {
  top: 13px;
  left: 13px;
}


.menu-packages-corner-tl::before {
  width: 28px;
  height: 1px;

  top: 0;
  left: 0;
}


.menu-packages-corner-tl::after {
  width: 1px;
  height: 28px;

  top: 0;
  left: 0;
}


.menu-packages-corner-tr {
  top: 13px;
  right: 13px;
}


.menu-packages-corner-tr::before {
  width: 28px;
  height: 1px;

  top: 0;
  right: 0;
}


.menu-packages-corner-tr::after {
  width: 1px;
  height: 28px;

  top: 0;
  right: 0;
}


.menu-packages-corner-bl {
  bottom: 13px;
  left: 13px;
}


.menu-packages-corner-bl::before {
  width: 28px;
  height: 1px;

  bottom: 0;
  left: 0;
}


.menu-packages-corner-bl::after {
  width: 1px;
  height: 28px;

  bottom: 0;
  left: 0;
}


.menu-packages-corner-br {
  bottom: 13px;
  right: 13px;
}


.menu-packages-corner-br::before {
  width: 28px;
  height: 1px;

  bottom: 0;
  right: 0;
}


.menu-packages-corner-br::after {
  width: 1px;
  height: 28px;

  bottom: 0;
  right: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .menu-packages-section {
    padding-top: 60px;

    padding-bottom: 80px;
  }




  .menu-packages-filters {
    margin-bottom: 22px;
  }


  .menu-packages-image-frame {
    aspect-ratio: 16 / 8;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

  .menu-packages-section {
    padding-top: 50px;

    padding-bottom: 60px;
  }


  .menu-packages-eyebrow {
    font-size: 8px;

    letter-spacing: 3px;
  }


  .menu-packages-title {
    font-size: 2rem;
  }


  .menu-packages-filters {
    gap: 7px !important;

    margin-bottom: 18px;
  }


  .menu-packages-filter {
    min-width: auto;

    height: 35px;

    padding-left: 12px;

    padding-right: 12px;

    font-size: 9px;
  }


  .menu-packages-image-frame {
    aspect-ratio: 4 / 3;
  }


  .menu-packages-corner {
    width: 20px;

    height: 20px;
  }


  .menu-packages-corner-tl,
  .menu-packages-corner-tr {
    top: 9px;
  }


  .menu-packages-corner-bl,
  .menu-packages-corner-br {
    bottom: 9px;
  }


  .menu-packages-corner-tl,
  .menu-packages-corner-bl {
    left: 9px;
  }


  .menu-packages-corner-tr,
  .menu-packages-corner-br {
    right: 9px;
  }


  .menu-packages-corner-tl::before,
  .menu-packages-corner-tr::before,
  .menu-packages-corner-bl::before,
  .menu-packages-corner-br::before {
    width: 20px;
  }


  .menu-packages-corner-tl::after,
  .menu-packages-corner-tr::after,
  .menu-packages-corner-bl::after,
  .menu-packages-corner-br::after {
    height: 20px;
  }

}

/* =========================================================
   LOCATION PAGE
========================================================= */

.location-page {
  background: var(--color-offwhite);
  color: var(--color-dark);
}




/* =========================================================
   LOCATION DETAILS CARD
========================================================= */

.location-details-section {
  background: var(--color-offwhite);
}

.location-details-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  background: var(--color-white);

  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0, 30, 65, 0.08);

  overflow: hidden;
}


/* LEFT */

.location-details-content {
  padding: 50px;
}

.location-card-label {
  display: block;

  margin-bottom: 14px;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;

  color: var(--color-gold-dark);
}

.location-details-content h2 {
  margin: 0 0 30px;

  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--dark-blue);
}


.location-address {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.location-address-icon {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--color-cream);
  color: var(--color-gold-dark);
}

.location-address strong {
  display: block;

  margin-bottom: 6px;

  font-family: var(--font-primary);
  font-size: 14px;
  letter-spacing: 0.5px;

  color: var(--dark-blue);
}

.location-address p {
  margin: 0;

  line-height: 1.7;
}


/* ACTIONS */

.location-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 32px;
}

.location-primary-btn,
.location-secondary-btn {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 22px;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.location-primary-btn {
  background: var(--dark-blue);
  color: var(--color-white);
}

.location-primary-btn:hover {
  transform: translateY(-2px);
  background: var(--color-gold-dark);
}

.location-secondary-btn {
  background: var(--color-cream);
  color: var(--dark-blue);
}

.location-secondary-btn:hover {
  transform: translateY(-2px);
  background: var(--color-beige);
}


/* RIGHT */

.location-features {
  padding: 35px;

  background: var(--dark-blue);

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 8px;
}

.location-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.location-feature-item:last-child {
  border-bottom: 0;
}

.location-feature-item>span {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(201, 164, 92, 0.13);
  color: var(--color-gold-light);
}

.location-feature-item strong {
  display: block;

  margin-bottom: 3px;

  font-size: 18px;
  color: var(--color-white);
}

.location-feature-item small {
  display: block;

  font-size: 16px;
  line-height: 1.5;

  color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   MAP SECTION
========================================================= */

.location-map-section {
  background: var(--color-white);
}


.location-map-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;

  min-height: 500px;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 30, 65, 0.08);
}


/* MAP */

.location-map {
  position: relative;
  min-height: 500px;

  background: #e8e5dc;
}

.location-map iframe {
  width: 100%;
  height: 100%;

  min-height: 500px;

  display: block;

  border: 0;

  filter: grayscale(0.2) contrast(0.95);
}

.custom-map-marker {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  border-radius: 30px;

  background: var(--dark-blue);
  color: var(--color-white);

  font-size: 11px;
  font-weight: 600;

  box-shadow: 0 10px 30px rgba(0, 30, 65, 0.25);

  pointer-events: none;
}

.custom-map-marker i {
  color: var(--color-gold-light);
}


/* NEARBY */

.location-nearby-card {
  padding: 42px 35px;

  background: var(--dark-blue);
}

.location-nearby-card h3 {
  margin: 0 0 30px;

  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;

  line-height: 1.15;

  color: var(--color-white);
}

.nearby-list {
  display: flex;
  flex-direction: column;
}

.nearby-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nearby-item>span {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: rgba(201, 164, 92, 0.12);

  color: var(--color-gold-light);

  font-size: 13px;
}

.nearby-item strong {
  display: block;

  margin-bottom: 3px;

  font-size: 18px;
  color: var(--color-white);
}

.nearby-item small {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.nearby-map-btn {
  min-height: 46px;

  margin-top: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 17px;

  border-radius: 9px;

  background: var(--color-gold-light);
  color: var(--dark-blue);

  font-size: 12px;
  font-weight: 700;

  transition: 0.3s ease;
}

.nearby-map-btn:hover {
  background: var(--color-white);
}


/* =========================================================
   PARKING
========================================================= */

.location-parking-section {
  background: var(--color-offwhite);
}

.parking-heading {
  margin-bottom: 35px;
}

.parking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.parking-card {
  position: relative;

  padding: 40px;

  border-radius: 18px;

  background: var(--color-white);

  box-shadow: 0 15px 45px rgba(0, 30, 65, 0.06);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.parking-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 22px 55px rgba(0, 30, 65, 0.1);
}

.parking-card-dark {
  background: var(--dark-blue);
}

.parking-card-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 13px;

  background: var(--color-cream);
  color: var(--color-gold-dark);

  font-size: 18px;
}

.parking-card-dark .parking-card-icon {
  background: rgba(201, 164, 92, 0.13);
  color: var(--color-gold-light);
}

.parking-card-number {
  position: absolute;

  top: 25px;
  right: 30px;

  font-family: var(--font-secondary);
  font-size: 42px;

  color: rgba(0, 30, 65, 0.05);
}

.parking-card-dark .parking-card-number {
  color: rgba(255, 255, 255, 0.06);
}

.parking-card h3 {
  margin: 0 0 13px;

  font-family: var(--font-secondary);
  font-size: 25px;
  font-weight: 500;

  color: var(--dark-blue);
}

.parking-card-dark h3 {
  color: var(--color-white);
}

.parking-card p {
  max-width: 520px;

  margin: 0 0 25px;

  line-height: 1.7;
}

.parking-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.parking-card>a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 12px;
  font-weight: 700;

  color: var(--color-gold-dark);

  transition: gap 0.3s ease;
}

.parking-card-dark>a {
  color: var(--color-gold-light);
}

.parking-card>a:hover {
  gap: 15px;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .location-details-card {
    grid-template-columns: 1fr;
  }

  .location-features {
    padding: 30px 40px;
  }

  .location-map-layout {
    grid-template-columns: 1fr;
  }

  .location-nearby-card {
    padding: 35px;
  }


}


@media (max-width: 767px) {

  .location-intro {
    padding-top: 55px !important;
    padding-bottom: 40px !important;
  }

  .location-title {
    margin-top: 15px;
  }

  .location-intro-text {
    font-size: 14px;
    line-height: 1.7;
  }


  /* Location Card */

  .location-details-content {
    padding: 30px 25px;
  }

  .location-details-content h2 {
    margin-bottom: 25px;
  }

  .location-features {
    padding: 20px 25px;
  }

  .location-feature-item {
    padding: 13px 0;
  }


  /* Buttons */

  .location-card-actions {
    flex-direction: column;
  }

  .location-primary-btn,
  .location-secondary-btn {
    width: 100%;
  }


  /* Map */

  .location-map {
    min-height: 380px;
  }

  .location-map iframe {
    min-height: 380px;
  }

  .custom-map-marker {
    font-size: 10px;
    white-space: nowrap;
  }


  /* Parking */

  .parking-grid {
    grid-template-columns: 1fr;
  }

  .parking-card {
    padding: 30px 25px;
  }


  /* Transport */

  .transport-route-line {
    left: 25px;
  }

  .transport-card {
    padding: 20px;

    gap: 15px;
  }

  .transport-icon {
    width: 50px;
    height: 50px;

    flex-basis: 50px;
  }

  .transport-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .transport-content h3 {
    font-size: 21px;
  }


  /* CTA */


  body {
    padding-bottom: 68px;
  }

}


@media (max-width: 576px) {


  .location-details-card,
  .location-map-layout,
  .parking-card,
  .transport-card,
  .location-final-cta-inner {
    border-radius: 14px;
  }

  .location-nearby-card {
    padding: 30px 25px;
  }

  .location-final-content h2 {
    font-size: 2rem;
  }

}



/* =====================================================
   PRIVACY POLICY
====================================================== */

.privacy-policy-section {
  padding-top: var(--space-80);
  padding-bottom: var(--space-110);
  background: var(--color-white);
}

.privacy-policy-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.privacy-policy-editor {
  width: 100%;
}

/* Last Updated */

.privacy-policy-updated {
  margin: 0 0 var(--space-30);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

/* Main Heading */

.privacy-policy-editor h2 {
  margin: 0 0 var(--space-30);
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--dark-blue);
}

/* Section Headings */

.privacy-policy-editor h3 {
  margin: var(--space-50) 0 var(--space-15);
  font-family: var(--font-secondary);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--dark-blue);
}

/* Paragraph */

.privacy-policy-editor p {
  max-width: 900px;
  margin: 0 0 var(--space-20);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--color-text);
}

/* Lists - important for WordPress editor */

.privacy-policy-editor ul,
.privacy-policy-editor ol {
  max-width: 900px;
  margin: 0 0 var(--space-25);
  padding-left: var(--space-25);
}

.privacy-policy-editor li {
  margin-bottom: var(--space-10);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.privacy-policy-editor li::marker {
  color: var(--color-gold-dark);
}

/* Links */

.privacy-policy-editor a {
  color: var(--color-gold-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.privacy-policy-editor a:hover {
  color: var(--color-primary);
}

/* Strong text */

.privacy-policy-editor strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* Horizontal Rule */

.privacy-policy-editor hr {
  margin: var(--space-50) 0;
  border: 0;
  border-top: 1px solid var(--color-beige);
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .privacy-policy-section {
    padding-top: var(--space-60);
    padding-bottom: var(--space-80);
  }

  .privacy-policy-editor h3 {
    margin-top: var(--space-40);
  }
}

@media (max-width: 767px) {
  .privacy-policy-section {
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
  }

  .privacy-policy-editor p,
  .privacy-policy-editor li {
    font-size: 14px;
    line-height: 1.75;
  }

  .privacy-policy-editor h2 {
    margin-bottom: var(--space-20);
  }

  .privacy-policy-editor h3 {
    margin-top: var(--space-30);
    margin-bottom: var(--space-15);
  }

  .privacy-policy-updated {
    margin-bottom: var(--space-20);
  }
}



/* =====================================================
   TERMS & CONDITIONS PAGE
====================================================== */

.terms-conditions-section {
  padding-top: var(--space-80);
  padding-bottom: var(--space-110);
  background: var(--color-white);
}

.terms-conditions-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* =====================================================
   EDITOR CONTENT
====================================================== */

.terms-conditions-editor {
  width: 100%;
}

/* Last Updated */

.terms-conditions-updated {
  margin: 0 0 var(--space-30);
  font-family: var(--font-primary);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

/* Main Heading */

.terms-conditions-editor h2 {
  margin: 0 0 var(--space-30);
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--dark-blue);
}

/* Section Headings */

.terms-conditions-editor h3 {
  margin: var(--space-50) 0 var(--space-15);
  font-family: var(--font-secondary);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--dark-blue);
}

/* Paragraph */

.terms-conditions-editor p {
  max-width: 900px;
  margin: 0 0 var(--space-20);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--color-text);
}

/* =====================================================
   WORDPRESS LIST SUPPORT
====================================================== */

.terms-conditions-editor ul,
.terms-conditions-editor ol {
  max-width: 900px;
  margin: 0 0 var(--space-25);
  padding-left: var(--space-25);
}

.terms-conditions-editor li {
  margin-bottom: var(--space-10);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.terms-conditions-editor li::marker {
  color: var(--color-gold-dark);
}

/* =====================================================
   LINKS
====================================================== */

.terms-conditions-editor a {
  color: var(--color-gold-dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.terms-conditions-editor a:hover {
  color: var(--color-primary);
}

/* =====================================================
   STRONG TEXT
====================================================== */

.terms-conditions-editor strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* =====================================================
   HORIZONTAL LINE
====================================================== */

.terms-conditions-editor hr {
  margin: var(--space-50) 0;
  border: 0;
  border-top: 1px solid var(--color-beige);
}


/* =====================================================
   TABLE SUPPORT
   Useful if the client adds pricing/policy tables
   through WordPress editor
====================================================== */

.terms-conditions-editor table {
  width: 100%;
  margin: var(--space-30) 0;
  border-collapse: collapse;
  font-family: var(--font-primary);
}

.terms-conditions-editor th,
.terms-conditions-editor td {
  padding: var(--space-15);
  border: 1px solid var(--color-beige);
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

.terms-conditions-editor th {
  font-weight: 600;
  color: var(--dark-blue);
  background: var(--color-cream);
}

.terms-conditions-editor td {
  color: var(--color-text);
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
  .terms-conditions-section {
    padding-top: var(--space-60);
    padding-bottom: var(--space-80);
  }

  .terms-conditions-editor h3 {
    margin-top: var(--space-40);
  }
}

@media (max-width: 767px) {
  .terms-conditions-section {
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
  }

  .terms-conditions-editor p,
  .terms-conditions-editor li {
    font-size: 14px;
    line-height: 1.75;
  }

  .terms-conditions-editor h2 {
    margin-bottom: var(--space-20);
  }

  .terms-conditions-editor h3 {
    margin-top: var(--space-30);
    margin-bottom: var(--space-15);
  }

  .terms-conditions-updated {
    margin-bottom: var(--space-20);
  }

  .terms-conditions-editor table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}



/* =========================================================
   PREMIUM GALLERY PAGE
========================================================= */

.gallery-p_section {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 10% 15%,
      rgba(229, 156, 0, 0.055),
      transparent 28%),
    radial-gradient(circle at 90% 75%,
      rgba(217, 184, 108, 0.07),
      transparent 30%),
    var(--color-offwhite);
}


/* =========================================================
   ROMANTIC HEART BACKGROUND
========================================================= */

.gallery-p_heart {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: var(--color-gold-light);
  opacity: 0.09;
}

.gallery-p_heart i {
  font-size: clamp(45px, 6vw, 100px);
}

.gallery-p_heart-one {
  top: 8%;
  left: 3%;
  transform: rotate(-18deg);
}

.gallery-p_heart-two {
  top: 35%;
  right: 4%;
  transform: rotate(18deg);
}

.gallery-p_heart-three {
  bottom: 22%;
  left: 7%;
  transform: rotate(15deg);
  opacity: 0.06;
}

.gallery-p_heart-four {
  bottom: 5%;
  right: 10%;
  transform: rotate(-12deg);
  opacity: 0.07;
}


/* =========================================================
   INTRO
========================================================= */

.gallery-p_intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}


.gallery-p_eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 18px;

  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  color: var(--color-gold-dark);
}


.gallery-p_eyebrow-line {
  width: 38px;
  height: 1px;
  background: var(--color-gold-light);
}


.gallery-p_title {
  margin: 0;

  font-family: var(--font-secondary);
  font-weight: 500;
  line-height: 1.08;

  color: var(--dark-blue);
}


.gallery-p_title span {
  display: block;
  color: var(--color-gold-dark);
  font-style: italic;
}


.gallery-p_description {
  max-width: 610px;
  margin: 22px auto 0;

  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.8;

  color: var(--color-text);
}


/* =========================================================
   FILTER
========================================================= */

.gallery-p_filter-wrap {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: center;

  margin-bottom: 45px;
}


.gallery-p_filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  padding: 7px;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(159, 109, 8, 0.14);

  border-radius: 100px;

  box-shadow:
    0 15px 40px rgba(24, 30, 35, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(14px);
}


.gallery-p_filter {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 22px;

  border: 0;
  border-radius: 100px;

  background: transparent;

  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;

  color: var(--color-text);

  transition:
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}


.gallery-p_filter:hover {
  color: var(--dark-blue);
  transform: translateY(-1px);
}


.gallery-p_filter.is-active {
  color: var(--color-white);

  background:
    linear-gradient(135deg,
      var(--color-gold-dark),
      var(--color-primary));

  box-shadow:
    0 8px 22px rgba(159, 109, 8, 0.22);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-p_grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  grid-auto-rows: 245px;

  gap: 18px;
}


.gallery-p_item {
  position: relative;

  display: block;

  min-width: 0;
  min-height: 0;

  overflow: hidden;

  border-radius: 16px;

  background: #e9e1d5;

  box-shadow:
    0 10px 30px rgba(18, 26, 32, 0.08);

  cursor: pointer;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    opacity 0.35s ease;
}


.gallery-p_item:hover {
  transform: translateY(-5px);

  box-shadow:
    0 22px 50px rgba(18, 26, 32, 0.15);
}


/* Different grid sizes */

.gallery-p_item-large {
  grid-column: span 2;
  grid-row: span 2;
}


.gallery-p_item-wide {
  grid-column: span 2;
}


.gallery-p_item-tall {
  grid-row: span 2;
}


/* =========================================================
   IMAGE
========================================================= */

.gallery-p_image-wrap {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;
}


.gallery-p_image-wrap img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}


.gallery-p_item:hover .gallery-p_image-wrap img {
  transform: scale(1.065);
  filter: saturate(0.92);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gallery-p_overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 24px;

  background:
    linear-gradient(to top,
      rgba(0, 20, 35, 0.82) 0%,
      rgba(0, 20, 35, 0.25) 42%,
      rgba(0, 20, 35, 0) 75%);

  opacity: 0;

  transition:
    opacity 0.45s ease;
}


.gallery-p_item:hover .gallery-p_overlay {
  opacity: 1;
}


.gallery-p_overlay-content {
  display: flex;
  flex-direction: column;
  gap: 5px;

  transform: translateY(12px);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.gallery-p_item:hover .gallery-p_overlay-content {
  transform: translateY(0);
}


.gallery-p_category {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--color-gold-light);
}


.gallery-p_item-title {
  font-family: var(--font-secondary);
  font-size: 20px;
  line-height: 1.2;

  color: var(--color-white);
}


.gallery-p_zoom {
  width: 45px;
  height: 45px;

  flex: 0 0 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;

  color: var(--color-white);

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(8px);

  transform: scale(0.8);

  transition:
    transform 0.45s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}


.gallery-p_item:hover .gallery-p_zoom {
  transform: scale(1);
}


.gallery-p_zoom:hover {
  border-color: var(--color-gold-light);

  background: var(--color-gold-dark);
}


/* =========================================================
   HIDDEN FILTERED ITEMS
========================================================= */

.gallery-p_item.is-filter-hidden {
  display: none;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.gallery-p_bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 45px;
}


.gallery-p_bottom-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  color: var(--color-gold-dark);

  border: 1px solid rgba(159, 109, 8, 0.25);
  border-radius: 50%;
}


.gallery-p_bottom p {
  margin: 0;

  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: italic;

  color: var(--color-text);
}


/* =========================================================
   MODAL
========================================================= */

.gallery-p_modal {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}


.gallery-p_modal.is-open {
  visibility: visible;
  opacity: 1;
}


.gallery-p_modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at center,
      rgba(23, 36, 45, 0.96),
      rgba(5, 12, 17, 0.99));

  backdrop-filter: blur(12px);
}


.gallery-p_modal-inner {
  position: relative;
  z-index: 2;

  width: min(1200px, 94vw);

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: scale(0.94) translateY(20px);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.gallery-p_modal.is-open .gallery-p_modal-inner {
  transform: scale(1) translateY(0);
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.gallery-p_modal-image-wrap {
  position: relative;

  width: min(1050px, 86vw);
  height: min(72vh, 760px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 14px;

  background: #0c151b;

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.45);
}


.gallery-p_modal-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  opacity: 1;

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}


.gallery-p_modal-image.is-changing {
  opacity: 0;
  transform: scale(0.985);
}


/* =========================================================
   MODAL LOADER
========================================================= */

.gallery-p_modal-loader {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;

  opacity: 0;

  transition: opacity 0.25s ease;
}


.gallery-p_modal-loader span {
  width: 35px;
  height: 35px;

  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--color-gold-light);

  border-radius: 50%;

  animation: gallery-p_spin 0.8s linear infinite;
}


@keyframes gallery-p_spin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   MODAL BUTTONS
========================================================= */

.gallery-p_modal-close,
.gallery-p_modal-prev,
.gallery-p_modal-next {
  position: absolute;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  color: var(--color-white);

  background: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(12px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}


.gallery-p_modal-close:hover,
.gallery-p_modal-prev:hover,
.gallery-p_modal-next:hover {
  color: var(--color-white);

  border-color: var(--color-gold-light);

  background: var(--color-gold-dark);

  transform: translateY(-2px);
}


.gallery-p_modal-close {
  top: -20px;
  right: -20px;
}


.gallery-p_modal-prev {
  top: 50%;
  left: -75px;

  transform: translateY(-50%);
}


.gallery-p_modal-next {
  top: 50%;
  right: -75px;

  transform: translateY(-50%);
}


.gallery-p_modal-prev:hover,
.gallery-p_modal-next:hover {
  transform: translateY(-50%) scale(1.04);
}


/* =========================================================
   MODAL INFO
========================================================= */

.gallery-p_modal-info {
  width: min(1050px, 86vw);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 20px;
}


.gallery-p_modal-info-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.gallery-p_modal-category {
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: var(--color-gold-light);
}


.gallery-p_modal-title {
  margin: 0;

  font-family: var(--font-secondary);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;

  color: var(--color-white);
}


.gallery-p_modal-counter {
  display: flex;
  align-items: center;
  gap: 7px;

  flex: 0 0 auto;

  font-family: var(--font-primary);
  font-size: 11px;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.6);
}


.gallery-p_modal-current {
  color: var(--color-gold-light);
}


.gallery-p_modal-divider {
  color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   BODY LOCK
========================================================= */

body.gallery-p_modal-open {
  overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .gallery-p_grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    grid-auto-rows: 220px;
  }


  .gallery-p_modal-prev {
    left: 15px;
  }


  .gallery-p_modal-next {
    right: 15px;
  }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 767px) {

  .gallery-p_section {
    padding: 75px 0 80px;
  }


  .gallery-p_intro {
    margin-bottom: 35px;
  }


  .gallery-p_description {
    font-size: 14px;
    line-height: 1.7;
  }


  .gallery-p_filter-wrap {
    margin-bottom: 30px;
    overflow-x: auto;
    justify-content: flex-start;

    padding-bottom: 5px;
  }


  .gallery-p_filters {
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;

    border-radius: 18px;
  }


  .gallery-p_filter {
    min-height: 40px;
    padding: 0 16px;
  }


  .gallery-p_grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-auto-rows: 190px;

    gap: 10px;
  }


  .gallery-p_item-large {
    grid-column: span 2;
    grid-row: span 2;
  }


  .gallery-p_item-wide {
    grid-column: span 2;
  }


  .gallery-p_item-tall {
    grid-row: span 2;
  }


  .gallery-p_overlay {
    padding: 15px;
    opacity: 1;
  }


  .gallery-p_overlay-content {
    transform: translateY(0);
  }


  .gallery-p_item-title {
    font-size: 16px;
  }


  .gallery-p_zoom {
    width: 36px;
    height: 36px;
    flex-basis: 36px;

    font-size: 11px;
  }


  .gallery-p_modal {
    padding: 15px;
  }


  .gallery-p_modal-image-wrap {
    width: 100%;
    height: 68vh;

    border-radius: 10px;
  }


  .gallery-p_modal-close {
    top: -15px;
    right: -5px;

    width: 44px;
    height: 44px;
  }


  .gallery-p_modal-prev,
  .gallery-p_modal-next {
    top: auto;
    bottom: 80px;

    width: 45px;
    height: 45px;
  }


  .gallery-p_modal-prev {
    left: 10px;
    transform: none;
  }


  .gallery-p_modal-next {
    right: 10px;
    transform: none;
  }


  .gallery-p_modal-prev:hover,
  .gallery-p_modal-next:hover {
    transform: scale(1.04);
  }


  .gallery-p_modal-info {
    width: 100%;
    margin-top: 15px;
  }


  .gallery-p_modal-title {
    font-size: 21px;
  }


  .gallery-p_modal-counter {
    font-size: 10px;
  }


  .gallery-p_bottom {
    margin-top: 30px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .gallery-p_grid {
    grid-auto-rows: 155px;
    gap: 8px;
  }


  .gallery-p_overlay {
    padding: 12px;
  }


  .gallery-p_category {
    font-size: 8px;
  }


  .gallery-p_item-title {
    font-size: 14px;
  }


  .gallery-p_zoom {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }


  .gallery-p_modal-image-wrap {
    height: 62vh;
  }


  .gallery-p_modal-info {
    align-items: flex-start;
  }


  .gallery-p_modal-counter {
    padding-top: 5px;
  }

}
