:root {
  --black: #0c0a08;
  --panel: #16110c;
  --gold: #c99855;
  --gold-light: #e6c17e;
  --cream: #f9efd8;
  --muted: #cabba4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
.gallery-indicators {
  bottom: -56px;
  z-index: 4;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.gallery-indicators::before {
  display: none;
}
.gallery-indicators [data-bs-target] {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 5px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: #ffffff;
  opacity: 0.95;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.gallery-indicators .active {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 152, 85, 0.1);
  transform: scale(1.15);
}
.gallery-frame::after {
  display: none !important;
}
.site-nav {
  min-height: 76px;
  background: var(--black);
  border-bottom: 0;
  backdrop-filter: blur(10px);
  padding: 0;
}
.site-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 0.6rem 0.8rem !important;
  color: #d8c7aa !important;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 20px;
}
.nav-contact-link {
  display: inline-flex !important;
  align-items: center;
  overflow: hidden;
  gap: 0.55rem;
  margin-left: 0.45rem;
  padding: 0.62rem 1.05rem !important;
  border: 1px solid rgba(218, 177, 105, 0.75);
  background: linear-gradient(
    135deg,
    rgba(207, 158, 84, 0.2),
    rgba(104, 65, 27, 0.12)
  );
  color: #f3d79f !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 235, 190, 0.05),
    0 5px 18px rgba(0, 0, 0, 0.25);
}
.nav-contact-link:hover {
  border-color: #efcc8c;
  background: linear-gradient(135deg, #c9974f, #8d5b27);
  color: #120d08 !important;
}
.nav-contact-link::after {
  display: none;
}
.contact-ring-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  transform-origin: 50% 65%;
  animation: luxuryRing 2.8s ease-in-out infinite;
}
.contact-ring-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
}
.contact-ring-icon .ring-wave {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}
@keyframes luxuryRing {
  0%,
  72%,
  100% {
    transform: rotate(0);
  }
  76% {
    transform: rotate(-13deg);
  }
  80% {
    transform: rotate(11deg);
  }
  84% {
    transform: rotate(-8deg);
  }
  88% {
    transform: rotate(5deg);
  }
  92% {
    transform: rotate(0);
  }
}
.nav-link:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0.3rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: 0.2s;
}
.nav-link:hover:after,
.nav-link.active:after {
  width: 64%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light) !important;
}
.venue-dropdown .dropdown-toggle {
  padding-right: 1.45rem !important;
}
.venue-dropdown .dropdown-toggle::after {
  display: none;
}
.venue-dropdown .dropdown-toggle::before {
  position: absolute;
  top: 45%;
  right: 0.45rem;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1px solid #d8b26f;
  border-bottom: 1px solid #d8b26f;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}
.venue-dropdown .dropdown-toggle[aria-expanded="true"]::before {
  top: 53%;
  transform: rotate(225deg);
}
@media (min-width: 992px) {
  .venue-dropdown:hover .dropdown-toggle::before {
    top: 53%;
    transform: rotate(225deg);
  }
}
.venue-dropdown .dropdown-menu {
  min-width: 245px;
  margin-top: 1.04rem;
  padding: 0.55rem;
  border: 0;
  border-radius: 0 0 10px 10px;
  background: #0c0a08;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
}
.venue-dropdown .dropdown-menu.show {
  animation: venueFadeDown 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@media (min-width: 992px) {
  .venue-dropdown::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 245px;
    height: 1.05rem;
    content: "";
  }
  .venue-dropdown:hover > .dropdown-menu {
    display: block;
    animation: venueFadeDown 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
}
.venue-dropdown .dropdown-item {
  position: relative;
  padding: 0.98rem 1.05rem;
  color: #dbc49e;
  font: 600 0.76rem Montserrat, Arial, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}
.venue-dropdown .dropdown-item:hover,
.venue-dropdown .dropdown-item:focus {
  color: #f2ce8b;
  background: transparent;
  transform: translateX(5px);
}
@keyframes venueFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel .carousel-item {
  transition: opacity 1.5s ease-in-out;
}
.hero-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.01);
}
.hero-slide-one {
  background-image: url("assets/images/1 (1).png");
}
.hero-slide-two {
  background-image: url("assets/images/2.png");
}
.hero-slide-three {
  background-image: url("assets/images/3.png");
}
.hero-carousel .carousel-item.active .hero-slide {
  animation: heroZoom 6.5s ease-out both;
}
.hero-indicators {
  top: 50%;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: 106px;
  margin: 0;
  transform: translateY(-50%);
  z-index: 3;
}
.hero-indicators [data-bs-target] {
  position: relative;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  column-gap: 7px;
  width: 106px;
  height: 22px;
  margin: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 242, 213, 0.58);
  font: 600 0.72rem Montserrat, Arial, sans-serif;
  letter-spacing: 0.1em;
  opacity: 1;
  transition: color 0.25s ease;
}
.hero-slide-number {
  display: block;
  width: 23px;
  text-align: left;
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero-slide-line {
  position: relative;
  width: 76px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 242, 213, 0.43);
}
.hero-slide-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #efc774;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-indicators [data-bs-target].active {
  color: #f3d095;
}
.hero-indicators [data-bs-target].active .hero-slide-number {
  color: #f5d49a;
  transform: scale(1.14);
}
.hero-indicators [data-bs-target].active .hero-slide-line::after {
  animation: heroLineProgress 6s linear forwards;
}
.hero-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(235, 194, 116, 0.82);
  border-radius: 50%;
  background: rgba(23, 13, 6, 0.45);
  color: #f4d295;
  font: 400 3rem/1 "Cormorant Garamond", Georgia, serif;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}
