/*====================================
=            Font Variables          =
====================================*/
.font-primary {
  font-family: 'Instrument Sans', sans-serif !important;
}
.font-secondary {
  font-family: 'Cormorant Garamond', serif !important;
}
/* ==========================================
   Color Codes
========================================== */
.text-primary {
  color: #C48600 !important;
}
.text-secondary {
  color: #835200 !important;
}
.text-dark {
  color: #454545 !important;
}
.text-description {
  color: rgba(69, 69, 69, 0.6);
}
.bg-primary {
  background-color: #C48600;
}
.bg-secondary {
  background-color: #835200;
}
.border-primary {
  border-color: #C48600;
}
.border-secondary {
  border-color: #835200;
}
.bg-light-cream {
  background-color: #FDFAF5 !important;
}
/* ==========================================
   SPACING
========================================== */
.common-margin {
  margin-block: clamp(60px, 8vw, 120px);
}
.py-60 {
  padding-block: clamp(40px, 3.125vw, 60px);
}
.mt-60 {
  margin-top: clamp(40px, 3.125vw, 60px);
}
.mb-60 {
  margin-bottom: clamp(40px, 3.125vw, 60px);
}
.mb-40 {
  margin-bottom: 40px;
}
.my-40 {
  margin-block: 40px;
}
.mb-32 {
  margin-bottom: 32px;
}
.my-12 {
  margin-block: 12px;
}
.mb-12 {
  margin-bottom: 12px;
}
.m-60 {
  margin: clamp(40px, 3.125vw, 60px);
}
/*====================================
=          Global Typography         =
====================================*/
body, p, a, li, button, input, textarea, label {
  font-family: 'Instrument Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}
html, body {
  margin: 0;
  background: #F8F2E5;
}
p {
  font-size: 16px;
}
/* ==========================================
   Typography
========================================== */
.swiper-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(50deg, rgba(0, 0, 0, 0.4) 22.26%, rgba(0, 0, 0, 0) 54.82%), radial-gradient(87.8% 54.95% at 50% 37.42%, rgba(0, 0, 0, 0) 0%, rgba(19, 17, 15, 0.7) 100%);
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: #FDFAF5;
  margin: 0;
}
.hero-heading span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #CA8A10 0%, #ECCD83 35%, #F7E5B4 70%, #CA8A10 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.heading-primary {
  font-size: 36px;
  font-weight: 400;
  line-height: 120%;
  color: #835200;
  font-family: 'Cormorant Garamond', serif;
}
.heading-primary span {
  color: #C48600;
  font-style: italic;
  font-weight: 600;
}
.sub-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 500;
  line-height: 120%;
}
.primary-description, p {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  line-height: 140%;
  color: #454545;
}
p:last-child {
  margin-bottom: 0;
}
.primary-button {
  border: 0;
  transition: 0.35s;
  border-radius: 4px;
  background: var(--grad2, linear-gradient(142deg, #CA8A10 -47.55%, #ECCD8C 52.19%, #CA8A10 151.92%));
  color: #2B1D08;
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 8px 24px;
  text-decoration: none;
  display: inline-block;
}
.wed-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #B28A4A 50%, rgba(0, 0, 0, 0) 100%);
}
.wed-left-divider {
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, #B28A4A 0%, rgba(0, 0, 0, 0) 100%);
}
.primary-description p:last-child {
  margin-bottom: 0;
}
.secondary-heading {
  color: #2B1D08;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
/* ==========================================
  Header SH
========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: transform 0.45s ease, background-color 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
  transform: translateY(0);
  background: rgba(178, 138, 74, 0.01);
  backdrop-filter: blur(0px);
}
.site-header .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "menu logo cta";
  align-items: center;
  gap: 16px;
}
.site-header .header-inner .header-menu {
  grid-area: menu;
  justify-self: start;
}
.site-header .header-inner .header-menu .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.site-header .header-inner .header-menu .nav-links a {
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
  color: #FDFAF5;
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.site-header .header-inner .cta-wrap {
  grid-area: cta;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
}
.site-header .header-inner .cta-wrap .cta {
  align-items: center;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  background: linear-gradient(142deg, #CA8A10 -47.55%, #ECCD8C 52.19%, #CA8A10 151.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: flex;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.site-header .hero-logo {
  grid-area: logo;
  justify-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header .hero-logo::before, .site-header .hero-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 138px;
  height: 1px;
  transform: translateY(-50%);
}
.site-header .hero-logo::before {
  right: calc(100% + 30px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.site-header .hero-logo::after {
  left: calc(100% + 30px);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.site-header.scrolled {
  height: 74px;
  background: #FDFAF5;
  backdrop-filter: blur(0px);
}
.site-header.scrolled .header-inner .header-menu .nav-links a {
  color: #835200;
}
.site-header.scrolled .header-inner .cta-wrap .cta {
  background: linear-gradient(142deg, #835200 -47.55%, #835200 52.19%, #835200 151.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.site-header.scrolled .header-inner .cta-wrap .cta .header-cta-arrow svg path {
  stroke: #835200;
}
.site-header.hide {
  transform: translateY(-100%);
}
/* Mobile toggler */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle:focus, .nav-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .nav-toggle {
    display: flex;
  }
}
/* ==========================================
  Header EH
========================================== */
/* ==========================================
  Homepage SH
========================================== */
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.hero-section .heroSwiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .heroSwiper .swiper-slide {
  overflow: hidden;
}
.hero-section .heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-section .hero-content {
  color: #fff;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 140px 24px 80px;
  position: relative;
  z-index: 3;
}
.hero-section .hero-content p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #FFF;
  text-align: center;
  font-family: "Instrument Sans";
  font-weight: 400;
  line-height: 160%;
}
.hero-section .swiper-pagination {
  bottom: 35px !important;
  z-index: 5;
}
.hero-section .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.35;
  transition: 0.3s;
}
.hero-section .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 30px;
  background: #d7b26d;
  opacity: 1;
}
.destination-section {
  padding: 60px 0 200px 0;
  background: #FDFAF5;
}
.destination-section .destination-card {
  padding: 30px;
}
.destination-section .destination-card .destination-heading {
  color: #454545;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 767.98px) {
  .destination-grid > [class*="col"]:nth-child(even) {
    border-right: 0;
  }
  .destination-grid > [class*="col"]:nth-child(4) {
    border-right: 1px solid #e7dcc8;
  }
}
.venue-section {
  background: #FDFAF5;
  padding: 100px 0;
}
.venue-section .heading-primary {
  max-width: 430px;
  margin: auto;
}
.venue-section .venue-tabs .nav-link {
  min-width: 280px;
  padding: 12px 30px;
  transition: 0.35s;
  color: #2B1D08;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  border-radius: 4px;
  background: #F8F2E5;
}
.venue-section .venue-tabs .nav-link.active, .venue-section .venue-tabs .nav-link:hover {
  background: linear-gradient(142deg, #CA8A10 -47.55%, #ECCD8C 52.19%, #CA8A10 151.92%);
}
.venue-section .luxury-hotel .venue-card .venue-card-heading {
  font-family: "Cormorant Garamond";
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 160%;
  text-transform: capitalize;
}
.venue-section .venue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  transition: 0.35s;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #E3C789;
}
.venue-section .venue-card .venue-card-text {
  gap: 10px !important;
}
.venue-section .venue-card .venue-card-heading {
  color: #2B1D08;
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  text-transform: capitalize;
}
.venue-section .venue-card:hover, .venue-section .venue-card.active {
  background: linear-gradient(135deg, #f8e7b9, #f3d58d);
  border-color: #d4a94b;
}
.venue-section .venue-card:hover .card-arrow, .venue-section .venue-card.active .card-arrow {
  opacity: 1;
  width: 18px;
  transform: translateX(0);
}
.venue-section .venue-card .card-arrow {
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  gap: 4px;
  opacity: 0;
  width: 0;
  margin-left: 0;
  overflow: hidden;
  transform: translateX(-8px);
  transition: all 0.35s ease;
  color: #835200;
}
.luxury-hotel .venue-card:hover, .luxury-hotel .venue-card.active {
  background: linear-gradient(135deg, #f8e7b9, #f3d58d);
  border-color: #d4a94b;
}
.luxury-hotel .venue-card:hover .venue-card-text, .luxury-hotel .venue-card.active .venue-card-text {
  opacity: 1;
}
.luxury-hotel .venue-card .venue-card-text {
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  gap: 4px;
}
.advantage-section {
  /* Cross Icon */
  /* Check Icon */
}
.advantage-section .advantage-wrapper {
  max-width: 1180PX;
  margin: auto;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: #FFF;
}
.advantage-section .comparison-card {
  padding: 60px 80px;
  height: 100%;
}
.advantage-section .comparison-card.comparison-card-highlight {
  border-radius: 0 8px 8px 0;
  border: 1px solid #CA8A10;
  background: linear-gradient(138deg, rgba(202, 138, 16, 0.3) -108.47%, rgba(236, 205, 140, 0.3) 49.55%, rgba(202, 138, 16, 0.3) 207.57%);
}
.advantage-section .comparison-card.comparison-card-highlight .comparison-list li {
  color: #454545;
}
.advantage-section .comparison-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.advantage-section .comparison-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 20px;
  color: rgba(69, 69, 69, 0.6);
  font-size: 16px;
  line-height: 160%;
}
.advantage-section .comparison-list li:last-child {
  margin-bottom: 0;
}
.advantage-section .comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.advantage-section .cross-list li::before {
  background-image: url("/wp-content/uploads/2026/07/cross-list-image.svg");
}
.advantage-section .check-list li::before {
  background-image: url("/wp-content/uploads/2026/07/tick-list-image.svg");
}
@media (max-width: 991.98px) {
  .advantage-section .comparison-card {
    padding: 40px 28px;
  }
  .advantage-section .comparison-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .advantage-section .comparison-card-highlight {
    border-top: 1px solid rgba(196, 134, 0, 0.2);
  }
}
@media (max-width: 767.98px) {
  .advantage-section .comparison-card {
    padding: 32px 24px;
  }
  .advantage-section .comparison-card h3 {
    font-size: 24px;
  }
  .advantage-section .comparison-list li {
    font-size: 14PX;
    margin-bottom: 16px;
  }
}
.founder-video-section .video-wrapper .founder-video {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 2.3333333333;
}
.founder-video-section .video-wrapper .play-btn-icon {
  width: 70px;
  height: 70px;
  transition: transform 0.2s ease;
}
.founder-video-section .video-wrapper .play-btn:hover .play-btn-icon {
  transform: scale(1.08);
}
.celebration-timeline .timeline-row:not(:last-child) {
  margin-bottom: clamp(80px, 8vw, 140px);
}
.celebration-timeline .timeline-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(198, 134, 0, 0.18);
}
.celebration-timeline .timeline-content .day-title {
  position: relative;
  margin-bottom: 10px;
}
.celebration-timeline .timeline-content .day-title .day-heading {
  color: #C48600;
  font-family: "Cormorant Garamond";
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.16px;
  padding-bottom: 12px;
}
.celebration-timeline .timeline-content .day-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  height: 1px;
  opacity: 0.8;
  background: linear-gradient(90deg, #B28A4A 0%, rgba(0, 0, 0, 0) 100%);
}
.celebration-timeline .timeline-content .day-subtitle {
  color: #835200;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.52px;
  font-weight: 500;
}
/*============================
 Timeline
=============================*/
.timeline-list {
  position: relative;
}
.timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
  align-items: flex-start;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 50px;
  width: 1px;
  height: calc(100% - 60px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #B28A4A 50%, rgba(0, 0, 0, 0) 100%);
}
.timeline-item .sub-heading {
  color: #2B1D08;
  font-family: "Instrument Sans";
  font-size: clamp(18px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 140%;
}
.timeline-item .timeline-info p {
  color: #454545;
}
/*============================
 Consultation-section SH
=============================*/
.consultation-section .consultation-wrapper {
  background: #FDFAF5;
}
.consultation-section .consultation-wrapper .consultation-content {
  padding: 46px;
}
/* ==========================
   Fluent Form Custom Style
========================== */
.fluentform {
  --gold: #C48600;
  --text: #454545;
}
/* Input & Textarea */
.fluentform .ff-el-form-control, .fluentform input[type="text"], .fluentform input[type="email"], .fluentform input[type="tel"], .fluentform input[type="number"], .fluentform textarea {
  width: 100%;
  height: 46px;
  padding: 12px;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: 0.3s ease;
  border-bottom: 1px solid #C48600 !important;
  background: #FFF !important;
  color: rgba(96, 84, 77, 0.4);
  font-family: "Instrument Sans";
  font-size: 16px;
  line-height: 160%;
}
/* Textarea */
.fluentform textarea {
  min-height: 130px;
  padding: 16px 18px;
  resize: none;
}
/* Focus */
.fluentform .ff-el-form-control:focus, .fluentform input:focus, .fluentform textarea:focus {
  border-bottom-color: var(--gold) !important;
  box-shadow: none !important;
  outline: none;
}
/* Placeholder */
.fluentform ::placeholder {
  color: #B5B5B5;
  opacity: 1;
}
/* Submit Button */
.fluentform .ff-btn-submit {
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border-radius: 4px !important;
  background: linear-gradient(142deg, #CA8A10 -47.55%, #ECCD8C 52.19%, #CA8A10 151.92%);
  display: flex !important;
  color: #2B1D08 !important;
  font-family: "Instrument Sans";
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 160% !important;
  min-width: 130px;
  justify-content: center;
}
/* Remove text arrow */
.fluentform .ff-btn-submit::after {
  content: '';
  width: 16px;
  height: 18px;
  display: inline-block;
  background: url("/wp-content/uploads/2026/07/bnt-arrow.webp") no-repeat center;
  background-size: contain;
}
/*============================
 Consultation-section EH
=============================*/
.footer-section {
  color: #482D00;
  background: linear-gradient(142deg, rgba(202, 138, 16, 0.5) -47.55%, rgba(236, 205, 140, 0.5) 52.19%, rgba(202, 138, 16, 0.5) 151.92%);
  padding-block: 60px;
}
.footer-section .footer-logo {
  max-width: 200px;
  height: auto;
}
.footer-section .footer-description {
  max-width: 500px;
  color: #482D00;
}
.footer-section .footer-title {
  position: relative;
  color: #482D00;
  font-family: "Instrument Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.footer-section .footer-title:after {
  content: '';
  display: block;
  width: 96px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
.footer-section .footer-links li, .footer-section .footer-contact li {
  color: #482D00 !important;
  font-family: "Instrument Sans";
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 12px;
}
.footer-section .footer-links a, .footer-section .footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.footer-section .footer-contact li p {
  color: #482D00 !important;
}
.footer-section .footer-social .social-icon {
  width: clamp(30px, 3vw, 40px);
  height: clamp(30px, 3vw, 40px);
  color: inherit;
  text-decoration: none;
}
.footer-section .footer-copy {
  color: #482D00;
  font-family: "Instrument Sans";
  font-weight: 400;
  line-height: 160%;
}
.footer-section a {
  color: inherit;
  text-decoration: none;
}
.footer-divider .footer-divider-img {
  height: 1px;
}
.common-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}
.common-hero .hero-image {
  position: absolute;
  inset: 0;
}
.common-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.common-hero .hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 70px;
}
.common-hero .hero-content {
  color: #fff;
}
.common-hero .hero-content .primary-description, .common-hero .hero-content .primary-description p {
  max-width: 500px;
  line-height: 160%;
}
.common-hero .hero-divider {
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  width: 210px;
  height: 1px;
  margin-block: 12px;
}
@media (max-width: 991px) {
  .common-hero {
    min-height: 600px;
  }
  .common-hero .hero-container {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .common-hero {
    min-height: 520px;
    border-radius: 0;
  }
  .common-hero .hero-container {
    padding-bottom: 32px;
  }
  .common-hero .hero-content {
    max-width: 100%;
  }
}
.featured-venues .venue-card {
  border-radius: 4px;
  box-shadow: 7px 4px 20px 0 rgba(236, 205, 140, 0.4);
  overflow: hidden;
}
.featured-venues .venue-card .venue-image img {
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.featured-venues .venue-card .venue-content .secondary-heading {
  color: #835200 !important;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
.featured-venues .venue-card .venue-content .primary-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.featured-venues .venue-card .venue-content .venue-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 160%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-family: 'Cormorant Garamond', serif;
}
.property-highlights .highlight-item {
  padding: clamp(20px, 2vw, 30px);
  border-right: 1px solid rgba(196, 134, 0, 0.2);
  background: #FDFAF5;
}
.moments-section {
  background: #FDFAF5;
}
.moments-section .moments-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.moments-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.moments-list ul li {
  position: relative;
  padding-left: 28px;
  color: #454545;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.moments-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #C48600;
  flex-shrink: 0;
}
.luxury-destination-section .luxury-destination-grid, .luxury-destination-section .luxury-destination-grid .border-end, .luxury-destination-section .luxury-destination-grid .border-bottom {
  border-color: rgba(196, 134, 0, 0.2) !important;
}
@media (max-width: 991.98px) {
  .luxury-destination-section .luxury-destination-grid .border-end {
    border-right: 0 !important;
  }
}
.about-hero-section .hero-divider {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 50%, rgba(255, 255, 255, 0) 100%);
  margin-inline: auto;
}
.about-why-section .moments-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.mission-vision-section .mission-card {
  border-radius: 8px;
  border: 1px solid #CA8A10;
  background: linear-gradient(138deg, rgba(202, 138, 16, 0.3) -108.47%, rgba(236, 205, 140, 0.3) 49.55%, rgba(202, 138, 16, 0.3) 207.57%);
  padding: clamp(24px, 3vw, 40px);
}
.mission-vision-section .mission-card .mission-vision-heading {
  gap: 12px;
}
.mission-vision-section .mission-card .mission-vision-heading .card-title {
  color: #835200;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 500;
  line-height: 120%;
}
.about-counter-section .highlight-icon {
  font-family: "Cormorant Garamond";
  font-size: clamp(42px, 4.5vw, 64px);
  font-style: italic;
  font-weight: 600;
  line-height: 120%;
  background: linear-gradient(135deg, #CA8A10 0%, #ECCD8C 50%, #CA8A10 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.featured-venues-section .featuredVenueSwiper {
  overflow: visible;
}
.featured-venues-section .featuredVenueSwiper .swiper-wrapper {
  height: auto;
}
.common-hero p {
  color: white;
}
.about-celebration-section .celebration-year {
  color: #C48600;
  font-family: "Cormorant Garamond";
  font-size: clamp(28px, 3.6vw, 52px);
  font-style: italic;
  font-weight: 600;
  line-height: 80%;
}
.celebration-section .celebration-image img {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(198, 134, 0, 0.18);
}
.moments-section .moments-image img {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(198, 134, 0, 0.18);
}
.gallery-hero-section .hero-content .primary-description, .gallery-hero-section .hero-content .primary-description p {
  max-width: 800px;
}
.gallery-section .venue-tabs {
  gap: 0;
  flex-wrap: wrap;
}
.gallery-section .venue-tabs .nav-item {
  margin: 0;
}
.gallery-section .venue-tabs .nav-link {
  color: #2B1D08;
  font-size: 16px;
  line-height: 140%;
  background: #F8F2E5;
  border-radius: 0;
  padding: 8px 24px;
  transition: 0.3s;
}
.gallery-section .venue-tabs .nav-link:focus {
  box-shadow: none;
}
.gallery-section .venue-tabs .nav-link.active {
  color: #2B1D08;
  font-weight: 600;
  background: linear-gradient(142deg, #CA8A10 -47.55%, #ECCD8C 52.19%, #CA8A10 151.92%);
  border-radius: 4px;
}
.gallery-section .masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}
.gallery-section .masonry-gallery .gallery-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 20px;
}
.gallery-section .masonry-gallery .gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.map-section .contact-map iframe {
  width: 100%;
  height: 400px;
}
.form-section .contact-detail-form {
  padding: clamp(24px, 2.8vw, 40px);
}
.form-section .contact-detail-form .contact-content .contact-info li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 16px;
  color: #482D00;
}
.form-section .contact-detail-form .contact-content .contact-info li a {
  color: #482D00;
  text-decoration: none;
}
.site-header .nav-toggle {
  filter: brightness(0) invert(1);
}
.site-header.hide .nav-toggle, .site-header.scrolled .nav-toggle {
  filter: none;
}
.policy-section {
  padding-bottom: 100px;
}
.policy-section h2 {
  color: #835200;
  font-family: "Instrument Sans";
  font-size: 20px;
  font-weight: 600;
  line-height: 136.5%;
  letter-spacing: -0.25px;
  margin-top: 40px;
}
.policy-section h3 {
  color: #835200;
  font-family: "Instrument Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 185%;
}
.policy-hero-section {
  padding-top: 60px;
}
.site-header.default-template .header-inner .header-menu .nav-links a {
  color: #835200;
}
.policy-section a {
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1700px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: 7% !important;
    padding-right: 7% !important;
  }
}
@media (max-width: 1499px) {
  /* Input & Textarea */
  .card-arrow svg {
    width: 13px;
  }
  .site-header .header-inner .header-menu .nav-links a {
    font-size: 14px;
  }
  .site-header .header-inner .cta-wrap .cta {
    font-size: 14px;
  }
  .secondary-heading {
    font-size: 18px;
  }
  .venue-section .venue-card img {
    height: 70px;
  }
  .venue-section .venue-card .card-arrow {
    transform: translateX(0px);
  }
  .primary-button, .fluentform .ff-btn-submit {
    font-size: 14px !important;
  }
  .fluentform .ff-el-form-control, .fluentform input[type="text"], .fluentform input[type="email"], .fluentform input[type="tel"], .fluentform input[type="number"], .fluentform textarea {
    font-size: 14px;
  }
  .venue-section .venue-card .venue-card-heading {
    font-size: 14px;
  }
  .advantage-section .comparison-card {
    padding: 60px;
  }
  .consultation-section .consultation-wrapper .consultation-content {
    padding: clamp(24px, 2.5vw, 36px);
  }
  .venue-section .venue-tabs .nav-link {
    font-size: 14px;
    min-width: auto;
  }
  .heading-primary {
    font-size: 28px;
  }
  p {
    font-size: 14px;
  }
  .hero-heading {
    font-size: clamp(32px, 3.6vw, 52px);
  }
  .site-header .hero-logo::before, .site-header .hero-logo::after {
    width: 0px;
  }
  .common-margin {
    margin-block: clamp(60px, 5vw, 80px);
  }
  .destination-section {
    padding: clamp(80px, 8vw, 100px) 0;
  }
  .destination-section .destination-card {
    padding: 16px;
  }
  .destination-section .destination-card .destination-heading {
    font-size: 14px;
  }
  .celebration-timeline .timeline-row:not(:last-child) {
    margin-bottom: clamp(80px, 8vw, 140px);
  }
  .celebration-timeline .timeline-content .day-title .day-heading {
    font-size: 28px;
  }
  .celebration-timeline .timeline-content .day-subtitle {
    font-size: 20px;
  }
  .timeline-item .sub-heading {
    font-size: 20px;
  }
  .policy-links a {
    font-size: 14px;
  }
  .advantage-section .comparison-list li::before {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  .advantage-section .comparison-list li {
    color: #454545;
    padding-left: 28px;
  }
  .venue-section .venue-card {
    gap: 16px;
    padding: 16px;
  }
  .moments-list ul li {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .mission-vision-section .mission-card {
    max-width: 590px;
  }
}
@media (max-width: 1399.98px) {
  .venue-section {
    padding: clamp(60px, 5vw, 80px) 0;
  }
  .gallery-section .venue-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
    scrollbar-width: none;
  }
  .gallery-section .venue-tabs::-webkit-scrollbar {
    display: none;
  }
  .gallery-section .venue-tabs .nav-item {
    flex: 0 0 auto;
  }
  .gallery-section .venue-tabs .nav-link {
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 18px;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1040px;
  }
  .timeline-content .timeline-icon img {
    width: 24px;
    height: 24px;
  }
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: transform 0.45s ease, background-color 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
    transform: translateY(0);
    background: rgba(178, 138, 74, 0.01);
    backdrop-filter: blur(0px);
  }
  .site-header .header-inner .header-menu .nav-links {
    gap: 24px;
  }
  .site-header .header-inner .header-menu .nav-links a {
    font-size: 14px;
  }
  .site-header .header-inner .cta-wrap .cta {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  .site-header .hero-logo::before, .site-header .hero-logo::after {
    content: none;
  }
}
@media (max-width: 991.98px) {
  /* Offcanvas mobile menu */
  .secondary-heading {
    font-size: 18px;
  }
  .gallery-section .masonry-gallery {
    column-count: 2;
    column-gap: 16px;
  }
  .gallery-section .masonry-gallery .gallery-item {
    margin-bottom: 16px;
  }
  .advantage-section .comparison-card.comparison-card-highlight {
    border-radius: 0 0 8px 8px;
  }
  .site-header .header-inner .header-menu .nav-links {
    display: none;
  }
  .site-header .header-inner .cta-wrap {
    display: none;
  }
  .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo . menu";
  }
  .site-header .hero-logo {
    grid-area: logo;
    justify-self: start;
  }
  .cta-wrap {
    grid-area: menu;
    justify-self: end;
    display: flex;
    align-items: center;
  }
  .cta-wrap .btn {
    display: none;
  }
  .mobile-menu a {
    color: #f2efe9;
    text-decoration: none;
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.05rem;
  }
  .mobile-menu .mobile-cta {
    color: transparent;
    background: linear-gradient(142deg, #ca8a10 -47.55%, #eccd8c 52.19%, #ca8a10 151.92%) text;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .cta span.cta-label {
    display: none;
  }
  .advantage-section .comparison-card {
    padding: 50px;
  }
  .venue-section .venue-card .card-arrow {
    opacity: 1 !important;
    width: auto;
  }
  .luxury-hotel .venue-card .venue-card-text {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .property-highlights .highlight-item {
    border-bottom: 1px solid rgba(196, 134, 0, 0.2);
    border-right: none;
  }
}
@media (min-width: 576px) {
  .destination-section .destination-grid {
    border-color: rgba(196, 134, 0, 0.2) !important;
  }
  .destination-section .destination-grid > [class*="col"] {
    border-right: 1px solid rgba(196, 134, 0, 0.2);
    border-bottom: 1px solid rgba(196, 134, 0, 0.2);
  }
  .destination-section .destination-grid > [class*="col"]:nth-child(4), .destination-section .destination-grid > [class*="col"]:nth-child(8) {
    border-right: 0;
  }
}
@media (max-width: 575.98px) {
  /* Mobile Slider */
  .advantage-section .comparison-card {
    padding: 30px;
  }
  .my-40 {
    margin-block: 20px;
  }
  .mobile-slider {
    position: relative;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start !important;
    flex-direction: row !important;
  }
  .sliderCol {
    flex: 0 0 calc(100% - 60px);
    scroll-snap-align: start;
    padding-right: 16px;
    margin-right: 20px;
  }
  .destination-section .destination-grid {
    border: none !important;
  }
  .destination-section .destination-grid > [class*="col"] {
    border: 1px solid rgba(196, 134, 0, 0.2);
  }
  .footer-section .footer-logo {
    max-width: 180px;
    height: auto;
  }
  .celebration-timeline .timeline-content .day-title::after {
    width: 100%;
  }
  .hero-section {
    height: 80dvh;
  }
  .founder-video-section .video-wrapper .play-btn-icon {
    width: 40px;
    height: 40px;
  }
  .timeline-item {
    padding-bottom: 20px;
  }
  .gallery-section .masonry-gallery {
    column-count: 1;
    column-gap: 0;
  }
  .gallery-section .masonry-gallery .gallery-item {
    margin-bottom: 16px;
  }
  .footer-section {
    padding-block: 40px;
  }
  .mb-40 {
    margin-bottom: 30px;
  }
  .venue-section .venue-card {
    gap: 10px;
    padding: 12px;
  }
}