.hero-control::before {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px solid rgba(238, 199, 124, 0.35);
  border-radius: 50%;
}
.hero-control span {
  position: relative;
  top: -2px;
}
.hero-control:hover {
  border-color: #f5d49a;
  background: rgba(157, 100, 37, 0.72);
  color: #fff1d5;
  transform: translateY(-50%) scale(1.07);
}
.hero-control-prev {
  left: clamp(1rem, 3vw, 3rem);
}
.hero-control-next {
  right: clamp(1rem, 3vw, 3rem);
}
@keyframes heroLineProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes heroZoom {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.13);
  }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.9),
      rgba(5, 4, 3, 0.54) 47%,
      rgba(5, 4, 3, 0.14)
    ),
    linear-gradient(0deg, rgba(6, 5, 3, 0.68), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
}
.hero-copy .kicker {
  animation: heroKickerEnter 0.75s ease-out 0.2s both;
}
.hero-copy h1 {
  animation: heroTitleEnter 1.15s cubic-bezier(0.16, 0.8, 0.25, 1) 0.38s both;
}
.hero-copy > p:not(.kicker) {
  animation: heroCopyEnter 0.9s ease-out 0.78s both;
}
.hero-copy > .d-flex {
  animation: heroCopyEnter 0.9s ease-out 1.02s both;
}
@keyframes heroKickerEnter {
  from {
    opacity: 0;
    letter-spacing: 0.28em;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    letter-spacing: 0.14em;
    transform: translateY(0);
  }
}
@keyframes heroTitleEnter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
@keyframes heroCopyEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kicker {
  margin: 0 0 0.5rem;
  color: #ba8a5a;
  font: 600 1.5rem "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
}
.hero h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.hero h1 {
  max-width: 1000px;
  margin: 0;
  color: #fff8e8;
  font-size: clamp(3.25rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px #000;
}
.hero-copy > p:not(.kicker) {
  max-width: 600px;
  margin: 1.3rem 0 1.8rem;
  color: #e1d2b8;
}
.btn {
  border-radius: 0;
  padding: 0.8rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-gold {
  border: 1px solid var(--gold-light);
  background: linear-gradient(135deg, #e6be78, #a97538);
  color: #160e07;
}
.btn-gold:hover {
  background: #efd08e;
  color: #130c06;
}
.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline-gold:hover {
  background: var(--gold-light);
  color: #120c07;
}
.scroll-down {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 50%;
  width: 25px;
  height: 42px;
  border: 1px solid #b99b70;
  border-radius: 20px;
  transform: translateX(-50%);
}
.scroll-down span {
  display: block;
  width: 3px;
  height: 7px;
  margin: 9px auto;
  background: var(--gold-light);
  border-radius: 4px;
  animation: scrollPulse 1.65s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(15px);
  }
}
.section {
  padding: 105px 0;
}
.about {
  background: linear-gradient(180deg, #120e0b, #0b0907);
}
.image-frame {
  position: relative;
  padding: 2rem;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.38);
  background: #120e0b;
}
.image-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("assets/frame/showcase.png") center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
.image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  object-fit: cover;
}
.about h2,
.heading h2,
.packages h2 {
  margin: 0.1rem 0 1.1rem;
  color: #d3a574;
  font-size: clamp(2.35rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
}
.lead-copy {
  color: #b5855a;
 
}
.gold-link {
  color: var(--gold-light);
  font: 500 1.15rem "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}
.gold-link span {
  margin-left: 0.4rem;
}
.heading {
  margin-bottom: 3rem;
}
.heading p {
  margin: -0.7rem 0 0;
  color: var(--gold-light);
  font: 1.3rem "Cormorant Garamond", serif;
}
.heading .section-subtitle {
  margin: -0.35rem 0 0;
  color: #e2bd91;
  font: 600 clamp(1.35rem, 2vw, 1.6rem) "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.events {
  background: #0d0a08;
}
.event-card {
  height: 100%;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(201, 152, 85, 0.32);
  background: rgba(28, 20, 13, 0.5);
  transition: 0.25s;
  border-radius: 5px;
  text-align: center;
}
/*.event-card:hover {*/
/*  transform: translateY(-6px);*/
/*  border-color: var(--gold-light);*/
/*  background: #20170f;*/
/*}*/
.event-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(201, 152, 85, 0.28));
  transition: transform 0.25s ease;
}
/*.event-card:hover .event-icon {*/
/*  transform: scale(1.08);*/
/*}*/
.event-card h3 {
  margin: 0;
  color: #f3e8d2;
  font-size: 1.09rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.venue {
  background: linear-gradient(180deg, #0a0806, #16100b);
}
.venue-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(201, 152, 85, 0.27);
  background: #17110c;
  transition: 0.25s;
}
.venue-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
}
.luxury-reveal {
  opacity: 0;
  filter: blur(3px);
  transition: opacity 0.9s ease var(--reveal-delay, 0ms),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    filter 0.9s ease var(--reveal-delay, 0ms);
}
.classic-heading-reveal {
  transform: translate3d(0, 38px, 0);
}
.classic-heading-reveal h2 {
  letter-spacing: 0.035em;
  transition: letter-spacing 1.15s cubic-bezier(0.2, 0.7, 0.2, 1)
    var(--reveal-delay, 0ms);
}
.classic-heading-reveal.is-visible h2 {
  letter-spacing: normal;
}
.classic-heading-reveal::after {
  display: block;
  width: 0;
  height: 1px;
  margin: 1.1rem auto 0;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );
  transition: width 1.1s ease calc(var(--reveal-delay, 0ms)+180ms);
}
.classic-heading-reveal.is-visible::after {
  width: 92px;
}
.classic-content-reveal {
  transform: translate3d(0, 34px, 0);
}
.luxury-reveal.reveal-left {
  transform: translate3d(-42px, 32px, 0);
}
.luxury-reveal.reveal-right {
  transform: translate3d(42px, 32px, 0);
}
.luxury-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  position: relative;
}
/*.luxury-reveal.is-visible:hover {*/
/*  transform: translateY(-6px);*/
/*}*/
#grand-hall,
#imperial-hall {
  scroll-margin-top: 110px;
}
.venue-card > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: 0.5s;
}
.venue-card:hover > img {
  transform: scale(1.04);
}
.venue-info {
  padding: 1.8rem;
}
.capacity {
  color: #17100a;
  background: var(--gold-light);
  padding: 0.42rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.venue-info h3 {
  margin: 0.9rem 0 0.15rem;
  color: var(--gold-light);
  font-size: 1.8rem;
  text-transform: uppercase;
}
.venue-info p {
  color: var(--muted);
  font-size: 0.87rem;
}
.packages {
  background: linear-gradient(rgba(9, 7, 5, 0.74), rgba(9, 7, 5, 0.84)),
    url("assets/images/84.png") center/cover fixed;
}
.packages p:not(.kicker) {
  color: #ebddc4;
}
.gallery {
  background: #0c0907;
}
.gallery-frame {
  padding: 18px;
  border: 5px ridge #b57d36;
  background: linear-gradient(
    135deg,
    #764516,
    #e1aa59 25%,
    #6d4012 52%,
    #d29442
  );
  box-shadow: 0 25px 50px #000;
}
.gallery-frame img {
  height: min(55vw, 570px);
  object-fit: cover;
  border: 7px solid #281607;
}
.gallery-frame {
  position: relative;
}
.footer {
  padding: 70px 0 0;
  background: #080706;
  color: #bcae98;
}
.footer h4 {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.footer .col-md-3 a {
  display: block;
  margin: 0.35rem 0;
}
.footer a:hover {
  color: var(--gold-light);
}
.footer p {
  font-size: 0.86rem;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}
.enquire {
  position: fixed;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  padding: 0.8rem 1.1rem;
  border-radius: 30px;
  background: var(--gold-light);
  color: #160f08;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 8px 25px #000;
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 790px;
    background-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
        0deg,
        rgba(5, 4, 3, 0.88),
        rgba(5, 4, 3, 0.23) 72%
      ),
      linear-gradient(90deg, rgba(5, 4, 3, 0.58), transparent);
  }
  .section {
    padding: 80px 0;
  }
  .navbar-collapse {
    padding: 1rem 0;
  }
  .site-nav .navbar-nav,
  .site-nav .nav-item {
    width: 100%;
  }
  .site-nav .nav-link {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-nav .nav-contact-link {
    justify-content: center;
    margin: 0.75rem 0 0;
    border: 1px solid rgba(218, 177, 105, 0.75);
  }
  .site-nav .nav-link::after {
    display: none;
  }
  .venue-dropdown .dropdown-menu {
    margin-top: 0;
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-ring-icon {
    animation: none;
  }
  .luxury-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
  .hero-copy .kicker,
  .hero-copy h1,
  .hero-copy > p:not(.kicker),
  .hero-copy > .d-flex {
    animation: none;
  }
  .cta-button::before,
  .gold-link::before,
  .btn::before,
  .enquire::before,
  .nav-contact-link::before {
    animation: none;
  }
  .testimonial-carousel .carousel-item {
    transition: none;
  }
}
.back-to-top {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(235, 193, 116, 0.85);
  border-radius: 50%;
  background: linear-gradient(145deg, #2b190c, #120c08);
  color: #edc77f;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42),
    inset 0 0 0 4px rgba(222, 174, 96, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    background 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(145deg, #c28c46, #81501f);
  color: #fff4dd;
  transform: translateY(-4px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.luxury-inner-page {
  background: #100d09;
  color: #d9cbb4;
}
.inner-banner {
  --banner-image: url("assets/images/6.png");
  position: relative;
  display: grid;
  min-height: clamp(360px, 48vw, 570px);
  place-items: end center;
  overflow: hidden;
  background: var(--banner-image) center/cover no-repeat;
}
.inner-banner::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
      180deg,
      rgba(8, 6, 4, 0.32),
      rgba(8, 6, 4, 0.4) 45%,
      rgba(10, 7, 4, 0.94)
    ),
    linear-gradient(90deg, rgba(8, 5, 3, 0.45), transparent 60%);
}
.inner-banner::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(225, 183, 108, 0.28);
  pointer-events: none;
}
.inner-banner-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.inner-eyebrow {
  margin: 0 0 0.65rem;
  color: #ddb36e;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.36em;
}
.inner-banner h1 {
  margin: 0;
  color: #fff0d2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.25rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 30px #000;
}
.inner-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  color: #bca98d;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inner-breadcrumb a {
  color: #ecc984;
}
.inner-section,
.hall-showcase,
.package-grid,
.hall-moments {
  padding: clamp(5rem, 8vw, 8rem) 0;
}
.inner-section h2,
.hall-moments h2,
.inner-cta h2 {
  color: #eed3a0;
  font: 500 clamp(2.4rem, 4.5vw, 4.2rem) / 1 "Cormorant Garamond", serif;
}
.inner-lead {
  max-width: 760px;
  color: #e6d5bb;
  font: 400 clamp(1.15rem, 1.65vw, 1.4rem) / 1.65 "Cormorant Garamond", serif;
}
.editorial-image {
  position: relative;
  padding: 16px;
  background: #17110b;
}
.editorial-image::before {
  position: absolute;
  inset: -10px 28px 28px -10px;
  content: "";
  pointer-events: none;
}
.editorial-image img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Grand/Imperial hall frame styling removed per user request — reverted to previous appearance */
.hall-editorial {
  /* reverted: no frame overlay; use existing .editorial-image defaults */
  border: none;
}

.about-story-image {
    position: relative;
    width: 100%;
    height: 720px;
    padding: 2.4rem;
    background: #120e0b;
    overflow: hidden;
    object-fit: cover;
}
.about-story-image::before {
    position: absolute;
    inset: 0;
    content: "";
    background: url(assets/frame/frame-5.png) center / contain no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 2;
}
.about-story-image img {
  min-height: 100%;
}

/* Apply the same framed design used for About -> OUR STORY to Imperial Hall and Grand Hall intro images */
.imperial-hall-page .hall-editorial,
.grand-hall-page .hall-editorial {
    position: sticky;
    top: 110px;
    width: 100%;
    min-height: 720px;
    padding: 2.4rem;
    background: #120e0b;
    overflow: hidden;
}
.imperial-hall-page .hall-editorial::before,
.grand-hall-page .hall-editorial::before {
    position: absolute;
    inset: 0;
    content: "";
    background: url(assets/frame/frame-5.png) center / contain no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 2;
}
/* .imperial-hall-page .hall-editorial img,
.grand-hall-page .hall-editorial img {
  position: absolute;
  inset: 2.4rem;
  z-index: 1;
  min-width: calc(100% - 4.8rem);
  min-height: calc(100% - 4.8rem);
  width: auto;
  height: auto;
  object-fit: cover;
} */
/* .grand-hall-page .grand-hall-story .hall-editorial img,
.imperial-hall-page .imperial-hall-story .hall-editorial img {
  height: auto;
  width: auto;
} */
@media (max-width: 991.98px) {
  .imperial-hall-page .hall-editorial,
  .grand-hall-page .hall-editorial {
    position: relative;
    top: auto;
    padding: 1.2rem;
    min-height: 420px;
  }
  .imperial-hall-page .hall-editorial img,
  .grand-hall-page .hall-editorial img {
    inset:0;
    min-width: calc(100% - 2.4rem);
    min-height: calc(100% - 2.4rem);
  }
}
.image-seal, .area-plaque {
    position: absolute;
    right: 0;
    bottom: 34px;
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    border: 1px solid #e0b66c;
    background: #b98542;
    color: #160f08;
    font: 600 2.2rem "Cormorant Garamond", serif;
    box-shadow: 0 15px 35px #0008;
    z-index: 555;
}
.signature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: #caa263;
  font-family: "Cormorant Garamond", serif;
}
.signature-line span {
  width: 60px;
  height: 1px;
  background: #caa263;
}
.inner-values {
  padding: 0 0 7rem;
}
.inner-values article {
  height: 100%;
  padding: 2.2rem;
  border: 1px solid rgba(213, 165, 90, 0.22);
  background: linear-gradient(145deg, #1a130d, #0f0c09);
}
.inner-values b,
.plan-no {
  color: #b48243;
  font: 500 2.6rem "Cormorant Garamond", serif;
}
.inner-values h3,
.package-card h3 {
  color: #edca8b;
  font: 500 2rem "Cormorant Garamond", serif;
}
.inner-cta {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 1rem;
  overflow: hidden;
  background: linear-gradient(90deg, #090704ed, #181008d9, #090704ed),
    url("assets/images/84.png") center/cover;
}
.inner-cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.package-intro {
  padding-bottom: 3rem;
}
.package-grid {
  padding-top: 1rem;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 650px;
  padding: 3rem 2.2rem;
  border: 1px solid rgba(210, 161, 85, 0.32);
  background: linear-gradient(160deg, #23170d, #120e0a);
  box-shadow: 0 24px 65px #0005;
}
.package-card.featured {
  border-color: #e0b660;
  transform: translateY(-16px);
  box-shadow: 0 25px 75px #0008, 0 0 50px #b77b2720;
}
.popular {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.55rem 1.2rem;
  background: #c49346;
  color: #160f08;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transform: translate(-50%, -50%);
}
.plan-price {
  margin: 1rem 0 2rem;
  color: #f5dfb4;
  font: 600 3.2rem "Cormorant Garamond", serif;
}
.plan-price small {
  font-size: 1rem;
}
.plan-price span {
  font: 400 0.75rem Montserrat, sans-serif;
  color: #a9977e;
}
.package-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
}
.package-card li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #d5b67b24;
  font-size: 0.8rem;
}
.package-card li::before {
  margin-right: 0.7rem;
  color: #d9aa58;
  content: "✓";
}
.package-card .cta-button {
  margin-top: auto;
}
.hall-intro {
  padding-bottom: 3rem;
}
.hall-showcase {
  padding-top: 2rem;
}
.hall-editorial img {
  height: 620px;
}
.area-plaque {
  align-content: center;
  text-align: center;
}
.area-plaque strong {
  font: 600 2rem "Cormorant Garamond", serif;
}
.area-plaque span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hall-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2rem 0;
  background: #c89a542b;
}
.hall-stats div {
  padding: 1.3rem 0.8rem;
  background: #120e0a;
  text-align: center;
}
.hall-stats strong,
.hall-stats span {
  display: block;
}
.hall-stats strong {
  color: #e4bd79;
  font: 600 1.25rem "Cormorant Garamond", serif;
}
.hall-stats span {
  color: #988a76;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.feature-list span {
  padding: 0.8rem 0;
  border-bottom: 1px solid #d0b98525;
  font-size: 0.76rem;
}
.feature-list span::before {
  margin-right: 0.6rem;
  color: #daa850;
  content: "◆";
  font-size: 0.5rem;
}
.hall-moments {
  background: #15100b;
}
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.moment-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}
.moment-grid img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}
@media (max-width: 991.98px) {
  .package-card.featured {
    transform: none;
  }
  .moment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .moment-grid img:first-child {
    grid-column: 1/-1;
  }
  .editorial-image {
    margin-right: 14px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .inner-banner::after {
    inset: 10px;
  }
}
@media (max-width: 575.98px) {
  .inner-banner {
    min-height: 400px;
  }
  .inner-banner h1 {
    font-size: clamp(2.3rem, 10.5vw, 2.9rem);
    line-height: 0.98;
  }
  .inner-banner-copy {
    padding-bottom: 3.6rem;
  }
  .hall-stats {
    grid-template-columns: 1fr;
  }
  .moment-grid {
    grid-template-columns: 1fr;
  }
  .moment-grid img,
  .moment-grid img:first-child {
    grid-column: auto;
    height: 290px;
  }
  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .image-seal,
  .area-plaque {
    right: -8px;
    width: 90px;
    height: 90px;
  }
  .hall-editorial img {
    height: 460px;
  }
}
.about-story-copy {
  margin: 1.35rem 0 0;
  color: #d9cbb4;
  font-size: 0.95rem;
  line-height: 1.9;
}
.about-difference {
  margin-top: 2.2rem;
  padding: 1.6rem;
  border: 1px solid rgba(211, 165, 116, 0.3);
  background: linear-gradient(
    145deg,
    rgba(35, 23, 13, 0.78),
    rgba(18, 14, 10, 0.92)
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.about-difference-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.about-difference-title span {
  width: 34px;
  height: 1px;
  background: #d3a574;
}
.about-difference-title h3 {
  margin: 0;
  color: #d3a574;
  font: 600 1.45rem/1.1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-feature-grid li {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 2.2rem;
  border: 1px solid rgba(211, 165, 116, 0.14);
  background: rgba(255, 255, 255, 0.018);
  color: #eadcc5;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.025em;
}
.about-feature-grid li::before {
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  color: #d3a574;
  content: "◆";
  font-size: 0.55rem;
}
@media (max-width: 767.98px) {
  .about-difference {
    padding: 1.25rem;
  }
  .about-feature-grid {
    grid-template-columns: 1fr;
  }
  .about-story-copy {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .about-story-image {
    height: auto;
    aspect-ratio: 696 / 1114;
    padding: 1.25rem;
  }
  .about-story-image img {
  min-height: 100%;
  height:100%;
  }
}
.grand-hall-page > section:not(.inner-hero) {
  background: #100d09;
}
.grand-hall-events {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}
.grand-hall-story {
  padding-top: 1rem;
}
.grand-hall-page > .hall-moments {
  padding-top: 2rem;
}
.grand-hall-story .hall-editorial {
  position: sticky;
  top: 110px;
}
.grand-hall-story .hall-editorial img {
  height: clamp(610px, 62vw, 780px);
}
.hall-description {
  display: grid;
  gap: 1rem;
}
.hall-description p {
  margin: 0;
  color: #d9cbb4;
  font-size: 0.9rem;
  line-height: 1.9;
}
.hall-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 1.8rem 0;
  background: rgba(211, 165, 116, 0.28);
  border: 1px solid rgba(211, 165, 116, 0.28);
}
.hall-facts div {
  padding: 1.2rem;
  background: linear-gradient(145deg, #1d140d, #110d09);
}
.hall-facts span,
.hall-facts strong {
  display: block;
}
.hall-facts span {
  margin-bottom: 0.35rem;
  color: #9e8c75;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hall-facts strong {
  color: #d3a574;
  font: 600 1.25rem/1.2 "Cormorant Garamond", Georgia, serif;
}
.hall-perfect {
  padding: 1.4rem;
  border: 1px solid rgba(211, 165, 116, 0.25);
  background: linear-gradient(
    145deg,
    rgba(35, 23, 13, 0.72),
    rgba(18, 14, 10, 0.9)
  );
}
.hall-perfect-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.hall-perfect-title > span {
  width: 32px;
  height: 1px;
  background: #d3a574;
}
.hall-perfect-title h3 {
  margin: 0;
  color: #d3a574;
  font: 600 1.4rem/1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.grand-perfect-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
}
.grand-perfect-list span {
  position: relative;
  padding: 0.65rem 0.65rem 0.65rem 1.7rem;
  border-bottom: 1px solid rgba(211, 165, 116, 0.14);
  color: #e0d2bc;
  font-size: calc(0.72rem+10px);
  line-height: 1.4;
}
.grand-perfect-list span::before {
  position: absolute;
  left: 0.35rem;
  color: #d3a574;
  content: "◆";
  font-size: 0.48rem;
  top:17px;
}
@media (max-width: 991.98px) {
  .grand-hall-story .hall-editorial {
    position: relative;
    top: auto;
  }
  .grand-hall-story .hall-editorial img {
    height: 580px;
  }
}
@media (max-width: 575.98px) {
  .grand-hall-story .hall-editorial img {
    height: 440px;
  }
  .hall-facts,
  .grand-perfect-list {
    grid-template-columns: 1fr;
  }
  .hall-perfect {
    padding: 1.2rem;
  }
  .hall-description p {
    font-size: 0.86rem;
    line-height: 1.8;
  }
}
.gallery-hint {
  color: #a9977e;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.grand-hall-page .moment-grid,
.imperial-hall-page .moment-grid {
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.moment-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(211, 165, 116, 0.34);
  background: #0b0806;
  cursor: zoom-in;
}
.moment-item-featured {
  grid-row: 1/3;
}
.grand-hall-page .moment-item img,
.imperial-hall-page .moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}
.moment-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(5, 3, 2, 0.76));
  opacity: 0.65;
  transition: opacity 0.3s ease;
}
.moment-item > span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  color: #f0d092;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s ease;
}
.moment-item:hover img,
.moment-item:focus-visible img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.045);
}
.moment-item:hover::after,
.moment-item:focus-visible::after {
  opacity: 1;
}
.moment-item:hover > span,
.moment-item:focus-visible > span {
  opacity: 1;
  transform: none;
}
.moment-item:focus-visible {
  outline: 2px solid #d3a574;
  outline-offset: 3px;
}
.grand-gallery-lightbox {
  position: fixed;
  z-index: 1090;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 3, 2, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.grand-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.grand-lightbox-frame {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  padding: 10px;
  border: 1px solid rgba(211, 165, 116, 0.52);
  background: #110c08;
  box-shadow: 0 30px 90px #000;
}
.grand-lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 20px);
  object-fit: contain;
}
.grand-lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(211, 165, 116, 0.55);
  background: #15100b;
  color: #f0d092;
  font: 300 2rem/1 Arial, sans-serif;
  transition: 0.25s;
}
.grand-lightbox-close:hover {
  border-color: #d3a574;
  background: #d3a574;
  color: #100d09;
}
body.gallery-lightbox-open {
  overflow: hidden;
}
.grand-moment-carousel .carousel-item {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.grand-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-top: 1.8rem;
}
.grand-gallery-controls button {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(211, 165, 116, 0.5);
  background: transparent;
  color: #d3a574;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.25s;
}
.grand-gallery-controls button:hover {
  border-color: #f0d092;
  color: #f0d092;
}
.grand-gallery-controls button span {
  font-size: 1rem;
}
.grand-gallery-count {
  color: #82735f;
  font: 500 0.72rem "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
}
.grand-lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 64px;
  border: 1px solid rgba(211, 165, 116, 0.5);
  background: rgba(17, 12, 8, 0.86);
  color: #f0d092;
  font: 300 2.7rem/1 "Cormorant Garamond", serif;
  transform: translateY(-50%);
  transition: 0.25s;
}
.grand-lightbox-prev {
  left: clamp(0.75rem, 3vw, 2.5rem);
}
.grand-lightbox-next {
  right: clamp(0.75rem, 3vw, 2.5rem);
}
.grand-lightbox-nav:hover,
.grand-lightbox-nav:focus-visible {
  border-color: #d3a574;
  background: #d3a574;
  color: #100d09;
}
.grand-lightbox-frame img {
  transition: opacity 0.18s ease;
}
.grand-lightbox-frame img.is-changing {
  opacity: 0;
}
@media (max-width: 575.98px) {
  .grand-lightbox-nav {
    top: auto;
    bottom: 1.25rem;
    width: 48px;
    height: 48px;
    transform: none;
  }
  .grand-lightbox-prev {
    left: calc(50% - 58px);
  }
  .grand-lightbox-next {
    right: calc(50% - 58px);
  }
}
.imperial-hall-page > section:not(.inner-hero) {
  background: #100d09;
}
.imperial-hall-page > .hall-moments {
  padding-top: clamp(5rem, 8vw, 8rem);
}
.imperial-detail-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}
.imperial-detail-panel {
  position: relative;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  background: linear-gradient(
    145deg,
    rgba(31, 21, 13, 0.82),
    rgba(15, 12, 9, 0.94)
  );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}
.imperial-detail-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 2.4rem;
}
.imperial-detail-heading h2 {
  margin: 0;
}
.imperial-detail-copy {
  position: relative;
}
.imperial-detail-copy p {
  color: #d9cbb4;
  font-size: 0.9rem;
  line-height: 1.9;
}
.imperial-detail-copy p:last-of-type {
  margin-bottom: 0;
}
.imperial-detail-copy blockquote {
  margin: 2rem 0 0;
  padding: 1rem 0 1rem 1.3rem;
  border-left: 2px solid #d3a574;
  color: #d3a574;
  font: italic 500 1.15rem/1.5 "Cormorant Garamond", Georgia, serif;
}
.imperial-highlights {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(211, 165, 116, 0.22);
  background: rgba(10, 8, 6, 0.5);
}
.imperial-highlights h3 {
  margin: 0 0 1rem;
  color: #d3a574;
  font: 600 1.4rem "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.imperial-highlights ul {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.imperial-highlights li {
  position: relative;
  padding: 0.7rem 0.5rem 0.7rem 1.8rem;
  border-bottom: 1px solid rgba(211, 165, 116, 0.12);
  color: #e2d5c0;
  font-size: 0.75rem;
  line-height: 1.45;
}
.imperial-highlights li::before {
  position: absolute;
  left: 0.3rem;
  color: #d3a574;
  content: "✓";
}
.culinary-detail {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.culinary-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.culinary-gallery {
  display: grid;
  gap: 0.75rem;
}
.culinary-gallery-hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 165, 116, 0.28);
}
.culinary-gallery-hero img,
.culinary-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.culinary-gallery-hero img {
  min-height: clamp(220px, 32vw, 300px);
}
.culinary-gallery-hero figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 4, 0.88));
  color: #d3a574;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.culinary-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.culinary-gallery-grid img {
  min-height: clamp(120px, 18vw, 160px);
  border: 1px solid rgba(211, 165, 116, 0.22);
}
.culinary-content .kicker {
  margin-bottom: 0.55rem;
}
.culinary-content h2 {
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  line-height: 1.15;
}
.culinary-lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  color: #d9cbb4;
  font-size: 0.88rem;
  line-height: 1.75;
}
.culinary-lead strong {
  color: #e8dcc8;
  font-weight: 600;
}
.culinary-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.culinary-highlights li {
  position: relative;
  padding: 0.65rem 0.65rem 0.65rem 1.55rem;
  border: 1px solid rgba(211, 165, 116, 0.18);
  background: rgba(10, 8, 6, 0.45);
  color: #e2d5c0;
  font-size: 0.72rem;
  line-height: 1.35;
}
.culinary-highlights li::before {
  position: absolute;
  left: 0.55rem;
  color: #d3a574;
  content: "✓";
}
.culinary-content blockquote {
  margin: 0;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 2px solid #d3a574;
  color: #d3a574;
  font: italic 500 1.05rem/1.45 "Cormorant Garamond", Georgia, serif;
}
@media (max-width: 991.98px) {
  .culinary-gallery {
    max-width: 520px;
    margin: 0 auto 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .culinary-highlights {
    grid-template-columns: 1fr;
  }
  .culinary-lead {
    font-size: 0.84rem;
    line-height: 1.7;
  }
}
.amenities-detail {
  padding-top: 0;
}
.amenities-intro {
  max-width: 900px;
  margin-bottom: 2rem;
}
.amenities-highlights {
  padding: clamp(1.3rem, 3vw, 2rem);
}
.amenities-highlights ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}
.imperial-hall-story .hall-editorial img {
  height: clamp(560px, 58vw, 658px);
}
@media (max-width: 991.98px) {
  .amenities-highlights ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .imperial-detail-panel {
    padding: 1.35rem;
  }
  .amenities-highlights ul {
    grid-template-columns: 1fr;
  }
  .imperial-detail-copy p {
    font-size: 0.86rem;
    line-height: 1.8;
  }
  .imperial-hall-story .hall-editorial img {
    height: 440px;
  }
}
.packages-page > section:not(.inner-hero) {
  background: #100d09;
}
.packages-page .package-intro {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.package-intro-copy {
  max-width: 790px;
  margin: 1.5rem auto 0;
  color: #e0c9aa;
  font-size: 0.95rem;
  line-height: 1.8;
}
.luxury-package-grid {
  padding: 0 0 clamp(5rem, 8vw, 8rem);
}
.packages-page .package-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 2.7rem 2.2rem 2.2rem;
  overflow: visible;
  border: 1px solid #d7ad3b;
  border-radius: 12px;
  background: radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.9),
      transparent 26%
    ),
    linear-gradient(125deg, #fff5cf, #f2d996 48%, #fff0bd);
  box-shadow: inset 0 0 70px rgba(165, 112, 24, 0.13),
    0 24px 60px rgba(0, 0, 0, 0.38);
  color: #282016;
  text-align: center;
}
.packages-page .package-card::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(145, 94, 17, 0.14);
  border-radius: 8px;
  pointer-events: none;
}
.packages-page .package-card.featured {
  border: 2px solid #d8aa26;
  transform: translateY(-16px);
  box-shadow: inset 0 0 75px rgba(165, 112, 24, 0.14),
    0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(211, 165, 54, 0.12);
}
.packages-page .popular {
  z-index: 2;
  top: 0;
  padding: 0.58rem 1.3rem;
  border-radius: 999px;
  background: #d6aa2d;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}
.package-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffad42, #ef8625);
  box-shadow: 0 12px 28px rgba(171, 86, 15, 0.25);
}
.package-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.packages-page .package-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #df7725;
  font: 600 1.75rem/1 "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
}
.packages-page .plan-price {
  position: relative;
  z-index: 1;
  margin: 1.6rem 0 2rem;
  color: #17120d;
  font: 700 clamp(2.35rem, 3vw, 3rem) / 1 "Cormorant Garamond", Georgia, serif;
}
.packages-page .plan-price small {
  font-size: 0.62em;
}
.packages-page .plan-price span {
  color: #6d6256;
  font: 400 0.72rem Montserrat, sans-serif;
}
.packages-page .package-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.packages-page .package-card li {
  position: relative;
  padding: 0.78rem 0.6rem 0.78rem 2rem;
  border-bottom: 1px solid rgba(105, 77, 33, 0.15);
  color: #5d5c5a;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-align: left;
  text-transform: uppercase;
}
.packages-page .package-card li::before {
  position: absolute;
  left: 0.5rem;
  color: #c99b1f;
  content: "✓";
  font-size: 0.9rem;
  font-weight: 700;
}
.package-details-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 1rem;
  border: 1px solid #4a260f;
  border-radius: 7px;
  background: #3c1c0b;
  color: #e8c174;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s;
}
.package-details-button:hover {
  border-color: #d8a938;
  background: #d8a938;
  color: #261306;
}
.packages-page .inner-cta {
  background: linear-gradient(
      90deg,
      rgba(9, 7, 4, 0.96),
      rgba(23, 15, 8, 0.9),
      rgba(9, 7, 4, 0.96)
    ),
    url("assets/images/45.png") center/cover;
}
@media (max-width: 991.98px) {
  .packages-page .package-card,
  .packages-page .package-card.featured {
    min-height: 660px;
    transform: none;
  }
  .luxury-package-grid .row {
    gap: 1.5rem 0;
  }
}
@media (max-width: 575.98px) {
  .package-intro-copy {
    font-size: 0.87rem;
    line-height: 1.75;
  }
  .packages-page .package-card {
    min-height: auto;
    padding: 2.3rem 1.35rem 1.4rem;
  }
  .packages-page .plan-price {
    font-size: 2.35rem;
  }
  .package-icon {
    width: 66px;
    height: 66px;
  }
  .package-icon svg {
    width: 35px;
    height: 35px;
  }
}
.luxury-package-grid .row > .col-lg-4 {
  display: flex;
}
.packages-page .package-card {
  width: 100%;
  height: 100%;
  min-height: auto;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
}
.packages-page .package-card.featured {
  min-height: auto;
  transform: none;
  background: radial-gradient(
      circle at 50% 8%,
      rgba(255, 255, 255, 0.95),
      transparent 28%
    ),
    linear-gradient(140deg, #fff0b8, #e8c36d 50%, #f8dfa0);
  box-shadow: inset 0 0 85px rgba(135, 83, 13, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.52), 0 0 36px rgba(218, 171, 46, 0.16);
}
.packages-page .package-card:hover {
  z-index: 3;
  border-color: #e4902d;
  transform: translateY(-8px);
  box-shadow: inset 0 0 80px rgba(153, 95, 18, 0.16),
    0 34px 85px rgba(0, 0, 0, 0.54), 0 0 28px rgba(222, 137, 36, 0.18);
}
.packages-page .package-card.featured:hover {
  transform: translateY(-8px);
}
.packages-page .package-icon {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease, background 0.35s ease;
}
.packages-page .package-card:hover .package-icon {
  transform: translateY(-5px) rotate(-4deg) scale(1.08);
  box-shadow: 0 18px 34px rgba(151, 70, 10, 0.36);
}
.packages-page .package-card:hover .package-icon svg {
  transform: scale(1.06);
}
.packages-page .package-icon svg {
  transition: transform 0.35s ease;
}
.package-tier-silver .package-icon {
  background: linear-gradient(145deg, #d9a45a, #b96d2b);
}
.package-tier-gold .package-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #ffb13f, #e77816);
  box-shadow: 0 14px 30px rgba(177, 83, 8, 0.32);
}
.package-tier-platinum .package-icon {
  background: linear-gradient(145deg, #c9904d, #9b5d28);
}
.packages-page .package-details-button {
  border: 1px solid #5b3015;
  background: transparent;
  color: #4a260f;
}
.packages-page .package-details-button:hover {
  border-color: #4a260f;
  background: #3c1c0b;
  color: #f0ca7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(65, 29, 8, 0.2);
}
.packages-page .featured .package-details-button {
  border-color: #3c1c0b;
  background: #3c1c0b;
  color: #e8c174;
}
.packages-page .featured .package-details-button:hover {
  border-color: #241006;
  background: #241006;
  color: #f0ca7e;
}
@media (max-width: 991.98px) {
  .packages-page .package-card,
  .packages-page .package-card.featured {
    min-height: 680px;
  }
  .packages-page .package-card:hover,
  .packages-page .package-card.featured:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 575.98px) {
  .packages-page .package-card,
  .packages-page .package-card.featured {
    min-height: auto;
  }
  .package-tier-gold .package-icon {
    width: 72px;
    height: 72px;
  }
}
.events-page > section:not(.inner-hero) {
  background: #100d09;
}
.events-intro {
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}
.events-intro-copy {
  max-width: 820px;
  margin: 1.4rem auto 0;
  color: #d8cab5;
  font-size: 0.94rem;
  line-height: 1.9;
}
.event-types-section {
  padding: 0 0 clamp(5rem, 8vw, 8rem);
}
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.event-type-card {
  position: relative;
  min-height: 330px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(211, 165, 116, 0.25);
  background: linear-gradient(145deg, #1b130d, #100c09);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.event-type-card:hover {
  border-color: #d3a574;
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
}
.event-type-card > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(211, 165, 116, 0.38);
  font: 600 0.72rem "Cormorant Garamond", serif;
}
.event-type-card > div {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 1.4rem;
  border: 1px solid rgba(211, 165, 116, 0.38);
  border-radius: 50%;
  background: rgba(211, 165, 116, 0.07);
  transition: 0.35s;
}
.event-type-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: sepia(1) saturate(0.65) brightness(1.25);
}
.event-type-card:hover > div {
  background: #d3a574;
  transform: rotate(-5deg) scale(1.06);
}
.event-type-card:hover img {
  filter: brightness(0.22);
}
.event-type-card h3 {
  margin: 0 0 0.8rem;
  color: #d3a574;
  font: 600 1.55rem "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
}
.event-type-card p {
  margin: 0;
  color: #a99b87;
  font-size: 0.76rem;
  line-height: 1.75;
}
.event-experience-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}
.event-experience-image {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(211, 165, 116, 0.45);
}
.event-experience-image::before {
  position: absolute;
  inset: -10px 30px 30px -10px;
  content: "";
  border: 1px solid rgba(211, 165, 116, 0.17);
}
.event-experience-image img {
  position: relative;
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.event-experience-image > span {
  position: absolute;
  right: -12px;
  bottom: 30px;
  padding: 1rem;
  background: #d3a574;
  color: #130d08;
  font: 700 0.6rem/1.45 Montserrat, sans-serif;
  letter-spacing: 0.12em;
  text-align: center;
}
.event-experience-copy {
  margin: 1.3rem 0 1.8rem;
  color: #cbbca7;
  font-size: 0.86rem;
  line-height: 1.85;
}
.event-benefits {
  display: grid;
  gap: 0.7rem;
}
.event-benefits > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(211, 165, 116, 0.17);
  background: rgba(255, 255, 255, 0.015);
}
.event-benefits b {
  color: #d3a574;
  font: 600 1.4rem "Cormorant Garamond", serif;
}
.event-benefits strong,
.event-benefits small {
  display: block;
}
.event-benefits strong {
  color: #e8d7bd;
  font: 600 1.05rem "Cormorant Garamond", serif;
}
.event-benefits small {
  margin-top: 0.2rem;
  color: #948673;
  font-size: 0.66rem;
}
.event-journey-section,
.event-venues-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}
.event-section-heading {
  max-width: 760px;
  margin: 0 auto 2.8rem;
}
.event-section-heading h2 {
  margin-bottom: 0;
}
.event-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(211, 165, 116, 0.22);
}
.event-journey-grid article {
  padding: 2rem 1.5rem;
  background: #15100c;
}
.event-journey-grid b {
  color: rgba(211, 165, 116, 0.45);
  font: 600 2.4rem "Cormorant Garamond", serif;
}
.event-journey-grid h3 {
  margin: 0.7rem 0;
  color: #d3a574;
  font: 600 1.35rem "Cormorant Garamond", serif;
  text-transform: uppercase;
}
.event-journey-grid p {
  margin: 0;
  color: #9f917d;
  font-size: 0.90rem;
  line-height: 1.7;
}
.event-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.event-venue-grid article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(211, 165, 116, 0.28);
}
.event-venue-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.event-venue-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(8, 5, 3, 0.94) 88%);
}
.event-venue-grid article:hover img {
  transform: scale(1.045);
}
.event-venue-grid article > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.2rem;
}
.event-venue-grid span {
  color: #d3a574;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}
.event-venue-grid h3 {
  margin: 0.5rem 0;
  color: #f3dfbe;
  font: 600 2rem "Cormorant Garamond", serif;
  text-transform: uppercase;
}
.event-venue-grid p {
  max-width: 470px;
  color: #bbaa91;
  font-size: 0.75rem;
  line-height: 1.7;
}
.event-venue-grid a {
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #d3a574;
  color: #d3a574;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .event-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-experience-image img {
    height: 540px;
  }
}
@media (max-width: 575.98px) {
  .events-intro-copy {
    font-size: 0.87rem;
    line-height: 1.8;
  }
  .event-types-grid,
  .event-journey-grid,
  .event-venue-grid {
    grid-template-columns: 1fr;
  }
  .event-type-card {
    min-height: auto;
    padding: 1.8rem 1.3rem;
  }
  .event-experience-image img {
    height: 430px;
  }
  .event-venue-grid article {
    min-height: 450px;
  }
  .event-venue-grid article > div {
    padding: 1.5rem;
  }
  .event-venue-grid h3 {
    font-size: 1.7rem;
  }
}
.events-page .event-type-card > div {
  width: 80px;
  height: 80px;
  border: 0;
  background: transparent;
}
.events-page .event-type-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(201, 152, 85, 0.28));
  transition: transform 0.25s ease;
}
.events-page .event-type-card:hover > div {
  background: transparent;
  transform: none;
}
.events-page .event-type-card:hover img {
  filter: drop-shadow(0 5px 10px rgba(201, 152, 85, 0.28));
  transform: scale(1.08);
}
.event-type-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(211, 165, 116, 0.55);
  color: #d3a574;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s;
}
.event-type-card > a:hover {
  border-color: #d3a574;
  background: #d3a574;
  color: #120d08;
}
.event-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-type-card p {
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}
.events-page > .event-journey-section {
  padding-top: 0;
}
.gallery-page > section:not(.inner-hero),
.contact-page > section:not(.inner-hero) {
  background: #100d09;
}
.gallery-intro {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.gallery-intro > div > p:last-child,
.contact-intro > div > p:last-child {
  max-width: 760px;
  margin: 1.3rem auto 0;
  color: #cdbda6;
  font-size: 0.9rem;
  line-height: 1.85;
}
.luxury-gallery-section {
  padding: 0 0 clamp(5rem, 8vw, 8rem);
}
.luxury-gallery-grid {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(211, 165, 116, 0.28);
  background: #0c0907;
  cursor: zoom-in;
}
.gallery-tile-tall {
  grid-row: span 2;
}
.gallery-tile-wide {
  grid-column: span 2;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06);
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}
.gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(7, 4, 2, 0.88));
  opacity: 0.7;
  transition: 0.3s;
}
.gallery-tile span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: #f0d092;
  font: 600 1.05rem "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: 0.3s;
}
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.055);
}
.gallery-tile:hover::after {
  opacity: 1;
}
.gallery-tile:hover span {
  transform: none;
}
.gallery-tile:focus-visible {
  outline: 2px solid #d3a574;
  outline-offset: 3px;
}
.contact-intro {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.contact-details-section {
  padding: 0 0 clamp(5rem, 8vw, 7rem);
}
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.contact-detail-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 260px;
  padding: 2rem 1.4rem;
  border: 1px solid rgba(211, 165, 116, 0.25);
  background: linear-gradient(145deg, #1b130d, #100c09);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: 0.35s;
}
.contact-detail-card:hover {
  border-color: #d3a574;
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}
.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border: 1px solid rgba(211, 165, 116, 0.5);
  border-radius: 50%;
  transition: 0.3s;
}
.contact-detail-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #d3a574;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-card:hover .contact-detail-icon {
  background: #d3a574;
  transform: scale(1.06);
}
.contact-detail-card:hover svg {
  stroke: #100d09;
}
.contact-detail-card small {
  color: #917f68;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.contact-detail-card strong {
  margin: 0.5rem 0;
  color: #d3a574;
  font: 600 1.2rem "Cormorant Garamond", serif;
}
.contact-detail-card em {
  color: #9f917e;
  font-size: 0.66rem;
  font-style: normal;
}
.contact-location-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}
.contact-location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  border: 1px solid rgba(211, 165, 116, 0.25);
  background: #15100c;
}
.contact-location-copy {
  padding: clamp(2rem, 5vw, 4rem);
}
.contact-address-block {
  margin: 1.8rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(211, 165, 116, 0.18);
  border-bottom: 1px solid rgba(211, 165, 116, 0.18);
}
.contact-address-block span,
.contact-hours span {
  color: #9d8d76;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.contact-address-block p {
  margin: 0.6rem 0 0;
  color: #d8c9b2;
  font-size: 0.78rem;
  line-height: 1.8;
}
.contact-hours {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.contact-hours strong {
  color: #d3a574;
  font-size: 0.68rem;
  font-weight: 500;
}
.contact-map {
  min-height: 560px;
  padding: 10px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: grayscale(0.8) sepia(0.2) contrast(1.08);
}
@media (max-width: 991.98px) {
  .luxury-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
  .contact-location-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 460px;
  }
  .contact-map iframe {
    min-height: 440px;
  }
}
@media (max-width: 575.98px) {
  .luxury-gallery-grid {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr;
  }
  .gallery-tile,
  .gallery-tile-tall,
  .gallery-tile-wide {
    grid-column: auto;
    grid-row: auto;
  }
  .contact-detail-card {
    min-height: 230px;
  }
  .contact-hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 380px;
  }
}
.contact-enquiry-section {
  padding: 0 0 clamp(5rem, 8vw, 8rem);
}
.contact-enquiry-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid rgba(211, 165, 116, 0.3);
  background: #120e0a;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.3);
}
.contact-enquiry-aside {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background: linear-gradient(
      145deg,
      rgba(29, 19, 12, 0.96),
      rgba(13, 10, 7, 0.98)
    ),
    url("assets/images/84.png") center/cover;
}
.contact-enquiry-aside::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(211, 165, 116, 0.16);
  border-radius: 50%;
  content: "";
}
.contact-enquiry-aside > p:not(.kicker) {
  margin: 1.3rem 0 2rem;
  color: #b9aa95;
  font-size: 0.78rem;
  line-height: 1.85;
}
.contact-enquiry-points {
  display: grid;
  gap: 0.75rem;
}
.contact-enquiry-points span {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(211, 165, 116, 0.14);
  color: #d8c9b2;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.contact-enquiry-points b {
  color: #d3a574;
  font: 600 1rem "Cormorant Garamond", serif;
}
.contact-form-panel {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(145deg, #19120d, #0f0c09);
}
.contact-form-heading {
  margin-bottom: 2rem;
}
.contact-form-heading > span {
  color: #9c896f;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.contact-form-heading h3 {
  margin: 0.5rem 0 0;
  color: #d3a574;
  font: 600 1.7rem "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
}
.classic-contact-form {
  display: grid;
  gap: 1.35rem;
}
.classic-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.classic-contact-form label {
  display: grid;
  gap: 0.55rem;
}
.classic-contact-form label > span {
  color: #b29d82;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.classic-contact-form input,
.classic-contact-form textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(211, 165, 116, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #eee0cb;
  font: 400 0.78rem Montserrat, sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.classic-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.classic-contact-form input::placeholder,
.classic-contact-form textarea::placeholder {
  color: #695f52;
}
.classic-contact-form input:focus,
.classic-contact-form textarea:focus {
  border-color: #d3a574;
  box-shadow: 0 1px 0 rgba(211, 165, 116, 0.2);
}
.classic-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: max-content;
  min-width: 190px;
  margin-top: 0.5rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid #d3a574;
  background: transparent;
  color: #d3a574;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s;
}
.classic-form-submit:hover {
  background: #d3a574;
  color: #110c08;
  transform: translateY(-2px);
}
.classic-form-submit span {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  font-size: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8h10M8.5 4l4 4-4 4' fill='none' stroke='%23d3a574' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.classic-form-submit:hover span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8h10M8.5 4l4 4-4 4' fill='none' stroke='%23110c08' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.contact-page > .contact-location-section {
  padding-top: 0;
}
.contact-page .contact-intro > div > p:last-child {
  font-size: 1rem;
}
.contact-page .contact-detail-card small {
  font-size: 0.68rem;
}
.contact-page .contact-detail-card strong {
  font-size: 1.5rem;
}
.contact-page .contact-detail-card em {
  font-size: 0.9rem;
}
.contact-page .contact-enquiry-aside > p:not(.kicker) {
  font-size: 0.9rem;
  line-height: 1.85;
}
.contact-page .contact-enquiry-points span {
  font-size: 0.78rem;
}
.contact-page .contact-enquiry-points b {
  font-size: 1.15rem;
}
.contact-page .contact-form-heading > span {
  font-size: 0.67rem;
}
.contact-page .contact-form-heading h3 {
  font-size: 1.9rem;
}
.contact-page .classic-contact-form label > span {
  font-size: 0.68rem;
}
.contact-page .classic-contact-form input,
.contact-page .classic-contact-form textarea {
  font-size: 0.9rem;
}
.contact-page .classic-form-submit {
  font-size: 0.7rem;
}
.contact-page .contact-address-block span,
.contact-page .contact-hours span {
  font-size: 0.66rem;
}
.contact-page .contact-address-block p {
  font-size: 0.9rem;
}
.contact-page .contact-hours strong {
  font-size: 0.78rem;
}
.gallery-page .luxury-gallery-grid {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-page .gallery-tile {
  grid-column: auto;
  grid-row: auto;
  height: 330px;
}
.gallery-page .gallery-tile:nth-child(1) {
  grid-column: span 7;
  height: 520px;
}
.gallery-page .gallery-tile:nth-child(2) {
  grid-column: span 5;
  height: 520px;
}
.gallery-page .gallery-tile:nth-child(3),
.gallery-page .gallery-tile:nth-child(4),
.gallery-page .gallery-tile:nth-child(5) {
  grid-column: span 4;
}
.gallery-page .gallery-tile:nth-child(6) {
  grid-column: span 5;
  height: 430px;
}
.gallery-page .gallery-tile:nth-child(7) {
  grid-column: span 7;
  height: 430px;
}
.gallery-page .gallery-tile:nth-child(8),
.gallery-page .gallery-tile:nth-child(9),
.gallery-page .gallery-tile:nth-child(10) {
  grid-column: span 4;
}
.gallery-page .gallery-tile:nth-child(2) img {
  object-position: center 42%;
}
.gallery-page .gallery-tile:nth-child(5) img {
  object-position: center 35%;
}
.gallery-page .gallery-tile:nth-child(7) img {
  object-position: center 45%;
}
.gallery-page .gallery-tile::before {
  position: absolute;
  z-index: 2;
  inset: 9px;
  content: "";
  border: 1px solid rgba(236, 204, 145, 0.17);
  pointer-events: none;
}
.gallery-page .gallery-tile span {
  font-size: 1.15rem;
}
.gallery-page .gallery-tile:hover {
  border-color: rgba(211, 165, 116, 0.72);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991.98px) {
  .gallery-page .luxury-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-page .gallery-tile,
  .gallery-page .gallery-tile:nth-child(n) {
    grid-column: span 1;
    height: 360px;
  }
  .gallery-page .gallery-tile:nth-child(1),
  .gallery-page .gallery-tile:nth-child(6) {
    grid-column: 1/-1;
    height: 460px;
  }
}
@media (max-width: 575.98px) {
  .gallery-page .luxury-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-page .gallery-tile,
  .gallery-page .gallery-tile:nth-child(n),
  .gallery-page .gallery-tile:nth-child(1),
  .gallery-page .gallery-tile:nth-child(6) {
    grid-column: auto;
    height: 300px;
  }
  .gallery-page .gallery-tile span {
    font-size: 1rem;
  }
}
.events-page .event-type-card {
  display: block;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.events-page .event-type-card > span {
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240, 208, 146, 0.55);
  background: rgba(12, 8, 5, 0.78);
  color: #f0d092;
  font-size: 0.67rem;
  backdrop-filter: blur(6px);
}
.events-page .event-type-card > .event-category-image {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #0a0705;
  overflow: hidden;
}
.events-page .event-type-card > .event-category-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(13, 9, 6, 0.82));
  transition: 0.35s;
}
.events-page .event-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transform: none;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}
.events-page .event-type-card:hover > .event-category-image {
  background: #0a0705;
  transform: none;
}
.events-page .event-type-card:hover .event-category-image img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.055);
}
.events-page .event-type-card > .event-category-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: 270px;
  margin: 0;
  padding: 1.55rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, #1b130d, #100c09);
  transform: none;
}
.events-page .event-type-card:hover > .event-category-content {
  background: linear-gradient(145deg, #21170f, #120d09);
  transform: none;
}
.events-page .event-category-content h3 {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
}
.events-page .event-category-content p {
  margin: 0 0 1.3rem;
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: left;
}
.events-page .event-category-content > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(211, 165, 116, 0.55);
  color: #d3a574;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s;
}
.events-page .event-category-content > a:hover {
  border-color: #d3a574;
  background: #d3a574;
  color: #120d08;
}
.events-page .event-type-card::after {
  position: absolute;
  z-index: 2;
  inset: 8px;
  content: "";
  border: 1px solid rgba(240, 208, 146, 0.1);
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .events-page .event-type-card {
    min-height: auto;
  }
  .events-page .event-type-card > .event-category-image {
    height: 230px;
  }
  .events-page .event-type-card > .event-category-content {
    height: auto;
    min-height: 270px;
    padding: 1.35rem;
  }
}
.event-tabs-section {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}
.event-tab-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 1rem;
  border: 1px solid rgba(211, 165, 116, 0.24);
  background: #0d0a08;
}
.event-tab-nav button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 132px;
  padding: 1rem 0.5rem;
  border: 0;
  border-right: 1px solid rgba(211, 165, 116, 0.16);
  background: transparent;
  color: #9f917d;
  transition: 0.3s;
}
.event-tab-nav button:last-child {
  border-right: 0;
}
.event-tab-nav button::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 2px;
  content: "";
  background: #d3a574;
  transform: scaleX(0);
  transition: 0.3s;
}
.event-tab-nav button.active,
.event-tab-nav button:hover {
  background: #1b130d;
  color: #d3a574;
}
.event-tab-nav button.active::after {
  transform: scaleX(1);
}
.event-tab-nav img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: sepia(1) saturate(0.55) brightness(1.15);
  transition: 0.3s;
}
.event-tab-nav button.active img,
.event-tab-nav button:hover img {
  filter: drop-shadow(0 6px 12px rgba(211, 165, 116, 0.25));
  transform: translateY(-3px) scale(1.07);
}
.event-tab-nav span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.event-tab-content {
  padding: 10px;
  border: 1px solid rgba(211, 165, 116, 0.27);
  background: #0d0a08;
}
.event-tab-content > .tab-pane {
  background: #120e0a;
}
.event-tab-gallery {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
}
.event-tab-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.event-tab-gallery .event-tab-featured {
  grid-row: 1/3;
}
.event-tab-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.event-tab-footer > div {
  max-width: 720px;
}
.event-tab-footer span {
  color: #8f7d65;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.event-tab-footer h3 {
  margin: 0.45rem 0;
  color: #d3a574;
  font: 600 1.7rem "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
}
.event-tab-footer p {
  margin: 0;
  color: #a99b87;
  font-size: 0.86rem;
  line-height: 1.75;
}
.event-tab-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 190px;
  padding: 0.85rem 1.2rem;
  border: 1px solid #d3a574;
  color: #d3a574;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s;
}
.event-tab-footer > a:hover {
  background: #d3a574;
  color: #110c08;
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .event-tab-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .event-tab-nav button:nth-child(3) {
    border-right: 0;
  }
  .event-tab-nav button:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(211, 165, 116, 0.16);
  }
}
@media (max-width: 575.98px) {
  .event-tab-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .event-tab-nav button,
  .event-tab-nav button:nth-child(3) {
    flex: 0 0 105px;
    min-height: 108px;
    border-right: 1px solid rgba(211, 165, 116, 0.16);
    border-bottom: 0;
  }
  .event-tab-nav img {
    width: 42px;
    height: 42px;
  }
  .event-tab-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 170px;
  }
  .event-tab-gallery .event-tab-featured {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .event-tab-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .event-tab-footer > a {
    width: 100%;
  }
}
.events-page > .events-intro {
  padding-bottom: 1.5rem;
}
.events-page > .event-tabs-section {
  padding-top: 0;
}
.event-tab-footer > .cta-button {
  padding: 0.58rem 0.7rem 0.58rem 1.2rem;
}
.home-events-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.packages-page .package-card {
  border-color: #c68b2c;
  background: radial-gradient(
      circle at 16% 10%,
      rgba(255, 255, 255, 0.95),
      transparent 25%
    ),
    radial-gradient(
      circle at 84% 82%,
      rgba(198, 139, 44, 0.15),
      transparent 32%
    ),
    linear-gradient(135deg, #fff4c9 0%, #efd38a 48%, #f9e8b2 100%);
  box-shadow: inset 0 0 0 8px rgba(255, 248, 218, 0.28),
    inset 0 0 80px rgba(142, 86, 14, 0.16), 0 28px 68px rgba(0, 0, 0, 0.45);
}
.packages-page .package-card::before {
  border-color: rgba(105, 60, 12, 0.2);
}
.packages-page .package-card.featured {
  background: radial-gradient(
      circle at 50% 7%,
      rgba(255, 255, 255, 0.98),
      transparent 27%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(167, 102, 14, 0.18),
      transparent 34%
    ),
    linear-gradient(140deg, #ffeaa3, #d9ad48 52%, #f4d37f);
  box-shadow: inset 0 0 0 8px rgba(255, 244, 195, 0.3),
    inset 0 0 90px rgba(113, 65, 9, 0.2), 0 32px 82px rgba(0, 0, 0, 0.55),
    0 0 38px rgba(213, 159, 35, 0.2);
}
.packages-page .package-card h3 {
  color: #9b4e16;
  font-size: 1.95rem;
  letter-spacing: 0.035em;
}
.packages-page .plan-price {
  color: #160f09;
  font-size: clamp(2.65rem, 3.4vw, 3.25rem);
}
.packages-page .plan-price span {
  color: #4f4132;
  font-size: 0.78rem;
}
.packages-page .package-card li {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom-color: rgba(74, 45, 13, 0.2);
  color: #352d25;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}
.packages-page .package-card li::before {
  color: #a96e0c;
  font-size: 1rem;
}
.packages-page .package-details-button {
  border-color: #3b1c0a;
  color: #321708;
  font-size: 0.73rem;
}
.packages-page .package-icon {
  box-shadow: 0 14px 30px rgba(112, 53, 8, 0.34);
}
.packages-page .popular {
  background: #a96e0c;
  color: #fff7df;
  font-size: 0.68rem;
  box-shadow: 0 7px 18px rgba(73, 37, 6, 0.25);
}
@media (max-width: 575.98px) {
  .packages-page .package-card h3 {
    font-size: 1.75rem;
  }
  .packages-page .package-card li {
    font-size: 0.78rem;
  }
  .packages-page .plan-price {
    font-size: 2.55rem;
  }
}
@media (max-width: 991.98px) {
  .contact-enquiry-shell {
    grid-template-columns: 1fr;
  }
  .contact-enquiry-aside > p:not(.kicker) {
    max-width: 680px;
  }
}
@media (max-width: 575.98px) {
  .classic-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-panel,
  .contact-enquiry-aside {
    padding: 1.6rem 1.3rem;
  }
  .classic-form-submit {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .grand-hall-page .moment-grid,
  .imperial-hall-page .moment-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 210px;
  }
  .moment-item-featured {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .moment-item > span {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 575.98px) {
  .gallery-hint {
    display: none;
  }
  .grand-hall-page .moment-grid,
  .imperial-hall-page .moment-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .grand-hall-page .moment-item,
  .grand-hall-page .moment-item-featured,
  .imperial-hall-page .moment-item,
  .imperial-hall-page .moment-item-featured {
    grid-column: auto;
    grid-row: auto;
    height: 280px;
  }
}
.inner-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background: var(--inner-hero-image, url("assets/images/84.png")) center/cover
    no-repeat;
}
.inner-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(7, 5, 3, 0.9),
      rgba(7, 5, 3, 0.48),
      rgba(7, 5, 3, 0.72)
    ),
    linear-gradient(0deg, rgba(8, 5, 3, 0.82), transparent 65%);
}
.inner-hero::after {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(225, 183, 108, 0.28);
  content: "";
  pointer-events: none;
}
.inner-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 76px;
  text-align: center;
}
.inner-hero h1 {
  margin: 0;
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px #000;
  animation: heroTitleEnter 1.15s cubic-bezier(0.16, 0.8, 0.25, 1) 0.25s both;
}
.hero h1,
.inner-hero h1 {
  color: #fff8e8;
  text-transform: uppercase;
}
body .inner-hero .inner-hero-content h1 {
  color: #fff8e8 !important;
  text-transform: uppercase !important;
}
.luxury-inner-page section:not(.inner-hero) h2,
.venue-page section:not(.inner-hero) h2 {
  color: #d3a574 !important;
  font-size: clamp(1.8rem, 4vw, 2.2rem) !important;
  line-height: 1.08;
  text-transform: uppercase;
}
.inner-hero-content > p:not(.kicker) {
  max-width: 600px;
  margin: 1.3rem auto 0;
  color: #e1d2b8;
  font: inherit;
}
.breadcrumb-classic {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
  color: #c9a46d;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb-classic a {
  color: #f0d092;
  text-decoration: none;
}
.hall-detail {
  position: relative;
  background: #0d0906;
  scroll-margin-top: 76px;
}
.hall-detail-alt {
  background: linear-gradient(135deg, #171009, #0a0705);
}
.hall-image-frame {
  position: relative;
  /* remove decorative border — replaced by framed background */
  padding: 2.2rem; /* inner spacing so the image sits inside the frame art */
  background: transparent;
  border: none;
  overflow: hidden;
}
.hall-image-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: url("assets/frame/showcase.png") center/contain no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.hall-image-frame.combined-img img {
    min-height: 100px;
    height: 280px;
}

.hall-image-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: calc(100% - 0rem);
    height: calc(100% - 4.4rem);
    min-height: 480px;
    margin: 0 auto;
    object-fit: cover;
}
.hall-number {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 22px;
  color: rgba(255, 239, 207, 0.72);
  font: 4.5rem/0.8 "Cormorant Garamond", serif;
  text-shadow: 0 5px 20px #000;
}
.hall-copy h2,
.venue-page-cta h2 {
  margin: 0.1rem 0 1.1rem;
  color: #d3a574;
  font-size: clamp(2.35rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.04;
  text-transform: uppercase;
}
.hall-copy > p {
  max-width: 560px;
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
.hall-copy > .kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin: 0 0 1.15rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(226, 183, 105, 0.45);
  background: linear-gradient(
    90deg,
    rgba(198, 139, 64, 0.2),
    rgba(99, 57, 20, 0.08)
  );
  color: #edc987;
  font: 600 0.68rem/1 Montserrat, Arial, sans-serif;
  letter-spacing: 0.13em;
  box-shadow: inset 3px 0 0 #c9934f, 0 8px 22px rgba(0, 0, 0, 0.18);
}
.hall-copy > .kicker::before {
  width: 6px;
  height: 6px;
  content: "";
  border: 1px solid #edc987;
  transform: rotate(45deg);
}
.hall-copy .hall-lead {
  color: #b5855a;
  font: inherit;
  text-align: justify;
}
.hall-subtitle {
  margin: -0.25rem 0 1rem;
  color: #e2bd91;
  font: 600 clamp(1.35rem, 2vw, 1.6rem) "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.04em;
}
.hall-copy .cta-button {
  margin-top: 0.25rem;
}
.hall-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 2rem;
}
.hall-features span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(218, 174, 99, 0.3);
  color: #d5b782;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.venue-page-cta {
  background: linear-gradient(rgba(9, 6, 4, 0.86), rgba(9, 6, 4, 0.92)),
    url("assets/images/87.png") center/cover fixed;
}
.venue-page-cta p:not(.kicker) {
  max-width: 680px;
  margin: 0 auto 1.8rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .inner-hero {
    min-height: 430px;
  }
  .inner-hero::after {
    inset: 10px;
  }
  .hall-image-frame img {
    min-height: 300px;
  }
  .hall-number {
    font-size: 3.2rem;
  }
  .inner-hero h1 {
    font-size: clamp(2.1rem, 8vw, 2.6rem);
    line-height: 0.98;
  }
  .hall-copy h2,
  .venue-page-cta h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    line-height: 1.05;
  }
}
@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }
  .site-nav {
    min-height: 66px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand b {
    font-size: 1rem;
  }
  .hero {
    min-height: 720px;
  }
  .hero-copy {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
  .hero h1 {
    font-size: 2.85rem;
  }
  .section {
    padding: 68px 0;
  }
  /* .image-frame img {
    min-height: 280px;
  } */
  .venue-card > img {
    height: 240px;
  }
  .gallery-frame {
    padding: 10px;
  }
  .gallery-frame img {
    height: 310px;
  }
  .enquire {
    right: 13px;
    bottom: 13px;
  }
}
.grand-perfect-list span {
  font-size: calc(0.5rem+6px);
}
.imperial-highlights li {
  font-size: 0.9rem;
}
.legal-content-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: #100d09;
}
.legal-document {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(211, 165, 116, 0.26);
  background: linear-gradient(145deg, #1a130d, #0f0c09);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.28);
}
.legal-document > h2 {
  margin: 0.35rem 0 1rem;
}
.legal-updated {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(211, 165, 116, 0.18);
  color: #8f7d65;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-document h3 {
  margin: 2rem 0 0.65rem;
  color: #edca8b;
  font: 600 1.55rem/1.15 "Cormorant Garamond", Georgia, serif;
}
.legal-document p {
  color: #cdbda6;
  font-size: 0.92rem;
  line-height: 1.9;
}
.legal-document a {
  color: #d3a574;
}
.faq-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 110px;
}
.faq-intro > p:last-child {
  color: #cdbda6;
  font-size: 0.9rem;
  line-height: 1.85;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid rgba(211, 165, 116, 0.24);
  background: linear-gradient(145deg, #1a130d, #0f0c09);
}
.faq-list summary {
  position: relative;
  padding: 1.35rem 3.5rem 1.35rem 1.5rem;
  color: #ead8b9;
  font: 600 1.15rem/1.35 "Cormorant Garamond", Georgia, serif;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  color: #d3a574;
  content: "+";
  font: 400 1.4rem/1 Arial, sans-serif;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details[open] summary {
  color: #d3a574;
}
.faq-list details p {
  margin: 0;
  padding: 0 1.5rem 1.4rem;
  color: #ad9c86;
  font-size: 0.9rem;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .faq-shell {
    grid-template-columns: 1fr;
  }
  .faq-intro {
    position: static;
  }
  .legal-document {
    padding: 1.6rem 1.25rem;
  }
  .faq-list summary {
    padding: 1.15rem 3rem 1.15rem 1.15rem;
  }
  .faq-list details p {
    padding: 0 1.15rem 1.2rem;
  }
}
.event-tour-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(4, 3, 2, 0.88);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.event-tour-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.event-tour-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  width: min(1040px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid rgba(222, 174, 96, 0.48);
  background: #0c0a08;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.72);
  transform: translateY(22px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.event-tour-modal.is-open .event-tour-dialog {
  transform: none;
}
.event-tour-dialog::after {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(222, 174, 96, 0.1);
  content: "";
  pointer-events: none;
}
.event-tour-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(222, 174, 96, 0.55);
  border-radius: 50%;
  background: #120d09;
  color: #edca8b;
  font: 300 1.65rem/1 Arial, sans-serif;
  transition: 0.25s;
}
.event-tour-close:hover {
  background: #d3a574;
  color: #100d09;
  transform: rotate(90deg);
}
.event-tour-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.event-tour-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 4, 2, 0.94));
  content: "";
}
.event-tour-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.event-tour-visual > div {
  position: absolute;
  z-index: 1;
  right: 2.2rem;
  bottom: 2.3rem;
  left: 2.2rem;
}
.event-tour-visual span,
.event-tour-visual strong {
  display: block;
}
.event-tour-visual span {
  margin-bottom: 0.65rem;
  color: #d3a574;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.event-tour-visual strong {
  color: #f4dfba;
  font: 600 clamp(1.8rem, 3vw, 2.65rem) / 1.05 "Cormorant Garamond", Georgia,
    serif;
}
.event-tour-form-panel {
  position: relative;
  z-index: 1;
  padding: clamp(2.4rem, 5vw, 4.5rem);
}
.event-tour-form-panel > h2 {
  margin: 0.35rem 0 0.75rem;
  color: #edca8b;
  font: 600 clamp(2.2rem, 4vw, 3.3rem) / 1 "Cormorant Garamond", Georgia, serif;
}
.event-tour-form-panel > p:not(.kicker) {
  margin: 0 0 1.7rem;
  color: #a99b87;
  font-size: 0.85rem;
  line-height: 1.75;
}
.event-tour-form {
  display: grid;
  gap: 1rem;
}
.event-tour-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.event-tour-form label {
  display: grid;
  gap: 0.45rem;
}
.event-tour-form label > span {
  color: #ad9c86;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.event-tour-form input,
.event-tour-form textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(211, 165, 116, 0.25);
  border-radius: 0;
  outline: 0;
  background: #15100c;
  color: #eadcc5;
  font: 400 0.82rem Montserrat, Arial, sans-serif;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.event-tour-form input:focus,
.event-tour-form textarea:focus {
  border-color: #d3a574;
  box-shadow: 0 0 0 3px rgba(211, 165, 116, 0.08);
}
.event-tour-form input::placeholder,
.event-tour-form textarea::placeholder {
  color: #716452;
}
.event-tour-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 50px;
  margin-top: 0.3rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #d3a574;
  background: linear-gradient(135deg, #9d6425, #6f431c);
  color: #fff1d5;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 0.25s;
}
.event-tour-submit:hover {
  background: #d3a574;
  color: #100d09;
  transform: translateY(-2px);
}
.event-tour-submit span {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  font-size: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='%23fff1d5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.event-tour-submit:hover span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='%23100d09' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
body.event-tour-open {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .event-tour-dialog {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }
  .event-tour-visual {
    min-height: 230px;
    height: 230px;
  }
  .event-tour-visual > div {
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
  }
  .event-tour-form-panel {
    padding: 2rem 1.35rem 1.6rem;
  }
  .event-tour-form-grid {
    grid-template-columns: 1fr;
  }
  .event-tour-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
  .event-tour-form-panel > h2 {
    font-size: 2.25rem;
  }
}
.ca-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}
.contact-form-status {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid;
  font-size: 0.78rem;
  line-height: 1.6;
}
.contact-form-status.is-success {
  border-color: rgba(112, 180, 112, 0.55);
  background: rgba(69, 132, 69, 0.12);
  color: #b9dfb9;
}
.contact-form-status.is-error {
  border-color: rgba(211, 117, 96, 0.55);
  background: rgba(154, 65, 48, 0.12);
  color: #e2afa3;
}
.thank-you-hero .inner-hero-content > .kicker {
  margin-bottom: 0.8rem;
  color: #d3a574;
}
.thank-you-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: radial-gradient(
      circle at 50% 10%,
      rgba(211, 165, 116, 0.08),
      transparent 32%
    ),
    #100d09;
}
.thank-you-card {
  position: relative;
  width: min(850px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid rgba(211, 165, 116, 0.38);
  background: linear-gradient(145deg, #1b130d, #0e0b08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  text-align: center;
}
.thank-you-card::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(237, 202, 139, 0.09);
  content: "";
  pointer-events: none;
}
.thank-you-emblem {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 1.5rem;
  place-items: center;
}
.thank-you-emblem::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(211, 165, 116, 0.25);
  border-radius: 50%;
  content: "";
}
.thank-you-emblem svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: #d3a574;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thank-you-card h2 {
  margin: 0.5rem auto 1rem;
  color: #edca8b;
  font: 600 clamp(2.2rem, 5vw, 3.7rem) / 1.03 "Cormorant Garamond", Georgia,
    serif;
}
.thank-you-card > p:not(.kicker):not(.thank-you-contact) {
  max-width: 680px;
  margin: 0 auto;
  color: #cdbda6;
  font-size: 0.95rem;
  line-height: 1.9;
}
.thank-you-detail {
  max-width: 650px;
  margin: 2rem auto;
  padding: 1.3rem;
  border-top: 1px solid rgba(211, 165, 116, 0.2);
  border-bottom: 1px solid rgba(211, 165, 116, 0.2);
}
.thank-you-detail span,
.thank-you-detail strong {
  display: block;
}
.thank-you-detail span {
  margin-bottom: 0.55rem;
  color: #9b876d;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}
.thank-you-detail strong {
  color: #dfceb4;
  font: 500 1.15rem/1.55 "Cormorant Garamond", Georgia, serif;
}
.thank-you-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.thank-you-secondary {
  background: transparent !important;
}
.thank-you-contact {
  margin: 1.8rem 0 0 !important;
  color: #8f806c !important;
  font-size: 0.75rem !important;
}
.thank-you-contact a {
  color: #d3a574;
}
@media (max-width: 575.98px) {
  .thank-you-card {
    padding: 2.5rem 1.35rem;
  }
  .thank-you-actions {
    flex-direction: column;
  }
  .thank-you-actions .cta-button {
    width: 100%;
  }
  .thank-you-emblem {
    width: 70px;
    height: 70px;
  }
}
.thank-you-page {
  display: grid;
  height: 100svh;
  min-height: 620px;
  grid-template-rows: 190px minmax(0, 1fr);
  overflow: hidden;
}
.thank-you-page .thank-you-hero {
  min-height: 190px;
  height: 190px;
}
.thank-you-page .inner-hero-content {
  padding-top: 70px;
}
.thank-you-page .thank-you-hero h1 {
  font-size: clamp(2.15rem, 3.6vw, 3rem);
}
.thank-you-page .breadcrumb-classic {
  margin-top: 0.8rem;
}
.thank-you-page .thank-you-section {
  display: grid;
  min-height: 0;
  padding: 18px 0 20px;
  place-items: center;
}
.thank-you-page .thank-you-card {
  padding: 24px clamp(1.5rem, 4vw, 3.2rem);
}
.thank-you-page .thank-you-emblem {
  width: 58px;
  height: 58px;
  margin-bottom: 0.55rem;
}
.thank-you-page .thank-you-emblem svg {
  width: 52px;
  height: 52px;
}
.thank-you-page .thank-you-card h2 {
  margin: 0.3rem auto 0.65rem;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}
.thank-you-page .thank-you-card > p:not(.kicker):not(.thank-you-contact) {
  font-size: 0.82rem;
  line-height: 1.65;
}
.thank-you-page .thank-you-detail {
  margin: 1rem auto;
  padding: 0.75rem;
}
.thank-you-page .thank-you-detail span {
  margin-bottom: 0.3rem;
}
.thank-you-page .thank-you-detail strong {
  font-size: 1rem;
  line-height: 1.4;
}
.thank-you-page .thank-you-actions .cta-button {
  min-height: 42px;
}
.thank-you-page .thank-you-contact {
  margin-top: 0.85rem !important;
}
.thank-you-page ~ .footer,
.thank-you-page ~ .back-to-top {
  display: none !important;
}
@media (max-width: 575.98px) {
  .thank-you-page {
    min-height: 580px;
    grid-template-rows: 155px minmax(0, 1fr);
  }
  .thank-you-page .thank-you-hero {
    min-height: 155px;
    height: 155px;
  }
  .thank-you-page .inner-hero-content {
    padding-top: 62px;
  }
  .thank-you-page .thank-you-hero .kicker,
  .thank-you-page .breadcrumb-classic {
    display: none;
  }
  .thank-you-page .thank-you-section {
    padding: 12px;
  }
  .thank-you-page .thank-you-card {
    padding: 18px 16px;
  }
  .thank-you-page .thank-you-emblem {
    width: 48px;
    height: 48px;
  }
  .thank-you-page .thank-you-emblem svg {
    width: 44px;
    height: 44px;
  }
  .thank-you-page .thank-you-card h2 {
    font-size: 1.75rem;
  }
  .thank-you-page .thank-you-detail {
    margin: 0.75rem auto;
  }
  .thank-you-page .thank-you-actions {
    flex-direction: row;
    gap: 0.6rem;
  }
  .thank-you-page .thank-you-actions .cta-button {
    width: auto;
    min-height: 40px;
    padding: 0.55rem 0.7rem;
    font-size: 0.57rem !important;
  }
  .thank-you-page .thank-you-contact {
    font-size: 0.68rem !important;
  }
}
.thank-you-page {
  display: grid;
  height: 100svh;
  min-height: 580px;
  grid-template-rows: 1fr;
  background: linear-gradient(rgba(7, 5, 3, 0.82), rgba(10, 7, 4, 0.94)),
    url("assets/images/84.png") center/cover no-repeat;
}
.thank-you-page .thank-you-section {
  min-height: 100%;
  padding: 96px 18px 20px;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(211, 165, 116, 0.1),
    transparent 38%
  );
}
.thank-you-card h1 {
  margin: 0.25rem 0;
  color: #fff0d2;
  font: 600 clamp(2.8rem, 6vw, 4.8rem) / 0.95 "Cormorant Garamond", Georgia,
    serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}
.thank-you-card h1::after {
  display: block;
  width: 46px;
  height: 1px;
  margin: 0.75rem auto;
  background: #d3a574;
  content: "";
}
.thank-you-page .thank-you-card h2 {
  margin: 0.2rem auto 0.7rem;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}
.thank-you-page .thank-you-actions {
  margin-top: 1.2rem;
}
@media (max-width: 575.98px) {
  .thank-you-page {
    grid-template-rows: 1fr;
  }
  .thank-you-page .thank-you-section {
    padding: 86px 12px 12px;
  }
}
.thank-you-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.event-tour-dialog {
  width: min(940px, 96vw);
  max-height: 90vh;
  grid-template-columns: 0.82fr 1.18fr;
}
.event-tour-visual {
  min-height: 520px;
}
.event-tour-visual > div {
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
}
.event-tour-visual strong {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}
.event-tour-form-panel {
  padding: 2.1rem 2.3rem;
}
.event-tour-form-panel > h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
}
.event-tour-form {
  gap: 0.72rem;
}
.event-tour-form-grid {
  gap: 0.75rem;
}
.event-tour-form label {
  gap: 0.32rem;
}
.event-tour-form input,
.event-tour-form textarea {
  padding: 0.67rem 0.78rem;
}
.event-tour-submit {
  min-height: 44px;
  margin-top: 0.1rem;
  padding: 0.65rem 1rem;
}
@media (max-width: 767.98px) {
  .event-tour-dialog {
    width: min(460px, 96vw);
    max-height: 92vh;
  }
  .event-tour-visual {
    min-height: 145px;
    height: 145px;
  }
  .event-tour-visual > div {
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
  }
  .event-tour-visual span {
    margin-bottom: 0.25rem;
    font-size: 0.52rem;
  }
  .event-tour-visual strong {
    font-size: 1.35rem;
  }
  .event-tour-form-panel {
    padding: 1.3rem 1.1rem 1.1rem;
  }
  .event-tour-form-panel > h2 {
    margin: 0 0 0.8rem;
    padding-right: 38px;
    font-size: 1.8rem;
  }
  .event-tour-form {
    gap: 0.6rem;
  }
  .event-tour-form-grid {
    gap: 0.6rem;
  }
  .event-tour-form input,
  .event-tour-form textarea {
    padding: 0.62rem 0.7rem;
    font-size: 0.76rem;
  }
  .event-tour-form textarea {
    min-height: 62px;
    max-height: 72px;
  }
  .event-tour-submit {
    min-height: 42px;
  }
  .event-tour-close {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}
.event-tour-form-panel > h2 {
  font-size: 1.7rem;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .event-tour-form-panel > h2 {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }
}
.event-tour-form-panel,
.event-tour-form,
.event-tour-form-grid,
.event-tour-form label,
.event-tour-form input,
.event-tour-form textarea {
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 575.98px) {
  .event-tour-modal {
    align-items: center;
    padding: 10px;
  }
  .event-tour-dialog {
    display: block;
    width: 100%;
    max-width: 430px;
    max-height: calc(100dvh - 20px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .event-tour-visual {
    display: none;
  }
  .event-tour-form-panel {
    width: 100%;
    padding: 1.25rem 1rem 1rem;
  }
  .event-tour-form-panel > h2 {
    margin: 0 0 0.8rem;
    padding-right: 38px;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    white-space: nowrap;
  }
  .event-tour-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
  }
  .event-tour-form {
    gap: 0.55rem;
  }
  .event-tour-form input,
  .event-tour-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.62rem 0.7rem;
  }
  .event-tour-form input[type="date"],
  .event-tour-form input[type="number"] {
    min-height: 40px;
  }
  .event-tour-submit {
    width: 100%;
    min-height: 42px;
    margin-top: 0.15rem;
  }
  .event-tour-close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 360px) {
  .event-tour-modal {
    padding: 6px;
  }
  .event-tour-dialog {
    max-height: calc(100dvh - 12px);
  }
  .event-tour-form-panel {
    padding: 1rem 0.8rem 0.8rem;
  }
  .event-tour-form-panel > h2 {
    font-size: 1.05rem;
  }
  .event-tour-form input,
  .event-tour-form textarea {
    font-size: 0.72rem;
  }
}
@media (max-height: 620px) and (max-width: 767.98px) {
  .event-tour-visual {
    display: none;
  }
  .event-tour-dialog {
    max-height: calc(100dvh - 12px);
  }
  .event-tour-form-panel {
    padding-top: 1rem;
    padding-bottom: 0.8rem;
  }
}
.event-tour-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) brightness(1.8);
  opacity: 0.9;
}
.gallery-frame {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 28px;
  border: 8px double #d3a056;
  background: linear-gradient(
    135deg,
    #502c0d 0%,
    #c88932 17%,
    #f2cc78 30%,
    #7b4614 48%,
    #d99b42 73%,
    #472507 100%
  );
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.68), inset 0 0 0 5px #4b2609,
    inset 0 0 0 9px rgba(255, 222, 154, 0.72);
}
.gallery-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14px;
}
.gallery-frame::after {
  content: "✦";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -25px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px double #f0c36e;
  border-radius: 50%;
  background: #4a290d;
  color: #f0c36e;
  font-size: 1.15rem;
  transform: translateX(-50%);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
}
.gallery-frame .carousel-inner {
  border: 8px solid #241305;
  box-shadow: inset 0 0 0 1px #c68a37;
}
.gallery-frame img {
  display: block;
  border: 0;
}
.gallery-frame .carousel-control-prev,
.gallery-frame .carousel-control-next {
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid #e4b862;
  border-radius: 50%;
  background: #2b1708;
  opacity: 1;
  transform: translateY(-50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.48);
  transition: background 0.2s, transform 0.2s;
}
.gallery-frame .carousel-control-prev {
  left: 36px;
}
.gallery-frame .carousel-control-next {
  right: 36px;
}
.gallery-frame .carousel-control-prev:hover,
.gallery-frame .carousel-control-next:hover {
  background: #9d6425;
  transform: translateY(-50%) scale(1.08);
}
.gallery-frame .carousel-control-prev-icon,
.gallery-frame .carousel-control-next-icon {
  width: 1.35rem;
  height: 1.35rem;
  filter: sepia(1) saturate(0.7) brightness(1.8);
}
.gallery-indicators {
  bottom: -56px;
  z-index: 4;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.gallery-indicators::before {
  position: absolute;
  content: "";
  left: 50%;
  width: 104px;
  height: 1px;
  background: rgba(227, 184, 105, 0.55);
  transform: translateX(-50%);
}
.gallery-indicators [data-bs-target] {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 2px solid #e8bd71;
  border-radius: 50%;
  background: #281607;
  opacity: 1;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.gallery-indicators .active {
  background: #efc774;
  box-shadow: 0 0 0 4px rgba(239, 199, 116, 0.22);
  transform: scale(1.25);
}
.gallery-indicators [data-bs-target] {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
  opacity: 1;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.gallery-indicators .active {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 152, 85, 0.12);
  transform: scale(1.25);
}
.gallery-frame .carousel-control-prev,
.gallery-frame .carousel-control-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (max-width: 767.98px) {
  .hero-indicators {
    top: auto;
    right: 1rem;
    bottom: 5.5rem;
    flex-direction: column;
    gap: 10px;
    width: 90px;
    transform: none;
  }
  .hero-indicators [data-bs-target] {
    grid-template-columns: 20px 1fr;
    width: 90px;
    height: 18px;
    gap: 8px;
    font-size: 0.65rem;
  }
  .hero-slide-line {
    width: 63px;
  }
  .hero-control {
    top: auto;
    bottom: 4.8rem;
    width: 44px;
    height: 44px;
    font-size: 2.4rem;
    transform: none;
  }
  .hero-control:hover {
    transform: scale(1.07);
  }
  .hero-control-prev {
    left: auto;
    right: 4.6rem;
  }
  .hero-control-next {
    right: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero-control {
    top: auto;
    bottom: 2rem;
    width: 50px;
    height: 50px;
    transform: none;
  }
  .hero-control:hover {
    transform: scale(1.07);
  }
  .hero-control-prev {
    left: auto;
    right: 6.15rem;
  }
  .hero-control-next {
    right: 2rem;
  }
  .hero-control-prev::after {
    position: absolute;
    top: 50%;
    right: -17px;
    width: 10px;
    height: 1px;
    content: "";
    background: rgba(239, 199, 116, 0.72);
  }
}
.gallery-frame::after {
  display: none !important;
}
.gallery-indicators {
  bottom: -52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.gallery-indicators::before {
  display: none;
}
.gallery-indicators [data-bs-target] {
  width: 72px;
  height: 3px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(236, 198, 125, 0.38);
  box-shadow: none;
  transform: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.gallery-indicators .active {
  background: #efc774;
  box-shadow: 0 0 11px rgba(239, 199, 116, 0.55);
  transform: none;
}
@media (max-width: 767.98px) {
  .gallery-frame {
    padding: 15px;
    border-width: 5px;
  }
  .gallery-frame .carousel-control-prev,
  .gallery-frame .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .gallery-frame .carousel-control-prev {
    left: 8px;
  }
  .gallery-frame .carousel-control-next {
    right: 8px;
  }
  .gallery-frame::before {
    inset: -8px;
  }
  .gallery-frame::after {
    bottom: -21px;
    width: 38px;
    height: 38px;
  }
}
.brand-logo {
  display: block;
  line-height: 0;
}
.brand-logo img {
  display: block;
  width: 260px;
  height: auto;
}
.footer-logo img {
  width: 275px;
}
.cta-button,
.gold-link,
.btn,
.enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.58rem 0.7rem 0.58rem 1.2rem;
  border: 1px solid rgba(222, 174, 96, 0.82) !important;
  border-radius: 0 !important;
  background: rgba(38, 22, 9, 0.74) !important;
  color: #f0cf92 !important;
  font: 600 0.73rem Montserrat, Arial, sans-serif !important;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
}
.cta-button,
.gold-link,
.btn {
  position: relative;
}
.cta-button::before,
.gold-link::before,
.btn::before,
.enquire::before,
.nav-contact-link::before {
  position: absolute;
  top: -45%;
  left: -65%;
  width: 38%;
  height: 190%;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 235, 188, 0.42),
    transparent
  );
  transform: skewX(-20deg);
  animation: luxuryButtonSheen 3.2s ease-in-out infinite;
}
@keyframes luxuryButtonSheen {
  0%,
  28% {
    left: -65%;
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  58% {
    left: 130%;
    opacity: 0.9;
  }
  59%,
  100% {
    left: 130%;
    opacity: 0;
  }
}
.cta-button::after,
.gold-link::after,
.btn::after,
.enquire::after {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  content: "↗";
  border: 1px solid rgba(238, 194, 112, 0.75);
  border-radius: 50%;
  color: #f3d39a;
  font: 1.15rem/1 Georgia, serif;
  transition: transform 0.25s ease, background 0.25s ease;
}
.gold-link span {
  display: none;
}
.cta-button:hover,
.gold-link:hover,
.btn:hover,
.enquire:hover {
  border-color: #f5d499 !important;
  background: #9d6425 !important;
  color: #fff2d8 !important;
  transform: translateY(-2px);
}
.cta-button:hover::after,
.gold-link:hover::after,
.btn:hover::after,
.enquire:hover::after {
  background: rgba(48, 26, 8, 0.45);
  transform: rotate(45deg);
}
.cta-button::after,
.gold-link::after,
.btn::after,
.enquire::after,
.cta-button:hover::after,
.gold-link:hover::after,
.btn:hover::after,
.enquire:hover::after {
  content: "";
  background-color: rgba(48, 26, 8, 0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='%23f3d39a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}
.cta-button:hover::after,
.gold-link:hover::after,
.btn:hover::after,
.enquire:hover::after {
  background-color: rgba(48, 26, 8, 0.45);
}
.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.testimonials {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 50% 0,
      rgba(174, 113, 46, 0.13),
      transparent 37%
    ),
    #0d0a08;
}
/* .testimonials::before {
  position: absolute;
  top: 9%;
  left: -7rem;
  width: 19rem;
  height: 19rem;
  content: "";
  border: 1px solid rgba(211, 165, 116, 0.13);
  border-radius: 50%;
} */
.testimonial-card {
  position: relative;
  height: 100%;
  min-height: 315px;
  margin: 0;
  padding: 3.25rem 2rem 2rem;
  border: 1px solid rgba(211, 165, 116, 0.38);
  background: linear-gradient(
    145deg,
    rgba(43, 28, 15, 0.86),
    rgba(16, 11, 8, 0.94)
  );
  box-shadow: inset 0 0 0 5px rgba(211, 165, 116, 0.035),
    0 18px 34px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  content: "";
  border-right: 1px solid rgba(224, 184, 112, 0.58);
  border-bottom: 1px solid rgba(224, 184, 112, 0.58);
}
.testimonial-card:hover,
.testimonial-featured {
  border-color: rgba(239, 199, 116, 0.8);
  transform: translateY(-7px);
}
.quote-mark {
  position: absolute;
  top: 1.25rem;
  left: 1.65rem;
  color: #d7a55f;
  font: 5rem/0.8 "Cormorant Garamond", Georgia, serif;
}
.testimonial-card blockquote {
  position: relative;
  margin: 0;
  color: #eadac0;
  font: 500 1.36rem/1.38 "Cormorant Garamond", Georgia, serif;
}
.testimonial-card figcaption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.18rem;
}
.testimonial-card figcaption strong {
  color: #e3bc7b;
  font: 600 1.05rem "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.04em;
}
.testimonial-card figcaption span {
  color: #bba98d;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}
.testimonial-carousel .carousel-inner {
  overflow: visible;
  min-height: 350px;
}
.testimonial-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.38;
  filter: saturate(0.7);
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.6s ease, filter 0.6s ease;
}
.testimonial-carousel .carousel-item.story-left {
  z-index: 1;
  transform: translate3d(-55%, 0, 0) scale(0.9);
}
.testimonial-carousel .carousel-item.story-center {
  z-index: 2;
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}
.testimonial-carousel .carousel-item.story-right {
  z-index: 1;
  transform: translate3d(55%, 0, 0) scale(0.9);
}
.testimonial-carousel .carousel-item.story-wrapping {
  z-index: 0;
}
.testimonial-carousel .carousel-item.story-no-transition {
  transition: none;
}
.testimonial-carousel .carousel-item:not(.story-center) .active-story {
  border-color: rgba(211, 165, 116, 0.38);
  box-shadow: inset 0 0 0 5px rgba(211, 165, 116, 0.035),
    0 18px 34px rgba(0, 0, 0, 0.25);
}
.testimonial-stage {
  width: min(610px, calc(100% - 120px));
  margin: 0 auto;
  padding: 0.75rem 0 1rem;
}
.testimonial-stage .testimonial-card {
  min-height: 322px;
  transform: scale(0.86);
  transform-origin: center;
  opacity: 0.42;
  filter: saturate(0.72);
}
.testimonial-stage .testimonial-card.active-story {
  border-color: rgba(239, 199, 116, 0.88);
  transform: scale(1);
  opacity: 1;
  filter: none;
  box-shadow: inset 0 0 0 5px rgba(211, 165, 116, 0.06),
    0 25px 46px rgba(0, 0, 0, 0.38);
}
.testimonial-stage .testimonial-card:hover {
  transform: scale(1);
}
.testimonial-stage .side-story blockquote {
  font-size: 1.17rem;
}
.testimonial-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(232, 189, 113, 0.78);
  border-radius: 50%;
  background: #211307;
  color: #efc774;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-control::before {
  position: relative;
  top: 6px;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}
.testimonial-prev::before {
  transform: translateX(2px) rotate(-135deg);
}
.testimonial-next::before {
  transform: translateX(-2px) rotate(45deg);
}
.testimonial-control:hover {
  background: #9d6425;
  color: #fff1d3;
  transform: translateY(-50%) scale(1.08);
}
.testimonial-prev {
  left: 1.1rem;
}
.testimonial-next {
  right: 1.1rem;
}
.location-map {
  padding: 0;
  background: #13100b;
  border-top: 1px solid rgba(222, 174, 96, 0.16);
  border-bottom: 1px solid rgba(222, 174, 96, 0.16);
}
.map-shell {
  position: relative;
  overflow: hidden;
  height: 390px;
  background: #0c0a08;
}
.map-shell::after {
  position: absolute;
  z-index: 1;
  inset: 14px;
  content: "";
  border: 1px solid rgba(222, 174, 96, 0.18);
  pointer-events: none;
}
.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1) contrast(0.86) brightness(0.76);
  transition: filter 0.45s ease, transform 0.7s ease;
}
@media (max-width: 767.98px) {
  .map-shell {
    height: 300px;
  }
  .map-shell::after {
    inset: 8px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-carousel .carousel-item:not(.story-center) {
    opacity: 0;
    visibility: hidden;
  }
  .testimonial-stage {
    display: block;
    width: auto;
    margin: 0 2.8rem;
  }
  .testimonial-stage .side-story {
    display: none;
  }
  .testimonial-stage .testimonial-card.active-story {
    min-height: 350px;
  }
  .testimonial-control {
    width: 36px;
    height: 36px;
  }
  .testimonial-prev {
    left: 0;
  }
  .testimonial-next {
    right: 0;
  }
}
.footer {
  padding: 84px 0 0;
  background: #13100b;
  color: #d0c0a5;
}
.footer-main {
  padding-bottom: 76px;
}
.footer-brand {
  display: inline-block;
}
.footer-brand img {
  display: block;
  width: min(200px, 100%);
  height: auto;
}
.footer-intro {
  max-width: 320px;
  margin: 1.7rem 0 0;
  color: #c7baa4;
  font-size: 0.86rem;
  line-height: 1.75;
}
.footer h4 {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 0.55rem;
  color: #f0dfbd;
  font: 600 1.55rem "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.03em;
}
.footer h4::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 27px;
  height: 2px;
  content: "";
  background: #d4a358;
}
.footer-links {
  display: grid;
  gap: 0.58rem;
}
.footer-links a,
.footer-contact a {
  color: #dcc8a6;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #f1ca83;
}
.footer-contact h4:not(:first-child) {
  margin-top: 2.15rem;
}
.footer-contact p {
  margin: 0;
  color: #dcc8a6;
  font-size: 0.84rem;
  line-height: 1.65;
}
.footer-address {
  padding-right: 1.25rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(222, 174, 96, 0.16);
  color: #998e7b;
  font-size: 0.72rem;
}
.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.footer-bottom a {
  color: #afa38d;
}
@media (max-width: 767.98px) {
  .footer {
    padding-top: 64px;
  }
  .footer-main {
    padding-bottom: 50px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background: #13100b;
}
.social-rail {
  position: fixed;
  z-index: 1045;
  top: 108px;
  left: 0px;
  display: grid;
  gap: 9px;
}
.social-rail::before {
  width: 1px;
  height: 28px;
  margin: 0 auto 3px;
  content: "";
  background: linear-gradient(transparent, #c8954f);
}
.social-rail a {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(222, 174, 96, 0.58);
  border-radius: 50%;
  background: rgba(19, 13, 8, 0.82);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.24);
  animation: socialEnter 0.55s both;
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}
.social-rail a:nth-of-type(1) {
  animation-delay: 0.08s;
}
.social-rail a:nth-of-type(2) {
  animation-delay: 0.16s;
}
.social-rail a:nth-of-type(3) {
  animation-delay: 0.24s;
}
.social-rail a:nth-of-type(4) {
  animation-delay: 0.32s;
}
.social-rail svg {
  width: 17px;
  height: 17px;
  fill: #e4be7a;
  stroke: #e4be7a;
  stroke-width: 1.7;
  transition: fill 0.25s ease, stroke 0.25s ease, transform 0.25s ease;
}
.social-instagram svg {
  fill: none;
}
.social-instagram .instagram-dot {
  fill: #e4be7a;
  stroke: none;
}
.social-youtube .youtube-play {
  fill: #e4be7a;
  stroke: none;
}
.social-whatsapp .whatsapp-phone {
  fill: #e4be7a;
  stroke: none;
}
.social-rail a:hover {
  border-color: #f1ca83;
  background: #9d6425;
  transform: translateX(5px) scale(1.08);
}
.social-rail a:hover svg {
  fill: #fff1d5;
  stroke: #fff1d5;
  transform: scale(1.08);
}
.social-rail a:hover .instagram-dot,
.social-rail a:hover .youtube-play,
.social-rail a:hover .whatsapp-phone {
  fill: #fff1d5;
}
.social-instagram svg,
.social-youtube svg,
.social-whatsapp svg,
.social-rail a:hover.social-instagram svg,
.social-rail a:hover.social-youtube svg,
.social-rail a:hover.social-whatsapp svg {
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-instagram .instagram-dot,
.social-youtube .youtube-play,
.social-whatsapp .whatsapp-phone {
  fill: #e4be7a !important;
  stroke: none !important;
}
.social-rail a:hover.social-instagram .instagram-dot,
.social-rail a:hover.social-youtube .youtube-play,
.social-rail a:hover.social-whatsapp .whatsapp-phone {
  fill: #fff1d5 !important;
}
@keyframes socialEnter {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 767.98px) {
  .social-rail {
    top: 79px;
    left: 12px;
    gap: 6px;
  }
  .social-rail::before {
    height: 14px;
  }
  .social-rail a {
    width: 31px;
    height: 31px;
  }
  .social-rail svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 991.98px) {
  .social-rail {
    display: none;
  }
  .luxury-reveal.reveal-left,
  .luxury-reveal.reveal-right {
    transform: translate3d(0, 32px, 0);
  }
  .luxury-reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }
}
.footer-social {
  display: flex;
  gap: 0.65rem;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(222, 174, 96, 0.55);
  border-radius: 50%;
  color: #e7be77;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: #e7be77;
  stroke: #e7be77;
  stroke-width: 1.7;
}
.footer-social .social-instagram svg,
.footer-social .social-youtube svg,
.footer-social .social-whatsapp svg {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social .instagram-dot,
.footer-social .youtube-play,
.footer-social .whatsapp-phone {
  fill: #e7be77;
  stroke: none;
}
.footer-social a:hover {
  background: #9d6425;
  color: #fff1d5;
  transform: translateY(-3px);
}
.footer-social a:hover svg {
  fill: #fff1d5;
  stroke: #fff1d5;
}
.footer-social a:hover .instagram-dot,
.footer-social a:hover .youtube-play,
.footer-social a:hover .whatsapp-phone {
  fill: #fff1d5;
}
.footer-contact-links {
  margin-top: 1rem !important;
}
.footer-venue-cta {
  margin-top: 1.5rem;
  font-size: 0.64rem !important;
}
.footer-social-mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .footer-social-mobile {
    display: block;
    margin-top: 2.1rem;
  }
}
main > .section {
  background: #13100b;
}
main > .packages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
      90deg,
      rgba(8, 6, 4, 0.97),
      rgba(18, 11, 6, 0.88),
      rgba(8, 6, 4, 0.97)
    ),
    url("assets/images/84.png") center/cover no-repeat;
}
main > .packages::before {
  position: absolute;
  z-index: 0;
  inset: 15% 8%;
  content: "";
  border: 1px solid rgba(222, 174, 96, 0.2);
  box-shadow: 0 0 90px rgba(186, 126, 48, 0.1) inset;
}
main > .packages > .container {
  position: relative;
  z-index: 1;
}
main > .packages h2 {
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.58);
}
.hero-control {
  top: auto;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  transform: none;
}
.hero-control:hover {
  transform: scale(1.07);
}
.hero-control-prev {
  left: auto;
  right: 6.15rem;
}
.hero-control-next {
  right: 2rem;
}
.hero-control-prev::after {
  display: none;
}
.hero-control span {
  top: 0;
  display: block;
  line-height: 1;
  transform: translateY(-6px);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero h1 {
    font-size: clamp(3rem, 5.8vw, 4rem);
  }
  .about h2,
  .heading h2,
  .packages h2 {
    font-size: clamp(2.15rem, 3vw, 3rem);
  }
}
@media (max-width: 767.98px) {
  .hero-control {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 2.9rem);
    line-height: 0.98;
  }
  .about h2,
  .heading h2,
  .packages h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
    line-height: 1.05;
  }
  .section-subtitle {
    font-size: 1.15rem !important;
  }
  main > .packages::before {
    inset: 20px 12px;
  }
  main > .packages > .container {
    padding-right: 32px;
    padding-left: 32px;
  }
  main > .packages h2,
  main > .packages p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 575.98px) {
  .brand-logo img {
    width: 178px;
  }
  .footer-logo img {
    width: 235px;
  }
}
.gallery-frame {
  position: relative;
  isolation: isolate;
  overflow: visible;
  aspect-ratio: 1632/1020;
  padding:8.5% 10.4% 10.4%;
  border: 0;
  background: none;
  box-shadow:none;
}
.gallery-frame::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  background: url("assets/frame/showcase.png") center/100% 100% no-repeat;
  pointer-events: none;
}
.gallery-frame .carousel-inner {
  height: 100%;
  border: 0;
  box-shadow: none;
}
.gallery-frame .carousel-item {
  height: 100%;
}
.gallery-frame img {
  display: block;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.gallery-frame .carousel-control-prev,
.gallery-frame .carousel-control-next {
  z-index: 5;
}
.gallery-frame .carousel-control-prev {
  left: 11.5%;
}
.gallery-frame .carousel-control-next {
  right: 11.5%;
}
@media (max-width: 767.98px) {
  .gallery-frame {
    padding:9.5% 10.4% 10.4%;
  }
  .gallery-frame::before {
    inset: 0;
  }
  .gallery-frame .carousel-control-prev,
  .gallery-frame .carousel-control-next {
    width: 34px;
    height: 34px;
  }
  .gallery-frame .carousel-control-prev {
    left: 10.8%;
  }
  .gallery-frame .carousel-control-next {
    right: 10.8%;
  }
  .gallery-indicators {
    bottom: -42px;
  }
  .gallery-indicators [data-bs-target] {
    width: 34px;
  }
}
.about .kicker,
.heading h2,
.inner-section h2,
.hall-moments h2,
.inner-cta h2,
.hall-copy h2,
.venue-page-cta h2,
.luxury-inner-page section:not(.inner-hero) h2,
.venue-page section:not(.inner-hero) h2,
.event-section-heading h2,
.imperial-detail-heading h2,
.contact-enquiry-aside h2,
.contact-location-copy h2 {
  color: #d3a574 !important;
  font-size: 2.8rem !important;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}
.about h2,
.heading .section-subtitle,
.hall-subtitle,
.inner-section .section-subtitle,
.event-section-heading .section-subtitle {
  color: #e2bd91 !important;
  font: 600 2rem/1.15 "Cormorant Garamond", Georgia, serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about .kicker,
  .heading h2,
  .inner-section h2,
  .hall-moments h2,
  .inner-cta h2,
  .hall-copy h2,
  .venue-page-cta h2,
  .luxury-inner-page section:not(.inner-hero) h2,
  .venue-page section:not(.inner-hero) h2,
  .event-section-heading h2,
  .imperial-detail-heading h2,
  .contact-enquiry-aside h2,
  .contact-location-copy h2 {
    font-size: 2.35rem !important;
    line-height: 1.08;
  }
  .about h2,
  .heading .section-subtitle,
  .hall-subtitle,
  .inner-section .section-subtitle,
  .event-section-heading .section-subtitle {
    font-size: 1.65rem !important;
    line-height: 1.16;
  }
}
@media (max-width: 767.98px) {
  .about .kicker,
  .heading h2,
  .inner-section h2,
  .hall-moments h2,
  .inner-cta h2,
  .hall-copy h2,
  .venue-page-cta h2,
  .luxury-inner-page section:not(.inner-hero) h2,
  .venue-page section:not(.inner-hero) h2,
  .event-section-heading h2,
  .imperial-detail-heading h2,
  .contact-enquiry-aside h2,
  .contact-location-copy h2 {
    font-size: 2rem !important;
    line-height: 1.1;
  }
  .about h2,
  .heading .section-subtitle,
  .hall-subtitle,
  .inner-section .section-subtitle,
  .event-section-heading .section-subtitle {
    font-size: 1.35rem !important;
    line-height: 1.2;
  }
}
.about .kicker,
.luxury-inner-page section:not(.inner-hero) .kicker,
.venue-page section:not(.inner-hero):not(.hall-detail) .kicker {
  color: #d3a574 !important;
  font-size: 2.8rem !important;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}
.about .kicker + h2,
.luxury-inner-page section:not(.inner-hero) .kicker + h2,
.venue-page section:not(.inner-hero):not(.hall-detail) .kicker + h2 {
  color: #e2bd91 !important;
  font: 600 2rem/1.15 "Cormorant Garamond", Georgia, serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about .kicker,
  .luxury-inner-page section:not(.inner-hero) .kicker,
  .venue-page section:not(.inner-hero):not(.hall-detail) .kicker {
    font-size: 2.35rem !important;
    line-height: 1.08;
  }
  .about .kicker + h2,
  .luxury-inner-page section:not(.inner-hero) .kicker + h2,
  .venue-page section:not(.inner-hero):not(.hall-detail) .kicker + h2 {
    font-size: 1.65rem !important;
    line-height: 1.16;
  }
}
@media (max-width: 767.98px) {
  .about .kicker,
  .luxury-inner-page section:not(.inner-hero) .kicker,
  .venue-page section:not(.inner-hero):not(.hall-detail) .kicker {
    font-size: 2rem !important;
    line-height: 1.1;
  }
  .about .kicker + h2,
  .luxury-inner-page section:not(.inner-hero) .kicker + h2,
  .venue-page section:not(.inner-hero):not(.hall-detail) .kicker + h2 {
    font-size: 1.35rem !important;
    line-height: 1.2;
  }
}
.venue-page .hall-detail .kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(222, 174, 96, 0.72);
  color: #f0cf92 !important;
  font: 700 0.74rem/1 Montserrat, Arial, sans-serif !important;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.venue-page .hall-detail .kicker::before {
  margin-right: 0.65rem;
  content: "◇";
  color: #e7be77;
  font-size: 0.78rem;
}
.venue-page .hall-copy h2 {
  margin: 0.1rem 0 1.1rem;
  color: #d3a574 !important;
  font-size: clamp(2.35rem, 3.2vw, 2.6rem) !important;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}



h2.com-head {
    text-align: center;
    margin-bottom: 50px;
}



.com-text {
    text-align: center;
}

body .venue-page .com-text h2 {
    font-size: 33px !important;
    font\: ;
    margin-bottom: 0;
}

.com-expe {
    text-align: center;
    margin-top: 52px;
}

.com-expe h4 {
    text-transform: uppercase;
    font-size: 38px;
}

.combined-sec p {
    color: #d3a574;
    font-size: 21px;
}


.venue-page .hall-subtitle {
  margin: -0.25rem 0 1rem;
  color: #e2bd91 !important;
  font: 600 clamp(1.35rem, 2vw, 1.6rem) "Cormorant Garamond", Georgia, serif !important;
  letter-spacing: 0.04em;
  text-transform: none;
}
@media (max-width: 575.98px) {
  .venue-page .hall-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem) !important;
    line-height: 1.05;
  }
  .venue-page .hall-subtitle {
    font-size: 1.35rem !important;
  }
}
.home .packages .kicker,
main > .packages .kicker {
  color: #d3a574 !important;
  font-size: 2.8rem !important;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home .packages .kicker + h2,
main > .packages .kicker + h2 {
  color: #e2bd91 !important;
  font: 600 2rem/1.15 "Cormorant Garamond", Georgia, serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home .packages .kicker,
  main > .packages .kicker {
    font-size: 2.35rem !important;
    line-height: 1.08;
  }
  .home .packages .kicker + h2,
  main > .packages .kicker + h2 {
    font-size: 1.65rem !important;
    line-height: 1.16;
  }
}
@media (max-width: 767.98px) {
    .com-expe h4 {font-size: 24px;}
    .combined-sec p {
    font-size: 18px;
}
  .home .packages .kicker,
  main > .packages .kicker {
    font-size: 2rem !important;
    line-height: 1.1;
  }
  .home .packages .kicker + h2,
  main > .packages .kicker + h2 {
    font-size: 1.35rem !important;
    line-height: 1.2;
  }
  .grand-hall-page > .hall-moments {
    padding-top: 1.25rem;
  }
}
