* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: default;
}
a {
  text-decoration: none;
}
:focus,
:active {
  box-shadow: none !important;
}
:root {
  --ink: #0a0d0b;
  --ink-2: #10160f;
  --emerald: #0e2a1f;
  --emerald-deep: #071510;
  --gold: #c9a24b;
  --gold-light: #ecd48f;
  --gold-dim: #8a723a;
  --ivory: #f6f2e8;
  --ivory-dim: #cdc6b4;
  --wine: #5c2330;
  --line: rgba(246, 242, 232, 0.14);
  --glass-bg: rgba(11, 15, 12, 0.35);
  --glass-border: rgba(246, 242, 232, 0.18);
  --shadow-lux: 0 24px 70px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --header-h: 92px;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 10px;
}

/* ----- GRAIN ----- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----- PRELOADER ----- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s var(--ease);
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-mark {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  letter-spacing: 5px;
  color: var(--gold-light);
  position: relative;
}
.preloader-mark span {
  display: inline-block;
  animation: preloadPulse 1.8s ease-in-out infinite alternate;
}
@keyframes preloadPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(246, 242, 232, 0.14);
  position: relative;
  overflow: hidden;
}
.preloader-bar::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloadSweep 1.2s ease-in-out infinite;
}
@keyframes preloadSweep {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

/* ----- CUSTOM CURSOR ----- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99997;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-dim);
  transition:
    width 0.25s var(--ease),
    height 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.cursor-ring.grow {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 75, 0.12);
  border-color: var(--gold-light);
}
@media (hover: none), (max-width: 991.98px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ----- HEADER (desktop) ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease),
    height 0.35s var(--ease);
}
.site-header.scrolled {
  height: 78px;
  background: rgba(246, 242, 232, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}
.brand-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo-img {
  width: 65px;
  height: 65px;
  padding: 5px;
  background: #ffffff;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  color: var(--ivory);
  white-space: nowrap;
  transition: color 0.5s var(--ease);
}
.brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  transition: color 0.5s var(--ease);
}
.site-header.scrolled .brand-name {
  color: var(--ink);
}
.site-header.scrolled .brand-tagline {
  color: var(--gold-dim);
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link-item {
  position: relative;
}
.nav-link-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--ivory);
  padding: 10px 4px;
  position: relative;
  transition: color 0.4s var(--ease);
  white-space: nowrap;
}
.nav-link-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link-item > a:hover::after,
.nav-link-item.show-menu > a::after {
  width: 100%;
}
.nav-link-item > a:hover,
.nav-link-item.show-menu > a {
  color: var(--gold-light);
}
.site-header.scrolled .nav-link-item > a {
  color: var(--ink-2);
}
.site-header.scrolled .nav-link-item > a:hover,
.site-header.scrolled .nav-link-item.show-menu > a {
  color: var(--gold-dim);
}
.nav-caret {
  font-size: 0.6rem;
  transition: transform 0.35s var(--ease);
}
.nav-link-item.show-menu .nav-caret {
  transform: rotate(180deg);
}

.actions-block {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 20px);
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ivory);
  background: transparent;
  position: relative;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  font-size: 1rem;
}
.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.site-header.scrolled .icon-btn {
  color: var(--ink-2);
  border-color: rgba(0, 0, 0, 0.12);
}
.site-header.scrolled .icon-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
}
.wish-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--wine);
  color: var(--ivory);
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
}
.btn-book-now {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 11px 24px;
  border-radius: 40px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dim)
  );
  color: var(--ink);
  border: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(201, 162, 75, 0.35);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 75, 0.5);
  color: var(--ink);
}

.login-wrap {
  position: relative;
}
.login-dropdown {
  position: absolute;
  top: 56px;
  right: 0;
  width: 230px;
  background: rgba(10, 13, 11, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-lux);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
  z-index: 50;
}
.login-wrap.open .login-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.login-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--ivory);
  font-size: 0.85rem;
  transition:
    background 0.25s,
    color 0.25s;
}
.login-dropdown a:hover {
  background: rgba(201, 162, 75, 0.14);
  color: var(--gold-light);
}
.login-dropdown hr {
  border-color: var(--line);
  margin: 6px 0;
}

/* ----- MEGA & DROPDOWN ----- */
.mega-menu,
.simple-dropdown {
  position: fixed;
  top: var(--header-h);
  left: 50%;
  transform: translate(-50%, -12px);
  background: rgba(9, 12, 10, 0.96);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 0 0 22px 22px;
  box-shadow: var(--shadow-lux);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
  z-index: 40;
  pointer-events: none;
}
.site-header.scrolled ~ .mega-menu {
  top: 78px;
}
.nav-link-item.show-menu .mega-menu,
.nav-link-item.show-menu .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
/* fix: gallery dropdown appears below offers, not beside */
.nav-link-item:nth-child(5) .simple-dropdown {
  left: 50%;
  transform: translate(-50%, -12px);
}
.nav-link-item:nth-child(5).show-menu .simple-dropdown {
  transform: translate(-50%, 0);
}

.mega-menu {
  width: min(940px, 92vw);
  padding: 36px;
}
.mega-col-title {
  font-size: 0.66rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.mega-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-link-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 6px;
  color: var(--ivory-dim);
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(246, 242, 232, 0.08);
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.mega-link-list li:last-child a {
  border-bottom: none;
}
.mega-link-list li a:hover {
  color: var(--gold-light);
  padding-left: 12px;
}
.mega-link-list li a i {
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.76rem;
}
.mega-link-list li a:hover i {
  opacity: 1;
}

/* ----- MEGA BANNER WITH IMAGE ----- */
.mega-banner {
  position: relative;
  height: 100%;
  min-height: 230px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.mega-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.mega-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(201, 162, 75, 0.3),
      transparent 55%
    ),
    repeating-linear-gradient(
      115deg,
      rgba(246, 242, 232, 0.05) 0 2px,
      transparent 2px 26px
    );
}
.mega-banner-price {
  position: relative;
  z-index: 2;
  margin: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  width: calc(100% - 32px);
}
.mega-banner-price .lbl {
  font-size: 0.64rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.mega-banner-price .amt {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--gold-light);
  font-weight: 700;
}
.mega-banner-price .amt span {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  font-family: var(--font-sans);
  font-weight: 400;
}

.simple-dropdown {
  width: 265px;
  padding: 12px;
}
.simple-dropdown .mega-link-list li a {
  font-size: 0.88rem;
  padding: 11px 12px;
  border-radius: 9px;
  border-bottom: none;
}
.simple-dropdown .mega-link-list li a:hover {
  background: rgba(201, 162, 75, 0.1);
  padding-left: 16px;
}

/* ----- SIDE RAIL (vertical text) ----- */
.side-rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.6s var(--ease);
}
.side-rail .rail-text {
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ivory-dim);
  white-space: nowrap;
  font-weight: 300;
  text-orientation: mixed;
}
.side-rail .rail-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}
@media (max-width: 991.98px) {
  .side-rail {
    display: none;
  }
}

/* ----- HERO ----- */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
}
.hero-media-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.hero-media-layer.active {
  opacity: 1;
}
.hero-media-layer video,
.hero-media-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.14) translate(-1.5%, -1%);
  }
}

.hero-fallback-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(201, 162, 75, 0.24),
      transparent 45%
    ),
    radial-gradient(circle at 82% 78%, rgba(92, 35, 48, 0.32), transparent 50%),
    conic-gradient(
      from 210deg at 30% 40%,
      var(--emerald-deep),
      var(--ink) 40%,
      var(--emerald) 75%,
      var(--ink) 100%
    );
}
.hero-fallback-bg.active {
  opacity: 1;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(246, 242, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 232, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.hero-grid-pattern.active {
  opacity: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0;
  will-change: transform;
  transition:
    opacity 0.8s var(--ease),
    transform 0.2s linear;
}
.floating-shape.active {
  opacity: 0.55;
}
.fs1 {
  width: 180px;
  height: 180px;
  top: 12%;
  left: 8%;
  border: 1px solid var(--gold-dim);
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.18),
    transparent 70%
  );
  animation: floaty 9s ease-in-out infinite;
}
.fs2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 16%;
  border: 1px solid #7d9484;
  background: radial-gradient(
    circle,
    rgba(125, 148, 132, 0.15),
    transparent 70%
  );
  animation: floaty 7s ease-in-out infinite reverse;
}
.fs3 {
  width: 90px;
  height: 90px;
  top: 22%;
  right: 14%;
  border: 1px dashed var(--gold);
  animation: floaty 11s ease-in-out infinite;
}
.fs4 {
  width: 230px;
  height: 230px;
  bottom: 8%;
  right: 6%;
  border: 1px solid rgba(246, 242, 232, 0.15);
  background: radial-gradient(circle, rgba(92, 35, 48, 0.14), transparent 70%);
  animation: floaty 13s ease-in-out infinite reverse;
}
.fs5 {
  width: 14px;
  height: 14px;
  top: 40%;
  left: 44%;
  background: var(--gold-light);
  box-shadow: 0 0 20px var(--gold-light);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-26px) translateX(12px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(7, 9, 8, 0.6) 0%,
      rgba(7, 9, 8, 0.38) 40%,
      rgba(7, 9, 8, 0.8) 100%
    ),
    linear-gradient(100deg, rgba(7, 9, 8, 0.78) 10%, rgba(7, 9, 8, 0.15) 55%);
}

.media-mode-switch {
  position: absolute;
  z-index: 6;
  bottom: 118px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(10, 13, 11, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 5px;
}
.media-mode-switch button {
  border: none;
  background: transparent;
  color: var(--ivory-dim);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
}
.media-mode-switch button.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .media-mode-switch {
    bottom: auto;
    top: 88px;
  }
}

.hero-content-row {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) clamp(18px, 4vw, 60px) 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 8px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(24px);
}
.hero-badge .dot-ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.2vw, 4.7rem);
  line-height: 1.04;
  margin: 22px 0 18px;
  color: var(--ivory);
}
.hero-heading .line {
  display: block;
  overflow: hidden;
}
.hero-heading .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}
.hero-heading em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  max-width: 460px;
  color: var(--ivory-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(24px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
}
.feat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  color: var(--ivory);
}
.feat-pill i {
  color: var(--gold);
  font-size: 0.95rem;
}
.feat-pill strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
}
.btn-primary-lux {
  padding: 16px 32px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold) 65%,
    var(--gold-dim)
  );
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.35);
  transition: box-shadow 0.35s var(--ease);
  position: relative;
}
.btn-primary-lux:hover {
  box-shadow: 0 16px 36px rgba(201, 162, 75, 0.5);
  color: var(--ink);
}
.btn-outline-lux {
  padding: 16px 30px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(6px);
  transition:
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}
.btn-outline-lux:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.magnetic-btn {
  will-change: transform;
}

.hero-right-col {
  position: relative;
}
.booking-card-wrap {
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
}
.badge-float {
  position: absolute;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-lux);
  backdrop-filter: blur(10px);
  z-index: 5;
  animation: floaty 6s ease-in-out infinite;
}
.badge-float-left {
  top: -18px;
  left: -18px;
  background: rgba(201, 162, 75, 0.92);
  color: var(--ink);
}
.badge-float-right {
  bottom: 22px;
  right: -18px;
  background: rgba(14, 42, 31, 0.92);
  color: var(--ivory);
  border: 1px solid var(--gold-dim);
  animation-delay: 1.5s;
}

.booking-card {
  position: relative;
  background: rgba(246, 242, 232, 0.09);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(246, 242, 232, 0.22);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lux);
}
.booking-card h6 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.booking-card .sub {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  margin-bottom: 20px;
}

/* ----- SEARCH TABS ----- */
.search-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.search-tabs .tab-btn {
  background: transparent;
  border: none;
  color: var(--ivory-dim);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.search-tabs .tab-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 600;
}
.search-tabs .tab-btn:hover:not(.active) {
  color: var(--ivory);
}

.booking-field {
  background: rgba(10, 13, 11, 0.35);
  border: 1px solid rgba(246, 242, 232, 0.14);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.booking-field:focus-within {
  border-color: var(--gold);
}
.booking-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.booking-field .field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-field i {
  color: var(--gold);
  font-size: 0.9rem;
}
.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  color: var(--ivory);
  font-size: 0.86rem;
  width: 100%;
  outline: none;
}
.booking-field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
}
.booking-field select option {
  background: var(--ink);
  color: var(--ivory);
}
.two-col-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-search-avail {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  margin-top: 6px;
  transition: filter 0.3s var(--ease);
  cursor: pointer;
}
.btn-search-avail:hover {
  filter: brightness(1.08);
  color: var(--ink);
}

/* ----- SEARCH RESULTS (fixed height, no box jump) ----- */
.search-results {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  min-height: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s var(--ease);
}
.search-results .result-placeholder {
  color: var(--ivory-dim);
  font-size: 0.8rem;
  text-align: center;
  padding: 6px 0;
}
.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 13, 11, 0.45);
  backdrop-filter: blur(6px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px 16px;
  transition: all 0.3s var(--ease);
  animation: fadeSlideUp 0.4s var(--ease);
  flex-wrap: wrap;
  gap: 8px;
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.result-item:hover {
  border-color: var(--gold);
  background: rgba(10, 13, 11, 0.7);
}
.result-item .room-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 120px;
}
.result-item .room-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
}
.result-item .room-detail {
  font-size: 0.75rem;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.result-item .room-detail i {
  color: var(--gold);
  font-size: 0.7rem;
}
.result-item .room-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}
.result-item .btn-select-room {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.result-item .btn-select-room:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.35);
}
.result-item .right-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.result-item .room-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 2px 10px;
  border-radius: 20px;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  position: relative;
  flex-wrap: wrap;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 2;
  min-width: 40px;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  color: var(--ivory-dim);
  font-size: 0.85rem;
  background: var(--ink);
  transition: all 0.4s var(--ease);
}
.step-item.active .step-circle {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}
.step-item span {
  font-size: 0.58rem;
  letter-spacing: 0.4px;
  color: var(--ivory-dim);
  text-align: center;
}
.step-item.active span {
  color: var(--gold-light);
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.mouse-icon {
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--ivory-dim);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.mouse-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold-light);
  animation: scrollwheel 1.8s ease-in-out infinite;
}
@keyframes scrollwheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 0;
  }
}
.scroll-indicator small {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ----- OVERLAP STRIP ----- */
.overlap-strip {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: -70px auto 0;
  padding: 0 clamp(16px, 3vw, 40px);
}
.overlap-card {
  background: rgba(14, 19, 16, 0.85);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  opacity: 0;
  transform: translateY(34px);
  transition:
    transform 0.6s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    opacity 0.6s var(--ease);
}
.overlap-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.overlap-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(14, 19, 16, 0.97);
}
.overlap-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 1.25rem;
  transition: all 0.4s var(--ease);
}
.overlap-card:hover .overlap-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  transform: rotate(360deg) scale(1.06);
  border-color: transparent;
}
.overlap-text h6 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 3px;
}
.overlap-text p {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  margin: 0;
  line-height: 1.4;
}

/* ----- MARQUEE ----- */
.marquee-strip {
  position: relative;
  z-index: 2;
  background: var(--emerald-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-top: 70px;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory-dim);
  padding: 0 34px;
  white-space: nowrap;
}
.marquee-track span i {
  color: var(--gold);
  font-size: 0.8rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ----- CONCIERGE / BACK TO TOP ----- */
.concierge-btn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.4);
  border: none;
  animation: pulse-ring 2.6s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    box-shadow:
      0 12px 30px rgba(201, 162, 75, 0.4),
      0 0 0 0 rgba(201, 162, 75, 0.35);
  }
  50% {
    box-shadow:
      0 12px 30px rgba(201, 162, 75, 0.4),
      0 0 0 12px rgba(201, 162, 75, 0);
  }
}
.back-top-btn {
  position: fixed;
  right: 26px;
  bottom: 96px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 19, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.back-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ----- MOBILE OFF CANVAS (fixed) ----- */
.offcanvas-lux {
  background: var(--ink);
  color: var(--ivory);
  width: min(400px, 92vw);
  border-left: 1px solid var(--line);
}
.offcanvas-lux .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}
.offcanvas-lux .accordion-button {
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  box-shadow: none;
  padding: 18px 4px;
}
.offcanvas-lux .accordion-button i {
  font-size: 12px;
}
.offcanvas-lux .accordion-button::after {
  filter: invert(1) brightness(2);
}
.offcanvas-lux .accordion-button:not(.collapsed) {
  color: var(--gold-light);
}
.offcanvas-lux .accordion-body {
  padding: 0 4px 14px 12px;
}
.offcanvas-lux .accordion-body a {
  display: block;
  padding: 10px 0;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(246, 242, 232, 0.08);
}
.offcanvas-lux .accordion-body a:hover {
  color: var(--gold-light);
}
.offcanvas-direct-link {
  display: block;
  padding: 18px 4px;
  color: var(--ivory);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.offcanvas-direct-link i {
  font-size: 12px;
}
.mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.mobile-actions .icon-btn {
  color: var(--ivory);
  border-color: var(--line);
}

.mobile-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: transparent;
  transition:
    background 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.mobile-topbar.scrolled {
  background: rgba(246, 242, 232, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.mobile-topbar.scrolled .brand-name {
  color: var(--ink);
}
.mobile-topbar.scrolled .brand-tagline {
  color: var(--gold-dim);
}
.offcanvas-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.mobile-topbar.scrolled .offcanvas-toggle-btn {
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.15);
}

/* ----- RESPONSIVE FIXES (mobile) ----- */
@media (max-width: 991.98px) {
  .site-header {
    display: none;
  }
  .mobile-topbar {
    display: flex;
  }
  .hero-content-row {
    padding-top: calc(76px + 60px);
    padding-left: 16px;
    padding-right: 16px;
  }
  :root {
    --header-h: 76px;
  }
  .overlap-strip {
    margin-top: -30px;
    padding: 0 12px;
  }
  .overlap-card {
    flex-direction: column;
    text-align: center;
    padding: 18px 12px;
  }
  .concierge-btn {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
    font-size: 1.2rem;
  }
  .back-top-btn {
    right: 16px;
    bottom: 78px;
  }
  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .hero-stats {
    gap: 8px;
  }
  .feat-pill {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .booking-card {
    padding: 18px 14px;
  }
  .booking-card h6 {
    font-size: 1.2rem;
  }
  .two-col-fields {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .search-tabs .tab-btn {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
  .result-item {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
  }
  .result-item .right-block {
    justify-content: space-between;
    width: 100%;
  }
  .result-item .room-price {
    font-size: 1rem;
  }
  .badge-float-left {
    top: -12px;
    left: -8px;
    font-size: 0.6rem;
    padding: 6px 10px;
  }
  .badge-float-right {
    bottom: 12px;
    right: -8px;
    font-size: 0.6rem;
    padding: 6px 10px;
  }
  .booking-steps {
    gap: 4px;
  }
  .step-item span {
    font-size: 0.5rem;
  }
  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .filler-section h2 {
    font-size: 2.2rem;
  }
  .filler-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  .marquee-strip {
    margin-top: 40px;
  }
  .marquee-track span {
    font-size: 1rem;
    padding: 0 18px;
  }
  .btn-primary-lux,
  .btn-outline-lux {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  .hero-ctas {
    gap: 10px;
  }
  .hero-right-col {
    margin-top: 10px;
  }
  .booking-card-wrap {
    transform: translateY(20px) scale(0.98);
  }
  .search-results {
    min-height: 60px;
  }
  .media-mode-switch {
    bottom: auto;
    top: 82px;
    padding: 4px;
  }
  .media-mode-switch button {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .hero-content-row {
    padding-top: calc(76px + 40px);
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .brand-tagline {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  .mobile-topbar {
    height: 64px;
    padding: 0 10px;
  }
  .offcanvas-toggle-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .booking-card {
    padding: 14px 10px;
  }
  .booking-field {
    padding: 6px 10px;
    margin-bottom: 8px;
  }
  .booking-field label {
    font-size: 0.5rem;
  }
  .booking-field input,
  .booking-field select {
    font-size: 0.8rem;
  }
  .btn-search-avail {
    padding: 10px;
    font-size: 0.8rem;
  }
  .result-item .room-name {
    font-size: 0.9rem;
  }
  .result-item .room-detail {
    font-size: 0.7rem;
  }
  .result-item .btn-select-room {
    padding: 4px 12px;
    font-size: 0.7rem;
  }
  .filler-section {
    min-height: 40vh;
    padding: 20px 12px;
  }
  .filler-section h2 {
    font-size: 1.8rem;
  }
  .filler-card {
    padding: 16px 10px;
  }
  .filler-card i {
    font-size: 1.8rem;
  }
  .filler-card h5 {
    font-size: 1rem;
  }
  .filler-card p {
    font-size: 0.7rem;
  }
}
/* ============ STATS SECTION ============ */
/* ============ STATS SECTION ============ */
.stats-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0c;
}

/* ----- background gradients (direct colors) ----- */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(189, 122, 55, 0.14),
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(106, 39, 53, 0.14),
      transparent 50%
    ),
    #0a0a0c;
}

/* ----- grid pattern (direct colors) ----- */
.stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(242, 236, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 236, 224, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 25%,
    transparent 75%
  );
}

/* ----- watermark "1" (direct colors, positioned right) ----- */
.stats-watermark {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 700;
  color: rgba(242, 236, 224, 0.032);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transform: rotate(-4deg);
}
@media (max-width: 767.98px) {
  .stats-watermark {
    right: 2%;
    bottom: 4%;
    font-size: clamp(8rem, 28vw, 14rem);
  }
}

.stats-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

/* ----- heading ----- */
.stats-heading-row {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e2ac70;
  margin-bottom: 16px;
}
.stats-eyebrow::before,
.stats-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #7d4f22;
}
.stats-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  color: #f2ece0;
  margin: 0;
}
.stats-title em {
  font-style: italic;
  font-weight: 600;
  color: #e2ac70;
}

/* ----- grid: 5 across on desktop ----- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* ----- stat card (direct colors, no variables) ----- */
.stat-card {
  position: relative;
  background: rgba(242, 236, 224, 0.045);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(242, 236, 224, 0.16);
  padding: 38px 22px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition:
    transform 0.5s cubic-bezier(0.16, 0.84, 0.44, 1),
    border-color 0.5s cubic-bezier(0.16, 0.84, 0.44, 1),
    background 0.5s cubic-bezier(0.16, 0.84, 0.44, 1),
    box-shadow 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
  border-radius: 100px 100px 14px 14px;
  opacity: 0;
  transform: translateY(36px);
}
.stat-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.stat-card:nth-child(even) {
  border-radius: 14px 14px 100px 100px;
}
.stat-card:hover {
  transform: translateY(-10px);
  border-color: #bd7a37;
  background: rgba(242, 236, 224, 0.075);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}

/* top/bottom amber line */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bd7a37, transparent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.stat-card:nth-child(even)::before {
  top: auto;
  bottom: 0;
}
.stat-card:hover::before {
  opacity: 1;
}

/* icon badge */
.stat-icon-badge {
  width: 76px;
  height: 76px;
  border-radius: 100px 100px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    rgba(189, 122, 55, 0.18),
    rgba(189, 122, 55, 0.04)
  );
  border: 1px solid #7d4f22;
  color: #e2ac70;
  font-size: 1.65rem;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.stat-card:nth-child(even) .stat-icon-badge {
  border-radius: 20px 20px 100px 100px;
}
.stat-card:hover .stat-icon-badge {
  background: linear-gradient(160deg, #e2ac70, #bd7a37);
  color: #0a0a0c;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 28px rgba(189, 122, 55, 0.35);
}

/* number */
.stat-number {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 2.6vw, 2.6rem);
  line-height: 1;
  color: #f2ece0;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-number .count {
  min-width: 1ch;
}
.stat-number .suffix {
  font-size: 0.55em;
  color: #e2ac70;
  font-weight: 600;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #c9c0ac;
  font-weight: 600;
}
.stat-sub {
  font-size: 0.74rem;
  color: #c9c0ac;
  opacity: 0.75;
  line-height: 1.4;
  font-weight: 300;
  max-width: 170px;
}
.stat-divider {
  width: 34px;
  height: 1px;
  background: #7d4f22;
  margin-top: 2px;
}

/* ============================================================ */
/* ============ RESPONSIVE (FULLY FIXED) ============ */
/* ============================================================ */

/* ---- Tablet (max-width: 1199.98px) ---- */
@media (max-width: 1199.98px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .stat-card:nth-child(4),
  .stat-card:nth-child(5) {
    grid-column: span 1;
  }
  .stat-card {
    padding: 32px 18px 26px;
  }
  .stat-icon-badge {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }
  .stat-number {
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  }
}

/* ---- Small Tablet (max-width: 991.98px) ---- */
@media (max-width: 991.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .stats-heading-row {
    margin-bottom: 48px;
  }
  .stat-card {
    padding: 28px 16px 22px;
    gap: 14px;
  }
  .stat-icon-badge {
    width: 62px;
    height: 62px;
    font-size: 1.4rem;
  }
  .stat-number {
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 1.4px;
  }
  .stat-sub {
    font-size: 0.7rem;
  }
}

/* ---- Mobile (max-width: 767.98px) ---- */
@media (max-width: 767.98px) {
  .stats-section {
    padding: 70px 0 60px;
  }
  .stats-heading-row {
    margin-bottom: 36px;
  }
  .stats-title {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
  }
  .stats-eyebrow {
    font-size: 0.55rem;
    gap: 8px;
  }
  .stats-eyebrow::before,
  .stats-eyebrow::after {
    width: 20px;
  }

  /* 2x2 grid on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .stat-card {
    padding: 24px 14px 18px;
    gap: 10px;
    border-radius: 60px 60px 12px 12px;
  }
  .stat-card:nth-child(even) {
    border-radius: 12px 12px 60px 60px;
  }
  .stat-icon-badge {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
    border-radius: 60px 60px 14px 14px;
  }
  .stat-card:nth-child(even) .stat-icon-badge {
    border-radius: 14px 14px 60px 60px;
  }
  .stat-number {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 1.2px;
  }
  .stat-sub {
    display: none;
  }
  .stat-divider {
    width: 28px;
  }
  .stat-card::before {
    width: 50%;
  }
}

/* ---- Small Mobile (max-width: 480px) ---- */
@media (max-width: 480px) {
  .stats-section {
    padding: 60px 0 50px;
  }
  .stats-container {
    padding: 0 14px;
  }
  .stats-heading-row {
    margin-bottom: 30px;
  }
  .stats-title {
    font-size: clamp(1.4rem, 4vw, 1.7rem);
  }
  .stats-eyebrow {
    font-size: 0.5rem;
    gap: 6px;
    letter-spacing: 2px;
  }
  .stats-eyebrow::before,
  .stats-eyebrow::after {
    width: 16px;
  }

  .stats-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 18px 10px 14px;
    gap: 8px;
    border-radius: 40px 40px 10px 10px;
  }
  .stat-card:nth-child(even) {
    border-radius: 10px 10px 40px 40px;
  }
  .stat-card:nth-child(5) {
    max-width: 200px;
  }
  .stat-icon-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    border-radius: 40px 40px 10px 10px;
  }
  .stat-card:nth-child(even) .stat-icon-badge {
    border-radius: 10px 10px 40px 40px;
  }
  .stat-number {
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  }
  .stat-label {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }
  .stat-divider {
    width: 22px;
  }
  .stat-card::before {
    width: 40%;
    height: 1.5px;
  }
}

/* ---- Extra Small Mobile (max-width: 380px) ---- */
@media (max-width: 380px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stat-card {
    padding: 14px 8px 12px;
    gap: 6px;
    border-radius: 30px 30px 8px 8px;
  }
  .stat-card:nth-child(even) {
    border-radius: 8px 8px 30px 30px;
  }
  .stat-card:nth-child(5) {
    max-width: 100%;
    grid-column: 1 / -1;
  }
  .stat-icon-badge {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    border-radius: 30px 30px 8px 8px;
  }
  .stat-card:nth-child(even) .stat-icon-badge {
    border-radius: 8px 8px 30px 30px;
  }
  .stat-number {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .stat-label {
    font-size: 0.45rem;
    letter-spacing: 0.8px;
  }
  .stat-divider {
    width: 18px;
  }
  .stat-card::before {
    width: 30%;
  }
}

/* ---- Prevent overflow on very small screens ---- */
@media (max-width: 320px) {
  .stats-container {
    padding: 0 10px;
  }
  .stat-card {
    padding: 12px 6px 10px;
  }
  .stat-icon-badge {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .stat-number {
    font-size: 0.95rem;
  }
  .stat-label {
    font-size: 0.4rem;
    letter-spacing: 0.6px;
  }
}
/*==========================ABOUT SECTION STYLING=============================*/
.ap-about-wrap {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--ink) 0%,
    var(--ink-2) 50%,
    var(--emerald-deep) 100%
  );
  padding: 140px 0 210px;
  overflow: hidden;
}

.ap-glow-gold {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.13) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.ap-glow-wine {
  position: absolute;
  bottom: -60px;
  left: -220px;
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    rgba(92, 35, 48, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.ap-noise {
  position: absolute;
  inset: 0;
  opacity: 0.022;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.ap-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  z-index: 2;
  line-height: 0;
}
.ap-divider-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ap-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
  line-height: 0;
}
.ap-divider-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ap-container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================ */
/* ============ HEADER ============ */
/* ============================================================ */

.ap-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 84px;
}

.ap-emblem {
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ap-emblem::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.35);
}
.ap-emblem i {
  font-size: 22px;
  color: var(--gold-light);
}

.ap-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.ap-eyebrow .ap-line {
  width: 34px;
  height: 1px;
  background: var(--gold-dim);
}
.ap-eyebrow span {
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.ap-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.14;
  color: var(--ivory);
  margin-bottom: 20px;
}
.ap-title em {
  color: var(--gold-light);
  font-style: italic;
}

.ap-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ivory-dim);
  line-height: 1.75;
}

/* ============================================================ */
/* ============ MAIN GRID ============ */
/* ============================================================ */

.ap-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.72fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 78px;
}

/* ============================================================ */
/* ============ GALLERY ============ */
/* ============================================================ */

.ap-gallery {
  position: relative;
}

.ap-frame-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 168px 168px;
  gap: 20px;
}

.ap-frame {
  position: relative;
  padding: 7px;
  border: 1px solid var(--gold-dim);
  transition: border-color 0.5s var(--ease);
  will-change: transform;
}
.ap-frame:hover {
  border-color: var(--gold-light);
}

.ap-frame-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ap-frame-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.86);
  transition:
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}
.ap-frame:hover .ap-frame-photo img {
  transform: scale(1.07);
  filter: saturate(1) brightness(0.92);
}

.ap-frame-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0) 45%,
    rgba(7, 21, 16, 0.6) 100%
  );
}

/* Corner brackets */
.ap-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold-light);
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    width 0.5s var(--ease),
    height 0.5s var(--ease);
  z-index: 3;
}
.ap-frame:hover .ap-corner {
  opacity: 1;
  width: 22px;
  height: 22px;
}
.ap-c-tl {
  top: 3px;
  left: 3px;
  border-top: 1.5px solid;
  border-left: 1.5px solid;
}
.ap-c-tr {
  top: 3px;
  right: 3px;
  border-top: 1.5px solid;
  border-right: 1.5px solid;
}
.ap-c-bl {
  bottom: 3px;
  left: 3px;
  border-bottom: 1.5px solid;
  border-left: 1.5px solid;
}
.ap-c-br {
  bottom: 3px;
  right: 3px;
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
}

.ap-plaque {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 12px;
  background: var(--ink);
  border: 1px solid var(--gold-dim);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.ap-frame:hover .ap-plaque {
  background: var(--emerald);
  border-color: var(--gold-light);
}
.ap-plaque i {
  font-size: 11px;
  color: var(--gold-light);
}

.ap-f-1 {
  grid-row: 1 / 3;
}
.ap-f-2 {
  grid-row: 1 / 2;
}
.ap-f-3 {
  grid-row: 2 / 3;
}

/* ----- FLOATING BADGES (on gallery) ----- */
.ap-float-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.12),
    rgba(246, 242, 232, 0.04)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lux);
  animation: apFloat 4s ease-in-out infinite;
  pointer-events: none;
}
.ap-float-badge i {
  font-size: 18px;
  color: var(--gold-light);
}
.ap-float-badge b {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ivory);
  font-weight: 700;
  line-height: 1.1;
}
.ap-float-badge span {
  font-size: 9px;
  color: var(--ivory-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ap-float-badge-1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}
.ap-float-badge-2 {
  bottom: 12%;
  right: -10%;
  animation-delay: 1.8s;
}

@keyframes apFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.ap-gallery-caption {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ap-gallery-caption i {
  font-size: 16px;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.ap-gallery-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ivory-dim);
}

/* ============================================================ */
/* ============ MANUSCRIPT ============ */
/* ============================================================ */

.ap-manuscript {
  position: relative;
  padding: 4px 0 4px 28px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(1.95em - 1px),
    rgba(246, 242, 232, 0.05) calc(1.95em - 1px),
    rgba(246, 242, 232, 0.05) 1.95em
  );
}
.ap-manuscript::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-dim), transparent 90%);
}

.ap-manuscript p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.95em;
  color: var(--ivory-dim);
  margin-bottom: 0.1em;
  padding-bottom: 1.85em;
}
.ap-manuscript p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 600;
  color: var(--gold-light);
  float: left;
  line-height: 0.75;
  margin: 10px 9px 0 0;
}

.ap-seal {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.ap-seal-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}
.ap-seal-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 75, 0.5);
}
.ap-seal-ring i {
  font-size: 22px;
  color: var(--gold-light);
}
.ap-seal:hover .ap-seal-ring {
  transform: rotate(18deg);
  box-shadow: 0 0 22px rgba(201, 162, 75, 0.3);
}

.ap-seal-text strong {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ivory);
  font-weight: 500;
}
.ap-seal-text small {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ============================================================ */
/* ============ LEDGER (Stats) ============ */
/* ============================================================ */

.ap-ledger {
  display: flex;
  flex-direction: column;
}

.ap-ledger-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  transition: padding-left 0.45s var(--ease);
}
.ap-ledger-row:first-child {
  padding-top: 0;
}
.ap-ledger-row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--gold-light);
  transition: width 0.6s var(--ease);
}
.ap-ledger-row:hover {
  padding-left: 10px;
}
.ap-ledger-row:hover::before {
  width: 100%;
}

.ap-ledger-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 40px;
  color: var(--ivory);
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.ap-ledger-num .ap-unit {
  font-size: 18px;
  color: var(--gold-light);
}
.ap-ledger-label {
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: right;
  max-width: 110px;
}

/* ============================================================ */
/* ============ CONTACT CARD (below stats) ============ */
/* ============================================================ */

.ap-contact-card {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.06),
    rgba(246, 242, 232, 0.015)
  );
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ap-contact-card:hover {
  border-color: rgba(236, 212, 143, 0.3);
  background: rgba(246, 242, 232, 0.06);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lux);
}
.ap-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory-dim);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.3s var(--ease);
}
.ap-contact-item:hover {
  color: var(--ivory);
}
.ap-contact-item .ap-cir {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 14px;
  transition: all 0.4s var(--ease);
}
.ap-contact-item:hover .ap-cir {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: var(--emerald-deep);
  transform: scale(1.08);
}

/* ============================================================ */
/* ============ DIRECTORY ============ */
/* ============================================================ */

.ap-directory {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ap-dir-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 26px;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  transition: color 0.4s var(--ease);
}
.ap-dir-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.ap-dir-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.ap-dir-link:hover {
  color: var(--gold-light);
}
.ap-dir-link:hover .ap-dir-ring {
  transform: rotate(135deg) scale(1.3);
  border-color: var(--gold-light);
}
.ap-dir-link i {
  font-size: 12px;
}

/* ============================================================ */
/* ============ MARQUEE ============ */
/* ============================================================ */

.ap-marquee-wrap {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 26px 0;
  background: rgba(201, 162, 75, 0.03);
}
.ap-marquee-wrap marquee {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}
.ap-marquee-wrap .ap-m-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 22px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  animation: apSpin 6s linear infinite;
  vertical-align: middle;
}
@keyframes apSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================ */
/* ============ FLOATING 3D GLASS PANEL ============ */
/* ============================================================ */

.ap-float-panel {
  position: absolute;
  left: 50%;
  bottom: -50px;
  z-index: 4;
  width: min(380px, 82vw);
  padding: 26px 32px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    var(--shadow-lux),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}
.ap-float-panel .ap-fp-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold-dim);
}
.ap-float-panel .ap-fp-tl {
  top: 8px;
  left: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.ap-float-panel .ap-fp-br {
  bottom: 8px;
  right: 8px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.ap-float-panel i {
  color: var(--gold-light);
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}
.ap-float-panel p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ivory);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================ */
/* ============ RESPONSIVE ============ */
/* ============================================================ */

@media (max-width: 1080px) {
  .ap-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "gallery gallery" "manuscript ledger";
    gap: 40px;
  }
  .ap-gallery {
    grid-area: gallery;
  }
  .ap-manuscript {
    grid-area: manuscript;
  }
  .ap-ledger {
    grid-area: ledger;
  }
  .ap-float-badge-1 {
    left: 2%;
  }
  .ap-float-badge-2 {
    right: 2%;
  }
}

@media (max-width: 760px) {
  .ap-about-wrap {
    padding: 96px 0 160px;
  }
  .ap-container {
    padding: 0 20px;
  }
  .ap-header {
    margin-bottom: 50px;
  }
  .ap-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "manuscript" "ledger";
    gap: 40px;
    margin-bottom: 44px;
  }
  .ap-frame-grid {
    grid-template-rows: 130px 130px;
    gap: 14px;
  }
  .ap-plaque {
    font-size: 9px;
    padding: 6px 10px;
  }
  .ap-manuscript {
    padding-left: 20px;
  }
  .ap-manuscript p:first-of-type::first-letter {
    font-size: 40px;
  }
  .ap-ledger-num {
    font-size: 32px;
  }
  .ap-directory {
    padding: 22px 0;
  }
  .ap-dir-link {
    padding: 8px 14px;
    font-size: 11px;
  }
  .ap-dir-link:not(:last-child)::after {
    display: none;
  }
  .ap-float-panel {
    width: 88vw;
    padding: 20px 22px;
    bottom: -42px;
  }
  .ap-float-badge {
    padding: 8px 12px;
    gap: 8px;
  }
  .ap-float-badge b {
    font-size: 13px;
  }
  .ap-float-badge-1 {
    top: 4%;
    left: 0;
  }
  .ap-float-badge-2 {
    bottom: 6%;
    right: 0;
  }
}

@media (max-width: 480px) {
  .ap-float-badge {
    display: none;
  }
  .ap-contact-card {
    padding: 14px 16px;
  }
  .ap-contact-item {
    font-size: 11.5px;
  }
  .ap-contact-item .ap-cir {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
/*===========================WHY CHOOSE US SECTION STYLING============================*/

.aw-section {
  position: relative;
  background: radial-gradient(
    circle at 50% 38%,
    var(--emerald) 0%,
    var(--emerald-deep) 45%,
    var(--ink) 100%
  );
  overflow: hidden;
  padding: 120px 6vw 0;
  isolation: isolate;
}

.aw-arch-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(246, 242, 232, 0.04) 0,
      rgba(246, 242, 232, 0.04) 1px,
      transparent 1px,
      transparent 120px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(246, 242, 232, 0.04) 0,
      rgba(246, 242, 232, 0.04) 1px,
      transparent 1px,
      transparent 120px
    );
}

.aw-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.16) 0%,
    rgba(201, 162, 75, 0.05) 40%,
    transparent 70%
  );
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.aw-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  animation: awFloat linear infinite;
}

@keyframes awFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-700px) translateX(30px);
    opacity: 0;
  }
}

.aw-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}

.aw-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.aw-eyebrow::before,
.aw-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
}

.aw-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--ivory);
  margin-top: 22px;
  line-height: 1.15;
}
.aw-title span {
  color: var(--gold-light);
  font-style: normal;
}

.aw-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--ivory-dim);
  margin-top: 18px;
  letter-spacing: 0.01em;
}

/* ===== main layout ===== */
.aw-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== orbit diagram ===== */
.aw-orbit {
  position: relative;
  width: 620px;
  height: 620px;
  margin: 0 auto;
}

.aw-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  opacity: 0.35;
  transform: translate(-50%, -50%);
}
.aw-ring-1 {
  width: 620px;
  height: 620px;
  animation: awSpin 90s linear infinite;
  border-style: dashed;
}
.aw-ring-2 {
  width: 500px;
  height: 500px;
  animation: awSpin 70s linear infinite reverse;
}
.aw-ring-3 {
  width: 390px;
  height: 390px;
  animation: awSpin 50s linear infinite;
  border-color: var(--gold);
  opacity: 0.5;
}

@keyframes awSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.aw-connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.aw-connector line {
  stroke: var(--gold-dim);
  stroke-width: 1;
  opacity: 0.35;
  stroke-dasharray: 4 6;
  animation: awDash 6s linear infinite;
  transition:
    opacity 0.4s var(--ease),
    stroke 0.4s var(--ease);
}
.aw-connector line.aw-active-line {
  stroke: var(--gold-light);
  opacity: 0.9;
}
@keyframes awDash {
  to {
    stroke-dashoffset: -100;
  }
}

.aw-center-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 232px;
  height: 232px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(201, 162, 75, 0.08),
    var(--shadow-lux),
    0 0 60px rgba(201, 162, 75, 0.25);
  overflow: hidden;
  z-index: 3;
  transition: transform 0.2s linear;
  background: var(--emerald-deep);
}
.aw-center-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.aw-center-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}
.aw-center-wrap img.aw-fading {
  opacity: 0;
}

.aw-center-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

/* orbit cards */
.aw-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  z-index: 4;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
  animation: awCardFloat 5s ease-in-out infinite;
}

.aw-card .aw-icon-circle {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.22),
    rgba(201, 162, 75, 0.05)
  );
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 16px;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.aw-card .aw-card-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--ivory-dim);
  transition: color 0.35s var(--ease);
}

.aw-card:hover,
.aw-card.aw-active {
  transform: translate(var(--tx), var(--ty)) scale(1.06);
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.09);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(201, 162, 75, 0.35);
}
.aw-card:hover .aw-icon-circle,
.aw-card.aw-active .aw-icon-circle {
  background: var(--gold);
  color: var(--emerald-deep);
}
.aw-card:hover .aw-card-label,
.aw-card.aw-active .aw-card-label {
  color: var(--ivory);
}

@keyframes awCardFloat {
  0%,
  100% {
    transform: translate(var(--tx), var(--ty)) translateY(0);
  }
  50% {
    transform: translate(var(--tx), var(--ty)) translateY(-9px);
  }
}

.aw-c-1 {
  --tx: calc(-50% + 0px);
  --ty: calc(-50% - 260px);
  animation-delay: 0s;
}
.aw-c-2 {
  --tx: calc(-50% + 226px);
  --ty: calc(-50% - 130px);
  animation-delay: 0.6s;
}
.aw-c-3 {
  --tx: calc(-50% + 226px);
  --ty: calc(-50% + 130px);
  animation-delay: 1.2s;
}
.aw-c-4 {
  --tx: calc(-50% + 0px);
  --ty: calc(-50% + 260px);
  animation-delay: 1.8s;
}
.aw-c-5 {
  --tx: calc(-50% - 226px);
  --ty: calc(-50% + 130px);
  animation-delay: 2.4s;
}
.aw-c-6 {
  --tx: calc(-50% - 226px);
  --ty: calc(-50% - 130px);
  animation-delay: 3s;
}

/* ===== description panel ===== */
.aw-desc-panel {
  position: relative;
  padding: 20px 10px 20px 10px;
}
.aw-desc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.aw-desc-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ivory);
  margin: 14px 0 20px;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.aw-desc-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ivory-dim);
  max-width: 440px;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.aw-desc-fade {
  opacity: 0;
  transform: translateY(8px);
}
.aw-desc-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
}
.aw-desc-index span {
  width: 26px;
  height: 1px;
  background: var(--gold-dim);
  display: inline-block;
}

/* ===== mobile grid (hidden on desktop) ===== */
.aw-mobile-grid {
  display: none;
}

/* ===== bottom trust strip ===== */
.aw-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  padding: 30px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 18px;
}
.aw-trust-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.aw-trust-avatars {
  display: flex;
}
.aw-trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-light));
}
.aw-trust-avatars span:first-child {
  margin-left: 0;
}
.aw-trust-copy {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ivory);
}
.aw-trust-copy b {
  color: var(--gold-light);
  font-weight: 600;
  font-style: normal;
}

.aw-btn-gold {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.25);
}
.aw-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 162, 75, 0.4);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .aw-body {
    grid-template-columns: 1fr;
  }
  .aw-orbit {
    transform: scale(0.9);
  }
  .aw-desc-panel {
    text-align: center;
    margin: 0 auto;
  }
  .aw-desc-text {
    margin: 0 auto;
  }
  .aw-desc-index {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .aw-section {
    padding: 80px 6vw 0;
  }
  .aw-header {
    margin-bottom: 56px;
  }

  .aw-orbit {
    width: 260px;
    height: 260px;
    transform: scale(1);
    margin-bottom: 40px;
  }
  .aw-ring-1 {
    width: 260px;
    height: 260px;
  }
  .aw-ring-2 {
    width: 210px;
    height: 210px;
  }
  .aw-ring-3 {
    width: 160px;
    height: 160px;
  }
  .aw-center-wrap {
    width: 130px;
    height: 130px;
  }
  .aw-center-label {
    font-size: 12px;
    bottom: 8px;
  }

  .aw-card,
  .aw-connector {
    display: none;
  }

  .aw-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
  }
  .aw-mobile-grid .aw-m-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    transition:
      border-color 0.3s var(--ease),
      background 0.3s var(--ease);
    cursor: pointer;
  }
  .aw-mobile-grid .aw-m-card.aw-active {
    border-color: var(--gold);
    background: rgba(201, 162, 75, 0.1);
  }
  .aw-mobile-grid .aw-m-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
      circle,
      rgba(201, 162, 75, 0.22),
      rgba(201, 162, 75, 0.05)
    );
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-size: 14px;
  }
  .aw-mobile-grid .aw-m-card.aw-active .aw-m-icon {
    background: var(--gold);
    color: var(--emerald-deep);
  }
  .aw-mobile-grid .aw-m-label {
    font-size: 11.5px;
    color: var(--ivory-dim);
  }
  .aw-mobile-grid .aw-m-card.aw-active .aw-m-label {
    color: var(--ivory);
  }

  .aw-desc-panel {
    padding: 0 4px;
  }

  .aw-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }
  .aw-btn-gold {
    width: 100%;
    justify-content: center;
  }
}
/*==========================FEATURED ROOMS STYLING=============================*/
.rooms-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.rooms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--ink);
}
.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
}
.glow-1 {
  width: 460px;
  height: 460px;
  top: -140px;
  left: -120px;
  background: var(--gold);
}
.glow-2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -120px;
  background: var(--rose-gold);
  opacity: 0.16;
}
.dotted-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(
    rgba(246, 242, 232, 0.16) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    black 20%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    black 20%,
    transparent 75%
  );
}

.rooms-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

/* ============ HEADER ============ */
.rooms-heading-row {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
  position: relative;
}
.rooms-heading-row::before {
  content: "";
  display: block;
  width: 130px;
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 8px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.section-badge .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
}
.rooms-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 14px;
}
.rooms-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
}
.rooms-desc {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* ============ TABS ============ */
.rooms-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.room-tabs-wrap {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.room-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.room-tabs {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 2px;
  width: max-content;
}
.room-tab-btn {
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--ivory-dim);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 40px;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  font-family: var(--font-sans);
}
.room-tab-btn.active,
.room-tab-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.view-all-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ivory);
  border-bottom: 1px solid var(--ivory-dim);
  padding-bottom: 3px;
  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.view-all-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.view-all-link i {
  transition: transform 0.3s var(--ease);
}
.view-all-link:hover i {
  transform: translateX(5px);
}

/* ============ FILTER BAR ============ */
.rooms-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(246, 242, 232, 0.03);
  backdrop-filter: blur(6px);
}
.filter-search {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  background: rgba(10, 13, 11, 0.5);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.filter-search:focus-within {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.1);
}
.filter-search i {
  color: var(--gold-light);
  font-size: 0.78rem;
  flex-shrink: 0;
}
.filter-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.78rem;
}
.filter-search input::placeholder {
  color: var(--ivory-dim);
}
.filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  background: rgba(10, 13, 11, 0.5);
}
.filter-sort i {
  color: var(--gold-light);
  font-size: 0.72rem;
}
.filter-sort select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  cursor: pointer;
}
.filter-sort select option {
  background: var(--ink-2);
  color: var(--ivory);
}
.compare-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--gold-light);
  white-space: nowrap;
}

/* ============ COMPARE CHECKBOX ============ */
.compare-check {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 3;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  background: rgba(10, 13, 11, 0.65);
  backdrop-filter: blur(6px);
  color: var(--ivory-dim);
  font-size: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
}
.compare-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.compare-check i {
  font-size: 0.7rem;
}
.compare-check.checked {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold-light);
}

/* ============ OFFER PRICING ============ */
.offer-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--wine);
  color: var(--ivory);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(92, 35, 48, 0.4);
}
.room-rating-badge.with-offer {
  top: 46px;
}
.price-was {
  font-size: 0.62rem;
  color: var(--ivory-dim);
  text-decoration: line-through;
  margin-right: 4px;
}
.save-chip {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  color: #8fd4a8;
  margin-left: 4px;
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--rose-gold);
  margin-top: -4px;
}
.social-proof .pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e8536b;
  animation: avail-pulse 1.8s infinite;
}

/* ============ SWIPER ============ */
.rooms-swiper-wrap {
  position: relative;
  padding: 0 4px;
}
.rooms-swiper {
  overflow: visible;
  padding: 10px 4px 26px;
}
.room-slide {
  height: auto;
}
.room-slide.filtered-hidden {
  display: none;
}

.room-nav-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(246, 242, 232, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.room-nav-btn:hover {
  background: var(--gold-gradient);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.35);
}
.room-nav-prev {
  left: -18px;
}
.room-nav-next {
  right: -18px;
}
.room-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .room-nav-prev {
    left: -4px;
  }
  .room-nav-next {
    right: -4px;
  }
}
@media (max-width: 575.98px) {
  .room-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }
  .room-nav-prev {
    left: 2px;
  }
  .room-nav-next {
    right: 2px;
  }
}

.rooms-swiper .swiper-pagination {
  position: relative;
  margin-top: 6px;
}
.swiper-pagination-bullet {
  background: var(--ivory-dim);
  opacity: 0.4;
  width: 7px;
  height: 7px;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 22px;
  border-radius: 5px;
}

/* ============ ROOM CARD ============ */
.room-card {
  position: relative;
  background: rgba(246, 242, 232, 0.045);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  opacity: 0;
  transform: translateY(28px);
}
.room-card.in-view {
  animation: card-rise 0.7s var(--ease) forwards;
}
@keyframes card-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.room-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow-lux);
}
.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, 0);
  transition: box-shadow 0.5s var(--ease);
}
.room-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, 0.35);
}

.room-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}
.room-card:hover .room-media img {
  transform: scale(1.1);
  filter: brightness(1.04) saturate(1.06);
}
.room-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 13, 11, 0.05) 40%,
    rgba(10, 13, 11, 0.55) 100%
  );
  pointer-events: none;
}

/* ================================================================ */
/* NO DARK OVERLAY - COMPLETELY REMOVED */
/* ================================================================ */
.room-media::before {
  display: none !important;
}

.room-media::after {
  content: "AP";
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: rgba(246, 242, 232, 0.4);
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.room-rating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 13, 11, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ivory);
}
.room-rating-badge i {
  color: var(--gold-light);
  font-size: 0.65rem;
}

.room-ribbon {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 3;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px 5px 16px;
  border-radius: 30px 0 0 30px;
  box-shadow: -4px 4px 14px rgba(0, 0, 0, 0.25);
}

/* gallery box */
.room-gallery-box {
  position: relative;
  display: block;
  height: 48px;
  overflow: hidden;
  text-decoration: none;
}
.room-gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.4s var(--ease);
}
.room-gallery-box:hover img {
  transform: scale(1.06);
}
.room-gallery-box .gb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.room-gallery-box .gb-overlay i {
  color: var(--gold-light);
  font-size: 0.72rem;
}
.gallery-hidden-item {
  display: none;
}

.room-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.room-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.room-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ivory);
  margin: 0;
}

.wishlist-heart {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
  position: relative;
}
.wishlist-heart i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wishlist-heart.liked {
  border-color: var(--wine);
  color: #e8536b;
}
.wishlist-heart.liked i {
  animation: heart-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wishlist-heart.liked .fa-heart {
  font-weight: 900;
}
@keyframes heart-pop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.5);
  }
  60% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

.room-intro {
  font-size: 0.75rem;
  color: var(--ivory-dim);
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--ivory-dim);
}
.amenity-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.room-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 2px;
}
.room-price-row .price-label {
  font-size: 0.6rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.room-price-row .price-amt {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}
.room-price-row .price-per {
  font-size: 0.62rem;
  color: var(--ivory-dim);
  font-weight: 300;
}

.room-cta-row {
  display: flex;
  gap: 8px;
}
.btn-view-details {
  flex: 1;
  text-align: center;
  padding: 9px 8px;
  border-radius: 9px;
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease);
}
.btn-view-details:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-book-room {
  flex: 1;
  text-align: center;
  padding: 9px 8px;
  border-radius: 9px;
  border: none;
  background: var(--gold-gradient);
  color: #ffffff !important;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease);
}
.btn-book-room:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
  filter: brightness(1.05);
}
.btn-book-room:active {
  transform: scale(0.97);
}

/* ============ BOTTOM STRIP ============ */
.bottom-strip {
  margin-top: 50px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 11, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strip-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.25);
}
.strip-text h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 2px;
}
.strip-text p {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  margin: 0;
  font-weight: 300;
}
.strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  background: var(--gold-gradient);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.2);
}
.strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 162, 75, 0.35);
  filter: brightness(1.05);
}
.strip-btn i {
  font-size: 0.9rem;
}

/* ============ SIDE PANEL ============ */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 6, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
}
.panel-overlay.open {
  opacity: 1;
  visibility: visible;
}

.room-side-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(500px, 92vw);
  background: var(--ink);
  border-left: 1px solid var(--line);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  /* box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45); */
}
.room-side-panel.open {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.panel-header-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ivory);
}
.panel-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.panel-close-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(90deg);
}

.panel-scroll {
  overflow-y: auto;
  flex: 1;
  padding: 0 0 16px;
}
.panel-hero-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.panel-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s var(--ease);
}

.panel-thumb-row {
  display: flex;
  gap: 6px;
  padding: 10px 18px;
  overflow-x: auto;
}
.panel-thumb {
  width: 56px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s var(--ease);
}
.panel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.panel-body-inner {
  padding: 4px 18px 0;
}
.panel-room-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.panel-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--ivory-dim);
  margin-bottom: 12px;
}
.panel-meta-row .rating-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-light);
  font-weight: 700;
}
.panel-meta-row .dot-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ivory-dim);
}
.panel-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.panel-desc {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}

.panel-sec-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.panel-sec-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.panel-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.panel-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  background: rgba(246, 242, 232, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 6px;
}
.panel-amenity i {
  font-size: 1rem;
  color: var(--gold-light);
}
.panel-amenity span {
  font-size: 0.62rem;
  color: var(--ivory-dim);
  line-height: 1.3;
}

.panel-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.diamond-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: rotate(45deg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond-icon i {
  transform: rotate(-45deg);
  color: var(--ink);
  font-size: 0.78rem;
}
.service-item span {
  font-size: 0.72rem;
  color: var(--ivory-dim);
}

.panel-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}
.panel-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--ivory-dim);
}
.panel-contact-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.panel-sticky-bottom {
  border-top: 1px solid var(--line);
  background: rgba(16, 22, 15, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}
.panel-price .amt {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 700;
}
.panel-price .per {
  font-size: 0.66rem;
  color: var(--ivory-dim);
}
.panel-availability {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: #8fd4a8;
  margin-top: 2px;
}
.panel-availability .avail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4fbf73;
  box-shadow: 0 0 0 0 rgba(79, 191, 115, 0.6);
  animation: avail-pulse 2s infinite;
}
@keyframes avail-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 191, 115, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(79, 191, 115, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 191, 115, 0);
  }
}

.panel-book-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 12px 24px;
  border-radius: 9px;
  border: none;
  background: var(--gold-gradient);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  cursor: pointer;
  font-family: var(--font-sans);
}
.panel-book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold-shine);
  transform: translateX(-130%);
}
.panel-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.4);
  filter: brightness(1.05);
}
.panel-book-btn:hover::before {
  transform: translateX(130%);
  transition: transform 0.75s var(--ease);
}
.panel-book-btn:active {
  transform: scale(0.97);
}

.panel-scroll::-webkit-scrollbar {
  width: 5px;
}
.panel-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dim), var(--gold-light));
  border-radius: 10px;
}
.panel-thumb-row::-webkit-scrollbar {
  height: 4px;
}

/* ============ COMPARE TRAY ============ */
.compare-tray {
  position: fixed;
  left: 50%;
  bottom: -140px;
  transform: translateX(-50%);
  z-index: 1600;
  width: min(720px, 92vw);
  background: rgba(16, 22, 15, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lux);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transition: bottom 0.5s var(--ease-spring);
}
.compare-tray.open {
  bottom: 20px;
}
.compare-tray-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.compare-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(246, 242, 232, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4px 5px 4px 10px;
  font-size: 0.65rem;
  color: var(--ivory);
}
.compare-chip button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: rgba(246, 242, 232, 0.12);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.56rem;
}
.compare-tray-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-now-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 9px 18px;
  border-radius: 9px;
  border: none;
  opacity: none;
  color: var(--ink);
  background-color: var(--ivory);
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform 0.3s var(--ease);
}
.compare-now-btn:disabled {
  /* opacity: 0.4; */
  cursor: not-allowed;
}
.compare-now-btn:not(:disabled):hover {
  transform: translateY(-2px);
}
.compare-clear-btn {
  background: transparent;
  border: none;
  color: var(--ivory-dim);
  font-size: 0.66rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ============ COMPARE MODAL ============ */
.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 6, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
}
.compare-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.compare-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  z-index: 2101;
  width: min(880px, 94vw);
  max-height: 84vh;
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lux);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.compare-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.compare-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--ink-2);
  z-index: 2;
}
.compare-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  padding: 4px 20px 20px;
}
.compare-table td,
.compare-table th {
  padding: 10px 12px;
  font-size: 0.74rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: var(--ivory-dim);
  white-space: nowrap;
}
.compare-table th.row-label {
  color: var(--gold-light);
  font-weight: 600;
  width: 110px;
}
.compare-table td.room-col-name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--ivory);
  font-weight: 600;
}
.compare-table td.room-col-price {
  color: var(--gold-light);
  font-weight: 700;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 575.98px) {
  .rooms-section {
    padding: 70px 0 60px;
  }
  .rooms-container {
    padding: 0 12px;
  }
  .rooms-heading-row {
    margin-bottom: 32px;
  }
  .section-badge {
    font-size: 0.58rem;
    padding: 5px 14px 5px 6px;
    margin-bottom: 14px;
  }
  .section-badge .dot {
    width: 16px;
    height: 16px;
    font-size: 0.52rem;
  }
  .rooms-title {
    font-size: 1.8rem;
  }
  .rooms-desc {
    font-size: 0.82rem;
  }
  .room-tab-btn {
    font-size: 0.7rem;
    padding: 7px 14px;
  }
  .view-all-link {
    font-size: 0.72rem;
  }
  .rooms-filter-bar {
    padding: 10px 12px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .filter-search {
    flex: 1 1 auto;
    padding: 7px 12px;
  }
  .filter-right {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .room-media {
    height: 180px;
  }
  .room-body {
    padding: 12px 12px 14px;
    gap: 8px;
  }
  .room-name {
    font-size: 0.9rem;
  }
  .room-intro {
    font-size: 0.68rem;
  }
  .room-price-row .price-amt {
    font-size: 1rem;
  }
  .btn-view-details,
  .btn-book-room {
    font-size: 0.62rem;
    padding: 7px 6px;
  }
  .bottom-strip {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 14px;
  }
  .strip-left {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .strip-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.78rem;
  }
  .strip-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  /* Panel mobile */
  .panel-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .panel-hero-img-wrap {
    height: 200px;
  }
  .panel-services-grid {
    grid-template-columns: 1fr;
  }
  .panel-sticky-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .panel-book-btn {
    width: 100%;
    text-align: center;
  }
  .panel-price {
    text-align: center;
  }
  .room-side-panel {
    width: 94vw;
  }
  .compare-tray {
    padding: 10px 14px;
    border-radius: 14px;
  }
}
/*=========================HOTEL EXPERNICE STYLING=======================*/
.exp-section {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.exp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    #171a16 0%,
    var(--ink) 60%
  );
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  z-index: -4;
  pointer-events: none;
  animation: orbDrift 16s ease-in-out infinite;
}
.orb-1 {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -140px;
  background: var(--gold);
  opacity: 0.24;
  animation-duration: 18s;
}
.orb-2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -120px;
  background: var(--wine);
  opacity: 0.22;
  animation-duration: 22s;
  animation-direction: reverse;
}
.orb-3 {
  width: 340px;
  height: 340px;
  top: 35%;
  left: 42%;
  background: var(--emerald);
  opacity: 0.16;
  animation-duration: 14s;
}
.orb-4 {
  width: 260px;
  height: 260px;
  top: 10%;
  right: 8%;
  background: var(--gold-light);
  opacity: 0.12;
  animation-duration: 20s;
}
@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -24px) scale(1.08);
  }
}

.bg-giant-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 15rem);
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 242, 232, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.dotted-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.3;
  background-image: radial-gradient(
    rgba(246, 242, 232, 0.16) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(
    ellipse 65% 55% at 50% 25%,
    black 15%,
    transparent 72%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 65% 55% at 50% 25%,
    black 15%,
    transparent 72%
  );
}
.diagonal-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    115deg,
    var(--ivory) 0 1px,
    transparent 1px 42px
  );
}

.exp-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

/* ============ HEADER ============ */
.exp-heading-row {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 8px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.section-badge .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
}
.exp-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 4.2vw, 3.3rem);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 16px;
}
.exp-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
}
.exp-desc {
  font-size: 0.94rem;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 22px;
}
.exp-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ============ ACCORDION GALLERY ============ */
.accordion-row {
  display: flex;
  gap: 14px;
  height: 560px;
}
.acc-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition:
    flex 0.7s var(--ease),
    border-color 0.5s var(--ease);
}
.acc-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.acc-panel.hover-active img,
.acc-panel.active img {
  transform: scale(1.08);
}

.acc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 13, 11, 0.15) 0%,
    rgba(10, 13, 11, 0.5) 55%,
    rgba(10, 13, 11, 0.92) 100%
  );
  transition: background 0.5s var(--ease);
}

.acc-icon-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 13, 11, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.acc-panel.hover-active .acc-icon-badge,
.acc-panel.active .acc-icon-badge {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.08);
}

.acc-num {
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 4;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: rgba(246, 242, 232, 0.55);
  letter-spacing: 1px;
}

.acc-vlabel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 3;
}
.acc-panel.hover-active .acc-vlabel,
.acc-panel.active .acc-vlabel {
  opacity: 0;
}

.acc-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 28px 26px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.5s ease 0.08s,
    transform 0.5s ease 0.08s;
}
.acc-panel.hover-active .acc-content,
.acc-panel.active .acc-content {
  opacity: 1;
  transform: translateY(0);
}
.acc-content-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ivory);
  margin: 0 0 8px;
  white-space: nowrap;
}
.acc-content-desc {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  line-height: 1.65;
  font-weight: 300;
  margin: 0 0 12px;
  max-width: 280px;
}
.acc-content-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  text-decoration: none;
}
.acc-content-link i {
  font-size: 0.7rem;
  transition: transform 0.3s var(--ease);
}
.acc-panel.hover-active .acc-content-link i,
.acc-panel.active .acc-content-link i {
  transform: translateX(5px);
}

.acc-panel.hover-active,
.acc-panel.active {
  flex: 3.6;
  border-color: var(--gold-dim);
}

.acc-mobile-title {
  display: none;
}
.acc-mobile-click-hint {
  display: none;
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 5;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(10, 13, 11, 0.6);
  backdrop-filter: blur(6px);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media (min-width: 992px) {
  .acc-panel:not(.hover-active):not(.active) {
    flex: 1;
  }
  .acc-panel.active {
    flex: 3.6;
  }
}

@media (max-width: 991.98px) {
  .accordion-row {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
  .acc-panel {
    flex: none;
    height: 92px;
    transition: height 0.6s var(--ease);
    cursor: default;
  }
  .acc-panel.active {
    height: 360px;
    flex: none;
    border-color: var(--gold-dim);
  }
  .acc-panel.hover-active {
    flex: none !important;
    border-color: var(--glass-border) !important;
  }
  .acc-panel.hover-active img {
    transform: none !important;
  }
  .acc-panel.hover-active .acc-icon-badge {
    background: rgba(10, 13, 11, 0.55) !important;
    color: var(--gold-light) !important;
    transform: none !important;
  }
  .acc-panel.hover-active .acc-vlabel {
    opacity: 1 !important;
  }
  .acc-panel.hover-active .acc-content {
    opacity: 0 !important;
    transform: translateY(22px) !important;
  }
  .acc-panel.hover-active .acc-content-link i {
    transform: none !important;
  }

  .acc-vlabel {
    display: none;
  }
  .acc-mobile-title {
    display: flex;
    align-items: center;
    gap: 14px;
    position: absolute;
    left: 22px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ivory);
    transition: opacity 0.3s ease;
  }
  .acc-panel.active .acc-mobile-title {
    opacity: 0;
    pointer-events: none;
  }
  .acc-mobile-click-hint {
    display: block;
  }
  .acc-panel.active .acc-mobile-click-hint {
    opacity: 0;
  }
  .acc-panel:not(.active) .acc-mobile-click-hint {
    opacity: 1;
  }

  .acc-icon-badge {
    position: static;
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .acc-panel .acc-icon-badge {
    position: absolute;
    top: 26px;
    left: 22px;
  }
  .acc-panel.active .acc-icon-badge {
    top: 22px;
    background: var(--gold) !important;
    color: var(--ink) !important;
    transform: rotate(-8deg) scale(1.08) !important;
  }
  .acc-num {
    display: none;
  }
  .acc-content {
    padding: 22px;
  }
  .acc-content-desc {
    max-width: none;
  }
  .acc-panel.active .acc-content {
    opacity: 1;
    transform: translateY(0);
  }
  .acc-panel.active img {
    transform: scale(1.08);
  }
}

@media (max-width: 575.98px) {
  .exp-section {
    padding: 80px 0 60px;
  }
  .acc-panel.active {
    height: 300px;
  }
  .acc-content-title {
    font-size: 1.1rem;
    white-space: normal;
  }
  .acc-content-desc {
    font-size: 0.75rem;
  }
  .acc-mobile-title {
    font-size: 0.9rem;
    gap: 10px;
    left: 14px;
    right: 14px;
  }
  .acc-icon-badge {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  .acc-panel .acc-icon-badge {
    top: 18px;
    left: 14px;
  }
  .acc-content {
    padding: 16px 14px;
  }
  .acc-mobile-click-hint {
    bottom: 10px;
    right: 12px;
    font-size: 0.6rem;
    padding: 3px 10px;
  }
}

/* ============================================================ */
/* ============ NEW BOTTOM STRIP ============ */
/* ============================================================ */
.bottom-strip {
  margin-top: 70px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 11, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.bottom-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(201, 162, 75, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.strip-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.strip-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--ink);
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(201, 162, 75, 0.2),
    0 12px 30px rgba(201, 162, 75, 0.15);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.strip-icon-circle:hover {
  transform: scale(1.06) rotate(-4deg);
  box-shadow:
    0 0 0 4px rgba(201, 162, 75, 0.15),
    0 18px 40px rgba(201, 162, 75, 0.25);
}

.strip-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.strip-headline {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
}
.strip-headline em {
  color: var(--gold-light);
  font-style: italic;
}

.strip-right {
  flex-shrink: 0;
}

/* ---- NEW EXPLORE MORE BUTTON (fresh design) ---- */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border-radius: 60px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  border-radius: 60px;
}
.btn-explore:hover::before {
  opacity: 1;
}
.btn-explore:hover {
  color: var(--ink);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 162, 75, 0.25);
}
.btn-explore .btn-text {
  position: relative;
  z-index: 1;
}
.btn-explore .btn-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
  transition: all 0.4s var(--ease);
}
.btn-explore:hover .btn-icon {
  background: var(--ink);
  color: var(--gold-light);
  transform: rotate(45deg);
}

/* responsive bottom strip */
@media (max-width: 767.98px) {
  .bottom-strip {
    margin-top: 50px;
    padding: 30px 0;
  }
  .strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .strip-left {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .strip-headline {
    font-size: 1.2rem;
  }
  .btn-explore {
    padding: 14px 28px;
    font-size: 0.8rem;
  }
  .btn-explore .btn-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .strip-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 399.98px) {
  .btn-explore {
    padding: 12px 20px;
    font-size: 0.75rem;
    gap: 10px;
  }
  .btn-explore .btn-icon {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  .strip-headline {
    font-size: 1rem;
  }
  .strip-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
/*========================HOTEL FACILITIES SECTION STYLING============================*/
.facilities-section {
  position: relative;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 0%,
      rgba(14, 42, 31, 0.55),
      transparent 60%
    ),
    var(--ink);
  padding: 110px 0 100px;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--ivory);
  isolation: isolate;
}

/* ---------- atmosphere ---------- */
.facilities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.f-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.f-glow-1 {
  width: 560px;
  height: 560px;
  top: -200px;
  right: -140px;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
  opacity: 0.22;
}
.f-glow-2 {
  width: 520px;
  height: 520px;
  bottom: -220px;
  left: -160px;
  background: radial-gradient(circle, var(--emerald), transparent 70%);
  opacity: 0.5;
}
.f-glow-3 {
  width: 360px;
  height: 360px;
  top: 45%;
  left: 50%;
  background: radial-gradient(circle, var(--wine), transparent 70%);
  opacity: 0.14;
}

.f-dots {
  position: absolute;
  opacity: 0.3;
}
.f-dots-1 {
  top: 6%;
  left: 5%;
  width: 170px;
  height: 170px;
}
.f-dots-2 {
  bottom: 8%;
  right: 7%;
  width: 150px;
  height: 150px;
}
.f-dots circle {
  fill: var(--gold-dim);
}

.facilities-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */
.facilities-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.14),
    rgba(201, 162, 75, 0.02)
  );
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.f-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}
.f-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ivory);
}
.f-heading em {
  color: var(--gold-light);
  font-style: italic;
}
.f-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 auto;
}

/* ================= BENTO GRID ================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 148px);
  grid-template-areas:
    "pool pool dining fitness"
    "pool pool dining wifi"
    "cta  cta  valet  business"
    "bar  concierge shuttle kids"
    "laundry pet spa rooftop";
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.bento-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* diamond corner ornament */
.bento-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s var(--ease);
  z-index: 4;
  box-shadow: 0 0 0 0 rgba(201, 162, 75, 0);
}
.bento-card:hover::before {
  transform: rotate(45deg) scale(1);
  box-shadow: 0 0 14px 2px rgba(201, 162, 75, 0.55);
}

/* ---- grid area assignment ---- */
.area-pool {
  grid-area: pool;
}
.area-dining {
  grid-area: dining;
}
.area-fitness {
  grid-area: fitness;
}
.area-wifi {
  grid-area: wifi;
}
.area-cta {
  grid-area: cta;
}
.area-valet {
  grid-area: valet;
}
.area-business {
  grid-area: business;
}
.area-bar {
  grid-area: bar;
}
.area-concierge {
  grid-area: concierge;
}
.area-shuttle {
  grid-area: shuttle;
}
.area-kids {
  grid-area: kids;
}
.area-laundry {
  grid-area: laundry;
}
.area-pet {
  grid-area: pet;
}
.area-spa {
  grid-area: spa;
}
.area-rooftop {
  grid-area: rooftop;
}

/* ---------- feature (image) cards ---------- */
.bento-card.feature {
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lux);
}
.bento-card.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.15) 20%,
    rgba(7, 21, 16, 0.92) 100%
  );
  transition: background 0.5s var(--ease);
  z-index: 1;
}
.bento-card.feature:hover::after {
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.05) 10%,
    rgba(7, 21, 16, 0.88) 100%
  );
}
.bento-card.feature .feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.bento-card.feature:hover .feature-img {
  transform: scale(1.08);
}
.feature-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ----- DIAMOND ICON BADGE (for ALL cards) ----- */
.icon-badge,
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transform: rotate(45deg);
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.5s var(--ease),
    background 0.5s var(--ease);
}
.icon-badge i,
.feature-icon i {
  transform: rotate(-45deg);
  font-size: 18px;
  color: var(--gold-light);
  transition: color 0.4s var(--ease);
}
.bento-card:hover .icon-badge,
.bento-card.feature:hover .feature-icon {
  transform: rotate(45deg) scale(1.1);
  background: rgba(201, 162, 75, 0.3);
}
.bento-card:hover .icon-badge i,
.bento-card.feature:hover .feature-icon i {
  color: var(--gold);
}

.feature-content h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
  font-size: clamp(20px, 1.9vw, 26px);
}
.feature-content p {
  margin: 0;
  color: var(--ivory-dim);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 340px;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
  text-decoration: none;
}
.bento-card.feature:hover .feature-link {
  opacity: 1;
  transform: translateY(0);
}
.feature-link i {
  font-size: 12px;
  transition: transform 0.4s var(--ease);
}
.bento-card.feature:hover .feature-link i {
  transform: translateX(4px);
}

/* ---------- CTA banner card ---------- */
.bento-card.cta {
  background: linear-gradient(
    120deg,
    var(--gold-dim),
    var(--gold) 55%,
    var(--gold-light)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  gap: 18px;
  border: none;
}
.cta-text h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--emerald-deep);
  margin: 0 0 4px;
  font-size: clamp(19px, 1.8vw, 24px);
}
.cta-text p {
  margin: 0;
  color: var(--emerald-deep);
  opacity: 0.75;
  font-size: 12.5px;
  font-weight: 500;
}
.cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-deep);
  color: var(--gold-light);
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s var(--ease);
  font-family: var(--font-sans);
}
.cta-btn i {
  font-size: 12px;
  transition: transform 0.4s var(--ease);
}
.cta-btn:hover {
  background: var(--wine);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
.cta-btn:hover i {
  transform: translateX(4px);
}
.bento-card.cta::before {
  background: var(--emerald-deep);
}

.cta-deco {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  opacity: 0.18;
  z-index: 0;
}
.cta-deco svg {
  width: 100%;
  height: 100%;
  stroke: var(--emerald-deep);
  fill: none;
  stroke-width: 1;
}

/* ---------- icon cards (diamond icon bg) ---------- */
.bento-card.icon {
  background: linear-gradient(165deg, var(--ink-2), var(--emerald-deep));
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.bento-card.icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(201, 162, 75, 0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    background 0.5s var(--ease);
  pointer-events: none;
}
.bento-card.icon:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, var(--gold-light), transparent 60%);
}
.bento-card.icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(236, 212, 143, 0.35);
}

.icon-card-text h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 4px;
  font-size: 16.5px;
}
.icon-card-text p {
  margin: 0;
  color: var(--ivory-dim);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}
.icon-explore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  opacity: 0;
  max-height: 0;
  transition:
    opacity 0.4s var(--ease),
    max-height 0.4s var(--ease);
}
.bento-card.icon:hover .icon-explore {
  opacity: 1;
  max-height: 20px;
}
.icon-explore i {
  font-size: 10px;
  transition: transform 0.4s var(--ease);
}
.bento-card.icon:hover .icon-explore i {
  transform: translateX(3px);
}

/* ============================================ */
/* ============ RESPONSIVE FIXES ============ */
/* ============================================ */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "pool pool"
      "pool pool"
      "dining fitness"
      "dining wifi"
      "cta cta"
      "valet business"
      "bar concierge"
      "shuttle kids"
      "laundry pet"
      "spa rooftop";
    gap: 16px;
  }
  .facilities-section {
    padding: 90px 0 80px;
  }
  .bento-card.feature {
    min-height: 260px;
  }
  .bento-card.feature.area-pool {
    min-height: 300px;
  }
}

/* ---- Mobile (max-width: 767px) ---- */
@media (max-width: 767px) {
  .facilities-container {
    padding: 0 16px;
  }
  .facilities-header {
    margin-bottom: 36px;
  }
  .f-heading {
    font-size: 28px;
  }
  .f-desc {
    font-size: 14px;
  }

  /* Reset grid - feature cards full width, icon cards 2x2 */
  .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    gap: 14px;
  }

  /* Feature cards: full width (span both columns) */
  .bento-card.feature {
    grid-column: 1 / -1;
    min-height: 260px;
  }
  .bento-card.feature.area-pool {
    min-height: 300px;
  }

  /* CTA card: full width */
  .bento-card.cta {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: 24px 20px;
  }

  /* Icon cards: 2 per row (auto) */
  .bento-card.icon {
    min-height: 150px;
    padding: 18px 16px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .feature-content h3 {
    font-size: 20px;
  }
  .feature-content p {
    font-size: 12.5px;
    max-width: 100%;
  }

  .icon-card-text h4 {
    font-size: 15px;
  }
  .icon-card-text p {
    font-size: 11.5px;
  }

  /* Diamond icons slightly smaller on mobile */
  .icon-badge,
  .feature-icon {
    width: 38px;
    height: 38px;
  }
  .icon-badge i,
  .feature-icon i {
    font-size: 15px;
  }

  /* Remove animation delay for mobile */
  .bento-card.in-view {
    opacity: 1;
    transform: none;
  }

  /* Override any grid-area assignments on mobile */
  .area-pool,
  .area-dining,
  .area-fitness,
  .area-wifi,
  .area-cta,
  .area-valet,
  .area-business,
  .area-bar,
  .area-concierge,
  .area-shuttle,
  .area-kids,
  .area-laundry,
  .area-pet,
  .area-spa,
  .area-rooftop {
    grid-area: unset;
  }
}

/* ---- Small Mobile (max-width: 400px) ---- */
@media (max-width: 400px) {
  .facilities-section {
    padding: 60px 0 50px;
  }
  .facilities-container {
    padding: 0 12px;
  }
  .bento-grid {
    gap: 10px;
  }
  .bento-card.feature {
    min-height: 220px;
  }
  .bento-card.feature.area-pool {
    min-height: 260px;
  }
  .bento-card.icon {
    min-height: 130px;
    padding: 14px 12px;
  }
  .feature-content {
    padding: 16px;
  }
  .feature-content h3 {
    font-size: 17px;
  }
  .feature-content p {
    font-size: 11.5px;
  }
  .icon-card-text h4 {
    font-size: 14px;
  }
  .icon-card-text p {
    font-size: 11px;
  }
  .icon-badge,
  .feature-icon {
    width: 34px;
    height: 34px;
  }
  .icon-badge i,
  .feature-icon i {
    font-size: 13px;
  }
  .cta-text h3 {
    font-size: 17px;
  }
  .cta-text p {
    font-size: 11.5px;
  }
  .cta-btn {
    font-size: 11px;
    padding: 10px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/*======================CURATED EXPERINCE SECTION STYLING==========================*/
.exp-wrap-section {
  position: relative;
  background:
    radial-gradient(
      ellipse 55% 45% at 50% 0%,
      rgba(14, 42, 31, 0.55),
      transparent 60%
    ),
    var(--ink);
  padding: 110px 0 100px;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--ivory);
  isolation: isolate;
}

/* ----- BACKGROUND EFFECTS (unique classes) ----- */
.exp-bgfx-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.exp-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.exp-glow-orb-1 {
  width: 560px;
  height: 560px;
  top: -200px;
  left: -160px;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
  opacity: 0.2;
}
.exp-glow-orb-2 {
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: -140px;
  background: radial-gradient(circle, var(--emerald), transparent 70%);
  opacity: 0.5;
}
.exp-dot-pattern {
  position: absolute;
  opacity: 0.28;
}
.exp-dot-pattern-1 {
  top: 8%;
  right: 6%;
  width: 160px;
  height: 160px;
}
.exp-dot-pattern-2 {
  bottom: 6%;
  left: 5%;
  width: 150px;
  height: 150px;
}
.exp-dot-pattern circle {
  fill: var(--gold-dim);
}

.exp-container-box {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header (unique classes) ---------- */
.exp-heading-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.exp-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.14),
    rgba(201, 162, 75, 0.02)
  );
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.exp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}
.exp-main-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ivory);
}
.exp-main-title em {
  color: var(--gold-light);
  font-style: italic;
}
.exp-sub-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 auto;
}

/* ================= MOOD DISCOVERY (unique classes) ================= */
.exp-mood-panel {
  max-width: 900px;
  margin: 0 auto 50px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: linear-gradient(
    165deg,
    rgba(16, 22, 15, 0.7),
    rgba(7, 21, 16, 0.55)
  );
  backdrop-filter: blur(14px);
  padding: 26px 28px;
  box-shadow: var(--shadow-lux);
}
.exp-mood-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 16px;
}
.exp-mood-headline svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.6;
}
.exp-mood-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.exp-mood-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.03);
  color: var(--ivory-dim);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.exp-mood-chip-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.6;
  transition: stroke 0.35s var(--ease);
}
.exp-mood-chip-btn:hover {
  border-color: var(--gold-dim);
  color: var(--ivory);
}
.exp-mood-chip-btn.active-mood {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  border-color: transparent;
  color: var(--emerald-deep);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.28);
}
.exp-mood-chip-btn.active-mood svg {
  stroke: var(--emerald-deep);
}

.exp-mood-result-box {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  border-top: 0 solid var(--line);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.6s var(--ease),
    opacity 0.5s var(--ease),
    margin-top 0.6s var(--ease),
    padding-top 0.6s var(--ease);
}
.exp-mood-result-box.show-result {
  max-height: 220px;
  opacity: 1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.exp-result-img-box {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: var(--shadow-lux);
}
.exp-result-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exp-result-text .exp-result-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.exp-result-text h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ivory);
}
.exp-result-text p {
  margin: 0;
  font-size: 13px;
  color: var(--ivory-dim);
  font-weight: 300;
  line-height: 1.55;
}
.exp-result-btn {
  flex: 0 0 auto;
  padding: 13px 22px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: var(--emerald-deep);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s var(--ease);
  font-family: var(--font-sans);
}
.exp-result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 162, 75, 0.4);
}

/* ================= EXPERIENCE GRID (unique classes) ================= */
.exp-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 220px);
  grid-template-areas:
    "romantic romantic family"
    "romantic romantic wellness"
    "business dining celebrate";
  gap: 20px;
}
.exp-tile-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    box-shadow 0.5s var(--ease),
    filter 0.5s var(--ease);
}
.exp-tile-card.visible-tile {
  opacity: 1;
  transform: translateY(0);
}
.exp-tile-card.dimmed-tile {
  filter: grayscale(0.6) brightness(0.55);
}
.exp-tile-card.highlighted-tile {
  box-shadow:
    0 0 0 2px var(--gold-light),
    var(--shadow-lux);
}

.exp-area-romantic {
  grid-area: romantic;
}
.exp-area-family {
  grid-area: family;
}
.exp-area-wellness {
  grid-area: wellness;
}
.exp-area-business {
  grid-area: business;
}
.exp-area-dining {
  grid-area: dining;
}
.exp-area-celebrate {
  grid-area: celebrate;
}

.exp-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.exp-tile-card:hover .exp-card-bg {
  transform: scale(1.1);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.05) 30%,
    rgba(7, 21, 16, 0.94) 100%
  );
  transition: background 0.5s var(--ease);
}
.exp-tile-card:hover .exp-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.15) 15%,
    rgba(7, 21, 16, 0.9) 100%
  );
}

.exp-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(10, 13, 11, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
}

.exp-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 24px;
}
.exp-card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
  font-size: clamp(20px, 1.9vw, 26px);
  transition: transform 0.5s var(--ease);
}
.exp-tile-card:hover .exp-card-title {
  transform: translateY(-2px);
}

.exp-card-reveal {
  max-height: 0;
  opacity: 0;
  transform: translateY(14px);
  transition:
    max-height 0.5s var(--ease),
    opacity 0.45s var(--ease),
    transform 0.5s var(--ease);
  overflow: hidden;
}
.exp-tile-card:hover .exp-card-reveal {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}
.exp-card-reveal p {
  margin: 8px 0 10px;
  font-size: 12.5px;
  color: var(--ivory-dim);
  font-weight: 300;
  line-height: 1.55;
  max-width: 320px;
}
.exp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.exp-card-link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.4s var(--ease);
}
.exp-tile-card:hover .exp-card-link svg {
  transform: translateX(4px);
}

.exp-card-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 13, 11, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.exp-card-corner svg {
  width: 14px;
  height: 14px;
  stroke: var(--ivory);
  fill: none;
  stroke-width: 1.8;
  transform: rotate(-45deg);
  transition: all 0.4s var(--ease);
}
.exp-tile-card:hover .exp-card-corner {
  background: var(--gold-light);
  border-color: transparent;
  transform: rotate(45deg);
}
.exp-tile-card:hover .exp-card-corner svg {
  stroke: var(--emerald-deep);
  transform: rotate(0deg);
}

/* ============================================ */
/* ============ RESPONSIVE ============ */
/* ============================================ */

@media (max-width: 1024px) {
  .exp-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 220px);
    grid-template-areas:
      "romantic romantic"
      "romantic romantic"
      "family wellness"
      "business dining"
      "celebrate celebrate";
    gap: 16px;
  }
  .exp-wrap-section {
    padding: 90px 0 80px;
  }
  .exp-mood-result-box {
    grid-template-columns: 90px 1fr;
    grid-template-areas: "img text" "btn btn";
  }
  .exp-result-btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
  }
}

@media (max-width: 767px) {
  .exp-container-box {
    padding: 0 16px;
  }
  .exp-heading-wrap {
    margin-bottom: 36px;
  }
  .exp-main-title {
    font-size: 28px;
  }
  .exp-sub-desc {
    font-size: 14px;
  }

  .exp-mood-panel {
    padding: 20px 16px;
    margin-bottom: 36px;
  }
  .exp-mood-chip-wrap {
    gap: 8px;
  }
  .exp-mood-chip-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .exp-mood-chip-btn svg {
    width: 13px;
    height: 13px;
  }

  .exp-mood-result-box {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }
  .exp-mood-result-box.show-result {
    max-height: 400px;
  }
  .exp-result-img-box {
    width: 100%;
    height: 140px;
  }
  .exp-result-text h4 {
    font-size: 18px;
  }
  .exp-result-text p {
    font-size: 12.5px;
  }
  .exp-result-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 12px;
  }

  .exp-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    grid-template-areas: none;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .exp-tile-card {
    width: 100%;
    min-height: 260px;
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .exp-area-romantic {
    min-height: 280px;
  }

  .exp-tile-card .exp-card-reveal {
    max-height: 0;
    opacity: 0;
  }

  .exp-tile-card.mobile-reveal-open .exp-card-reveal {
    max-height: 90px;
    opacity: 1;
    transform: translateY(0);
  }

  .exp-card-content {
    padding: 18px 20px;
  }
  .exp-card-title {
    font-size: 20px;
  }
  .exp-card-reveal p {
    font-size: 12px;
    max-width: 100%;
  }
  .exp-card-corner {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
  }
  .exp-card-corner svg {
    width: 12px;
    height: 12px;
  }
  .exp-card-tag {
    font-size: 9.5px;
    padding: 4px 10px;
    top: 12px;
    left: 12px;
  }

  .exp-tile-card:hover .exp-card-bg {
    transform: none;
  }
  .exp-tile-card:hover .exp-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 21, 16, 0.05) 30%,
      rgba(7, 21, 16, 0.94) 100%
    );
  }
  .exp-tile-card:hover .exp-card-title {
    transform: none;
  }
  .exp-tile-card:hover .exp-card-corner {
    background: rgba(10, 13, 11, 0.5);
    transform: none;
  }
  .exp-tile-card:hover .exp-card-corner svg {
    stroke: var(--ivory);
    transform: rotate(-45deg);
  }
  .exp-tile-card:hover .exp-card-link svg {
    transform: none;
  }

  .exp-tile-card.dimmed-tile {
    filter: grayscale(0.6) brightness(0.55);
  }
  .exp-tile-card.highlighted-tile {
    box-shadow:
      0 0 0 2px var(--gold-light),
      var(--shadow-lux);
  }
}

@media (max-width: 400px) {
  .exp-wrap-section {
    padding: 60px 0 50px;
  }
  .exp-container-box {
    padding: 0 12px;
  }
  .exp-tile-card {
    min-height: 220px;
  }
  .exp-area-romantic {
    min-height: 240px;
  }
  .exp-card-content {
    padding: 14px 16px;
  }
  .exp-card-title {
    font-size: 17px;
  }
  .exp-card-reveal p {
    font-size: 11.5px;
  }
  .exp-mood-chip-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  .exp-result-img-box {
    height: 110px;
  }
  .exp-result-text h4 {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/*====================FINE DINING SECTION STYLING===========================*/

.dining-section {
  position: relative;
  background:
    radial-gradient(
      ellipse 55% 45% at 50% 0%,
      rgba(14, 42, 31, 0.5),
      transparent 60%
    ),
    var(--ink);
  padding: 110px 0 100px;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--ivory);
  isolation: isolate;
}

.dining-bgfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.d-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.d-glow-1 {
  width: 560px;
  height: 560px;
  top: -200px;
  right: -160px;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
  opacity: 0.2;
}
.d-glow-2 {
  width: 520px;
  height: 520px;
  bottom: -220px;
  left: -140px;
  background: radial-gradient(circle, var(--wine), transparent 70%);
  opacity: 0.22;
}
.d-dots {
  position: absolute;
  opacity: 0.28;
}
.d-dots-1 {
  top: 8%;
  left: 6%;
  width: 150px;
  height: 150px;
}
.d-dots-2 {
  bottom: 8%;
  right: 6%;
  width: 150px;
  height: 150px;
}
.d-dots circle {
  fill: var(--gold-dim);
}

.dining-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */
.dining-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}
.d-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.14),
    rgba(201, 162, 75, 0.02)
  );
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.d-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}
.d-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ivory);
}
.d-heading em {
  color: var(--gold-light);
  font-style: italic;
}
.d-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 auto;
}

/* ---------- stat strip ---------- */
.dining-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.dining-stat {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 18px;
}
.dining-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--line);
}
.dining-stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--gold-light);
}
.dining-stat span {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}

/* ================= SHOWCASE ================= */
.dining-showcase {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 60px;
}

/* ---------- venue list ---------- */
.venue-list-wrap {
  position: relative;
  padding: 6px;
}
.venue-list-highlight {
  position: absolute;
  left: 6px;
  right: 6px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 75, 0.14),
    rgba(201, 162, 75, 0.03)
  );
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  transition:
    transform 0.55s var(--ease),
    height 0.55s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.venue-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}
.venue-index {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dim);
  flex: 0 0 auto;
  width: 30px;
  transition: color 0.4s var(--ease);
}
.venue-item.active .venue-index {
  color: var(--gold-light);
}
.venue-info {
  flex: 1;
  min-width: 0;
}
.venue-name {
  font-family: var(--font-serif);
  font-size: 18.5px;
  font-weight: 600;
  color: var(--ivory-dim);
  margin: 0 0 3px;
  transition: color 0.4s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.venue-item.active .venue-name {
  color: var(--ivory);
}
.venue-cuisine {
  font-size: 11.5px;
  color: var(--ivory-dim);
  opacity: 0.65;
  letter-spacing: 0.04em;
}
.venue-chevron {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.venue-chevron i {
  font-size: 12px;
  color: var(--ivory-dim);
  transition: all 0.4s var(--ease);
}
.venue-item.active .venue-chevron {
  background: var(--gold-light);
  border-color: transparent;
}
.venue-item.active .venue-chevron i {
  color: var(--emerald-deep);
  transform: translateX(2px);
}
.venue-item:hover .venue-name {
  color: var(--ivory);
}

/* ---------- venue display ---------- */
.venue-display {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lux);
  min-height: 560px;
}
.venue-image-stack {
  position: absolute;
  inset: 0;
}
.venue-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1s var(--ease),
    transform 1.4s var(--ease);
}
.venue-img.active {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================ */
/* ============ IMPROVED DARK OVERLAY FOR IMAGES ============ */
/* ============================================================ */

.venue-display::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.3) 0%,
    rgba(7, 21, 16, 0.6) 30%,
    rgba(7, 21, 16, 0.88) 60%,
    rgba(7, 21, 16, 0.97) 100%
  );
  pointer-events: none;
}

/* Additional gradient overlay on the image itself for better contrast */
.venue-img-wrapper {
  position: absolute;
  inset: 0;
}
.venue-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(7, 21, 16, 0.1),
    rgba(7, 21, 16, 0.7) 80%
  );
  pointer-events: none;
  z-index: 1;
}

/* ---------- OVERLAY CARDS ---------- */
.venue-overlay-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 34px 36px 36px;
}

.venue-overlay-card {
  display: none;
  animation: fadeUp 0.5s var(--ease) forwards;
}
.venue-overlay-card.active {
  display: block;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.venue-overlay-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.venue-overlay-eyebrow i {
  font-size: 12px;
}
.venue-overlay-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ivory);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.venue-overlay-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ivory-dim);
  font-weight: 300;
  max-width: 520px;
  margin: 0 0 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.venue-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: rgba(10, 13, 11, 0.5);
  backdrop-filter: blur(6px);
  font-size: 12px;
  color: var(--ivory-dim);
  font-weight: 400;
}
.venue-tag i {
  font-size: 13px;
  color: var(--gold-light);
}

.venue-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.venue-dish {
  display: flex;
  align-items: center;
  gap: 10px;
}
.venue-dish i {
  font-size: 20px;
  color: var(--gold-light);
  flex: 0 0 auto;
}
.venue-dish-text span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 0.7;
  margin-bottom: 2px;
}
.venue-dish-text b {
  font-family: var(--font-serif);
  font-size: 15.5px;
  color: var(--ivory);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================================ */
/* ============ PREMIUM BUTTON STYLES ============ */
/* ============================================================ */

.btn-reserve-premium {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dim)
  );
  color: var(--emerald-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  box-shadow: 0 8px 30px rgba(201, 162, 75, 0.25);
}
.btn-reserve-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  border-radius: 60px;
}
.btn-reserve-premium:hover::before {
  opacity: 1;
}
.btn-reserve-premium:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 45px rgba(201, 162, 75, 0.45);
}
.btn-reserve-premium:active {
  transform: scale(0.97);
}
.btn-reserve-premium .btn-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-reserve-premium .btn-label i {
  font-size: 14px;
  transition: transform 0.5s var(--ease);
}
.btn-reserve-premium:hover .btn-label i {
  transform: translateX(6px) rotate(-4deg);
}
.btn-reserve-premium .btn-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
  border-radius: 60px;
}
.btn-reserve-premium:hover .btn-shimmer {
  transform: rotate(25deg) translateX(100%);
}

.occ-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 4px;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  background: transparent;
  font-family: var(--font-sans);
}
.occ-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  border-radius: 20px;
}
.occ-tag:hover::before {
  opacity: 1;
}
.occ-tag:hover {
  border-color: transparent;
  color: var(--emerald-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 75, 0.35);
}
.occ-tag:active {
  transform: scale(0.95);
}
.occ-tag span {
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* ============ PILL CARDS (BOTTOM) ============ */
/* ============================================ */

.occasion-section {
  margin-top: 20px;
}
.occasion-headline {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 8px;
}
.occasion-headline em {
  color: var(--gold-light);
  font-style: italic;
}
.occasion-sub {
  text-align: center;
  font-size: 14px;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 0 28px;
  opacity: 0.7;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.occasion-card {
  background: rgba(246, 242, 232, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 100px 100px 20px 20px;
  padding: 28px 20px 22px;
  text-align: center;
  transition: all 0.5s var(--ease);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.occasion-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lux);
  background: rgba(246, 242, 232, 0.07);
}

.occasion-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 75, 0.15),
    rgba(201, 162, 75, 0.05)
  );
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-light);
  transition: all 0.4s var(--ease);
}
.occasion-card:hover .occasion-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-deep);
  transform: scale(1.08) rotate(-6deg);
  border-color: transparent;
}

.occasion-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
}
.occasion-card p {
  font-size: 12px;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
  max-width: 200px;
}

/* ---------- entrance ---------- */
.dining-showcase,
.dining-stats,
.occasion-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.dining-showcase.in-view,
.dining-stats.in-view,
.occasion-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ */
/* ============ RESPONSIVE ============ */
/* ============================================ */

@media (max-width: 1024px) {
  .dining-showcase {
    grid-template-columns: 320px 1fr;
  }
  .venue-display {
    min-height: 520px;
  }
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .dining-section {
    padding: 90px 0 80px;
  }
  .dining-showcase {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 50px;
  }
  .venue-list-wrap {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 6px 2px 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .venue-list-wrap::-webkit-scrollbar {
    display: none;
  }
  .venue-list-highlight {
    top: 6px !important;
    bottom: 6px;
    left: 0;
    right: auto;
    height: auto !important;
    scroll-snap-align: start;
  }
  .venue-item {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 180px;
    padding: 16px 16px;
    scroll-snap-align: start;
  }
  .venue-chevron {
    position: absolute;
    top: 14px;
    right: 14px;
  }
  .venue-name {
    white-space: normal;
  }
  .venue-display {
    min-height: 480px;
    margin-top: 6px;
  }
  .venue-overlay-wrapper {
    padding: 24px 20px 26px;
  }
  .venue-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-reserve-premium {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .occasion-card {
    border-radius: 60px 60px 16px 16px;
    padding: 22px 14px 18px;
  }
}

@media (max-width: 640px) {
  .dining-container {
    padding: 0 18px;
  }
  .dining-header {
    margin-bottom: 26px;
  }
  .dining-stats {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .dining-stat {
    flex: 1 1 45%;
    padding: 10px;
  }
  .dining-stat:not(:last-child)::after {
    display: none;
  }
  .venue-display {
    min-height: 440px;
  }
  .venue-item {
    min-width: 150px;
    padding: 14px 14px;
  }
  .venue-name {
    font-size: 16px;
  }
  .venue-overlay-wrapper {
    padding: 18px 16px 20px;
  }
  .venue-overlay-title {
    font-size: 22px;
  }
  .venue-overlay-desc {
    font-size: 12.5px;
  }
  .btn-reserve-premium {
    font-size: 12px;
    padding: 12px 20px;
  }
  .occasion-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .occasion-card {
    padding: 18px 12px 16px;
  }
  .occasion-card h4 {
    font-size: 15px;
  }
  .occasion-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .occasion-card p {
    font-size: 11px;
  }
  .occasion-sub {
    font-size: 12.5px;
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .dining-section {
    padding: 60px 0 50px;
  }
  .venue-item {
    min-width: 130px;
    padding: 12px 12px;
  }
  .venue-name {
    font-size: 14px;
  }
  .venue-cuisine {
    font-size: 10px;
  }
  .venue-display {
    min-height: 380px;
  }
  .venue-overlay-title {
    font-size: 19px;
  }
  .btn-reserve-premium {
    font-size: 11px;
    padding: 10px 16px;
    gap: 8px;
  }
  .occasion-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .occasion-card {
    padding: 14px 10px 12px;
    border-radius: 40px 40px 12px 12px;
  }
  .occasion-card h4 {
    font-size: 13px;
  }
  .occasion-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .occasion-card p {
    font-size: 10px;
  }
  .occ-tag {
    font-size: 8px;
    padding: 3px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/*==============================GUEST STORY SECTION STYLING========================*/
.gs-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.gs-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.2;
  mix-blend-mode: screen;
  pointer-events: none;
}
.gs-glow-1 {
  width: 480px;
  height: 480px;
  top: -140px;
  left: -140px;
  background: var(--gold);
}
.gs-glow-2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -100px;
  background: var(--wine);
  opacity: 0.16;
}

.gs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.gs-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 50px;
  align-items: stretch;
}

/* ============ LEFT PANEL (30%) ============ */
.gs-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 8px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: rgba(11, 15, 12, 0.35);
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  width: fit-content;
  backdrop-filter: blur(6px);
}
.gs-badge .gs-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
}
.gs-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  line-height: 1.18;
  margin: 0;
}
.gs-heading em {
  font-style: italic;
  font-weight: 600;
}

.gs-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.035);
}
.gs-ring-wrap {
  position: relative;
  width: 78px;
  height: 78px;
  flex-shrink: 0;
}
.gs-ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gs-ring-track {
  fill: none;
  stroke: rgba(246, 242, 232, 0.1);
  stroke-width: 5;
}
.gs-ring-fill {
  fill: none;
  stroke: url(#gsScoreGrad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 219.9;
  stroke-dashoffset: 219.9;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.gs-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-light);
}
.gs-score-text .gs-big-stat {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.1;
}
.gs-score-text .gs-stat-label {
  font-size: 0.72rem;
  color: var(--ivory-dim);
  margin-top: 4px;
}

.gs-intro {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0;
}

.gs-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gs-platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.03);
  text-decoration: none;
  color: var(--ivory);
  transition: all 0.35s var(--ease);
}
.gs-platform-chip:hover {
  border-color: var(--gold-dim);
  background: rgba(201, 162, 75, 0.07);
  transform: translateY(-3px);
}
.gs-platform-chip .gs-p-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  background: rgba(246, 242, 232, 0.06);
  color: var(--gold-light);
  flex-shrink: 0;
}
.gs-platform-chip .gs-p-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.gs-platform-chip .gs-p-name {
  font-size: 0.72rem;
  font-weight: 600;
}
.gs-platform-chip .gs-p-rating {
  font-size: 0.64rem;
  color: var(--ivory-dim);
}

.gs-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 9px;
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease);
}
.gs-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 48%,
    transparent 72%
  );
  transform: translateX(-130%);
}
.gs-cta:hover::before {
  transform: translateX(130%);
  transition: transform 0.75s var(--ease);
}
.gs-cta:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============ RIGHT PANEL (70%) SWIPER ============ */
.gs-right {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gs-swiper-wrap {
  position: relative;
  padding: 6px 6px 50px;
}
.gs-swiper {
  overflow: hidden;
  padding: 10px 4px;
}
.gs-slide {
  height: auto;
}

.gs-nav-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246, 242, 232, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.gs-nav-btn:hover {
  background: var(--gold-gradient);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.35);
}
.gs-nav-prev {
  left: -6px;
}
.gs-nav-next {
  right: -6px;
}
.gs-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.gs-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.gs-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--gold-dim);
  opacity: 0.4;
  transform: rotate(45deg);
  margin: 0 !important;
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
}
.gs-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold-gradient);
  width: 13px;
  height: 13px;
  box-shadow: 0 0 14px rgba(201, 162, 75, 0.55);
}

/* ============ TESTIMONIAL CARD ============ */
.gs-card-outer {
  height: 100%;
  border-radius: 20px;
  padding: 1.4px;
  background: var(--border-gradient);
}
.gs-card {
  position: relative;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.05),
    rgba(10, 13, 11, 0.75)
  );
  backdrop-filter: blur(14px);
  padding: 30px 26px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.gs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lux);
}
.gs-card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.12;
  filter: blur(70px);
  top: -60px;
  left: -40px;
  pointer-events: none;
  z-index: 0;
}
.gs-quote-icon {
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 3.6rem;
  color: rgba(246, 242, 232, 0.05);
  z-index: 0;
  pointer-events: none;
}

.gs-stay-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  background: rgba(201, 162, 75, 0.08);
  padding: 5px 12px;
  border-radius: 30px;
}

.gs-top-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 90px;
}
.gs-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--gold-light);
  font-size: 0.78rem;
}
.gs-stars .gs-rating-num {
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.78rem;
  margin-left: 5px;
}
.gs-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  font-weight: 600;
  color: #8fd4a8;
  background: rgba(143, 212, 168, 0.08);
  border: 1px solid rgba(143, 212, 168, 0.25);
  padding: 4px 9px;
  border-radius: 30px;
}

.gs-review-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ivory);
  font-weight: 500;
  margin: 0;
  flex: 1;
}

.gs-room-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--ivory-dim);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.gs-room-info i {
  color: var(--gold-light);
}

.gs-guest-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gs-guest-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-dim);
  flex-shrink: 0;
}
.gs-guest-info {
  min-width: 0;
}
.gs-guest-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.gs-guest-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ivory);
}
.gs-member-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-gradient);
  padding: 3px 8px;
  border-radius: 20px;
}
.gs-guest-meta {
  font-size: 0.68rem;
  color: var(--ivory-dim);
  margin-top: 2px;
}

/* ============ TRUST STRIP ============ */
.gs-trust-strip {
  margin-top: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    120deg,
    rgba(246, 242, 232, 0.04),
    rgba(201, 162, 75, 0.05)
  );
  backdrop-filter: blur(6px);
}
.gs-trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.gs-trust-stat .gs-trust-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 1rem;
}
.gs-trust-stat .gs-trust-text {
  min-width: 0;
}
.gs-trust-stat .gs-trust-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ivory);
  line-height: 1.2;
}
.gs-trust-stat .gs-trust-label {
  font-size: 0.68rem;
  color: var(--ivory-dim);
  white-space: nowrap;
}
.gs-trust-divider {
  width: 1px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .gs-trust-strip {
    flex-wrap: wrap;
    padding: 18px;
    gap: 16px 10px;
  }
  .gs-trust-divider {
    display: none;
  }
  .gs-trust-stat {
    flex: 1 1 40%;
  }
}
@media (max-width: 1100px) {
  .gs-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .gs-left {
    max-width: 640px;
  }
  .gs-platform-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .gs-section {
    padding: 80px 0;
  }
  .gs-platform-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gs-score-row {
    flex-wrap: wrap;
  }
  .gs-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  .gs-nav-prev {
    left: -2px;
  }
  .gs-nav-next {
    right: -2px;
  }
  .gs-heading {
    font-size: 1.7rem;
  }
  .gs-review-text {
    font-size: 0.92rem;
  }
  .gs-card {
    padding: 26px 20px 22px;
  }
  .gs-top-row {
    padding-right: 78px;
    flex-wrap: wrap;
  }
  .gs-stay-badge {
    font-size: 0.56rem;
    padding: 4px 9px;
  }
  .gs-guest-name {
    font-size: 0.86rem;
  }
}
@media (max-width: 420px) {
  .gs-platform-chip .gs-p-name {
    font-size: 0.68rem;
  }
  .gs-score-text .gs-big-stat {
    font-size: 1.25rem;
  }
  .gs-heading {
    font-size: 1.5rem;
  }
}
/*==============================GALLERY SECTION STYLING==============================*/
.dsp-section {
  position: relative;
  background: var(--ink);
  padding: 110px 0 100px;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--ivory);
  isolation: isolate;
}

/* ---------- atmosphere ---------- */
.dsp-bgfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.dsp-glow-gold {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.16;
  filter: blur(120px);
}
.dsp-blob-grey {
  position: absolute;
  bottom: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(205, 198, 180, 0.55),
    transparent 70%
  );
  opacity: 0.14;
  filter: blur(130px);
}
.dsp-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 242, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 232, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
}

.dsp-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */
.dsp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.dsp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.14),
    rgba(201, 162, 75, 0.02)
  );
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.dsp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}
.dsp-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ivory);
}
.dsp-heading em {
  color: var(--gold-light);
  font-style: italic;
}
.dsp-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 auto;
}

/* ---------- filter tabs ---------- */
.dsp-tabs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 34px;
}
.dsp-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.dsp-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  min-width: max-content;
  padding: 2px;
  margin: 0 auto;
}
.dsp-tab {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--ivory-dim);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s var(--ease);
}
.dsp-tab:hover {
  border-color: var(--gold);
  color: var(--ivory);
}
.dsp-tab.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  border-color: transparent;
  color: var(--emerald-deep);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.28);
}
.dsp-tab i {
  margin-right: 6px;
}

/* ================= BENTO GALLERY ================= */
.dsp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 175px;
  grid-auto-flow: dense;
  gap: 18px;
  margin-bottom: 44px;
}
.dsp-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.dsp-tile.size-xl {
  grid-column: span 2;
  grid-row: span 2;
}
.dsp-tile.size-tall {
  grid-column: span 1;
  grid-row: span 2;
}
.dsp-tile.size-wide {
  grid-column: span 2;
  grid-row: span 1;
}
.dsp-tile.size-sm {
  grid-column: span 1;
  grid-row: span 1;
}
.dsp-tile.dsp-hidden {
  display: none;
}

.dsp-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.dsp-tile:hover .dsp-tile-img {
  transform: scale(1.1);
}

.dsp-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.05) 30%,
    rgba(7, 21, 16, 0.9) 100%
  );
  transition: background 0.5s var(--ease);
}
.dsp-tile:hover .dsp-tile-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 21, 16, 0.2) 10%,
    rgba(7, 21, 16, 0.88) 100%
  );
}

.dsp-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(10, 13, 11, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
}
.dsp-cat-badge i {
  margin-right: 4px;
}

.dsp-tile-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
}
.dsp-tile-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 10px;
  font-size: clamp(17px, 1.6vw, 22px);
}

.dsp-view-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 100px;
  background: rgba(246, 242, 232, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.dsp-view-cta i {
  font-size: 12px;
  color: var(--gold-light);
  transition: color 0.35s var(--ease);
}
.dsp-tile:hover .dsp-view-cta {
  background: var(--gold-light);
  color: var(--emerald-deep);
  border-color: transparent;
}
.dsp-tile:hover .dsp-view-cta i {
  color: var(--emerald-deep);
}
.dsp-gallery-hidden {
  display: none;
}

/* ---------- bottom strip ---------- */
.dsp-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    165deg,
    rgba(16, 22, 15, 0.55),
    rgba(7, 21, 16, 0.35)
  );
  backdrop-filter: blur(12px);
  margin-bottom: 56px;
}
.dsp-strip-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dsp-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dsp-strip-icon i {
  font-size: 20px;
  color: var(--gold-light);
}
.dsp-strip-text b {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ivory);
  font-weight: 600;
}
.dsp-strip-text span {
  font-size: 12.5px;
  color: var(--ivory-dim);
}
.dsp-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.dsp-strip-btn i {
  font-size: 12px;
  transition: transform 0.4s var(--ease);
}
.dsp-strip-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.dsp-strip-btn:hover i {
  transform: translateX(4px);
}

/* ---------- 360 tour banner ---------- */
.dsp-tour-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lux);
}
.dsp-tour-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dsp-tour-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 21, 16, 0.94) 30%,
    rgba(7, 21, 16, 0.55) 65%,
    rgba(7, 21, 16, 0.35) 100%
  );
}
.dsp-tour-content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 560px;
}
.dsp-tour-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.dsp-tour-eyebrow i {
  font-size: 14px;
}
.dsp-tour-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ivory);
  font-size: clamp(26px, 3.2vw, 38px);
  margin: 0 0 14px;
  line-height: 1.2;
}
.dsp-tour-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 0 26px;
}
.dsp-tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dim)
  );
  color: var(--emerald-deep);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(201, 162, 75, 0.3);
  transition: all 0.4s var(--ease);
}
.dsp-tour-btn i {
  font-size: 16px;
  transition: transform 0.4s var(--ease);
}
.dsp-tour-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(201, 162, 75, 0.45);
}
.dsp-tour-btn:hover i {
  transform: scale(1.15);
}

/* ============================================================ */
/* ============ BOOTSTRAP 5 MODAL CUSTOM STYLES ============ */
/* ============================================================ */

.modal-content {
  background: var(--ink-2);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-lux);
}
.modal-header {
  border-bottom: 1px solid var(--line);
  padding: 16px 22px;
}
.modal-header .modal-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ivory);
}
.modal-header .btn-close {
  filter: invert(1) brightness(2);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.modal-header .btn-close:hover {
  opacity: 1;
}
.modal-body {
  padding: 0;
  background: #000;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.modal-body .ratio {
  border-radius: 0 0 20px 20px;
}
.modal-body iframe {
  border: none;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .dsp-grid {
    grid-auto-rows: 150px;
  }
  .dsp-tour-content {
    padding: 36px;
  }
}
@media (max-width: 860px) {
  .dsp-section {
    padding: 90px 0 80px;
  }
  .dsp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dsp-tile.size-xl {
    grid-column: span 2;
    grid-row: span 2;
  }
  .dsp-tile.size-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .dsp-tile.size-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .dsp-tile.size-sm {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 640px) {
  .dsp-container {
    padding: 0 18px;
  }
  .dsp-header {
    margin-bottom: 30px;
  }
  .dsp-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .dsp-tile {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 230px;
  }
  .dsp-tile.size-xl {
    min-height: 300px;
  }
  .dsp-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .dsp-strip-btn {
    width: 100%;
    justify-content: center;
  }
  .dsp-tour-banner {
    min-height: auto;
  }
  .dsp-tour-content {
    padding: 28px 22px;
    max-width: none;
  }
  .dsp-tour-title {
    font-size: clamp(22px, 7vw, 30px);
  }
  .dsp-tour-desc {
    font-size: 13.5px;
  }
  .dsp-tour-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/*=========================CTA BANNER STYLING===========================*/

.ay-luxury-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--ivory);
  isolation: isolate;

  background-image:
    linear-gradient(
      180deg,
      rgba(7, 21, 16, 0.55) 0%,
      rgba(7, 21, 16, 0.78) 55%,
      rgba(7, 21, 16, 0.94) 100%
    ),
    url("../image/crousel_img/nvw_hotel.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  animation: ayBgZoom 20s ease-in-out infinite alternate;
}
@keyframes ayBgZoom {
  0% {
    background-size: cover, 100%;
  }
  100% {
    background-size: cover, 114%;
  }
}

/* ----- floating particles ----- */
.ay-particles-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ay-particle {
  position: absolute;
  bottom: -20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px 3px rgba(236, 212, 143, 0.5);
  opacity: 0;
  animation: ayFloat linear infinite;
}
@keyframes ayFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-620px) translateX(30px);
    opacity: 0;
  }
}

.ay-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* ================= GRID ================= */
.ay-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 34px;
  align-items: stretch;
}

/* ---------- hero glass card ---------- */
.ay-hero-card {
  position: relative;
  padding: 64px 48px 44px;
  border-radius: 140px 140px 28px 28px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.09),
    rgba(246, 242, 232, 0.02)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lux);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.ay-hero-card.ay-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Logo ----- */
.ay-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.ay-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 5px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(201, 162, 75, 0.25);
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}
.ay-logo-img:hover {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 0 50px rgba(201, 162, 75, 0.4);
}

.ay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.16),
    rgba(201, 162, 75, 0.03)
  );
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.ay-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}

.ay-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ivory);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--ease) 0.1s,
    transform 0.8s var(--ease) 0.1s;
}
.ay-hero-card.ay-visible .ay-heading {
  opacity: 1;
  transform: translateY(0);
}
.ay-heading em {
  color: var(--gold-light);
  font-style: italic;
}

.ay-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 34px;
}

.ay-stats-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.ay-stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.04);
  transition: all 0.4s var(--ease);
}
.ay-stat-chip:hover {
  border-color: var(--gold-dim);
  background: rgba(201, 162, 75, 0.08);
  transform: translateY(-3px);
}
.ay-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
}
.ay-stat-icon i {
  font-size: 16px;
  color: var(--emerald-deep);
}
.ay-stat-text {
  text-align: left;
}
.ay-stat-text b {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
}
.ay-stat-text span {
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.ay-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dim)
  );
  color: var(--emerald-deep);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(201, 162, 75, 0.32);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  animation: ayGlow 2.6s ease-in-out infinite;
}
@keyframes ayGlow {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(201, 162, 75, 0.32);
  }
  50% {
    box-shadow:
      0 16px 44px rgba(201, 162, 75, 0.55),
      0 0 0 6px rgba(201, 162, 75, 0.08);
  }
}
.ay-cta-btn i {
  font-size: 15px;
  transition: transform 0.4s var(--ease);
}
.ay-cta-btn:hover {
  transform: translateY(-3px);
}
.ay-cta-btn:hover i {
  transform: translateX(4px);
}

/* ---------- benefits column ---------- */
.ay-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.ay-benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.07),
    rgba(246, 242, 232, 0.02)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lux);
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.ay-benefit-card.ay-visible {
  opacity: 1;
  transform: translateX(0);
}
.ay-benefit-card:hover {
  border-color: rgba(236, 212, 143, 0.35);
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.11),
    rgba(246, 242, 232, 0.03)
  );
}

.ay-check-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
}
.ay-check-icon i {
  font-size: 16px;
  color: var(--emerald-deep);
}

.ay-benefit-text {
  min-width: 0;
}
.ay-benefit-text b {
  display: block;
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ivory);
}
.ay-benefit-text span {
  font-size: 11.5px;
  color: var(--ivory-dim);
}

/* ----- Help Card ----- */
.ay-benefit-card.ay-help-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.ay-help-top {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.ay-help-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.ay-help-contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.3s var(--ease);
  padding: 4px 0;
}
.ay-help-contacts a:hover {
  color: var(--gold-light);
}

.ay-contact-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.ay-contact-circle i {
  font-size: 14px;
  color: var(--gold-light);
  transition: color 0.4s var(--ease);
}
.ay-help-contacts a:hover .ay-contact-circle {
  background: var(--gold-light);
  border-color: transparent;
}
.ay-help-contacts a:hover .ay-contact-circle i {
  color: var(--emerald-deep);
}

/* ============================================================ */
/* ============ RESPONSIVE ============ */
/* ============================================================ */

@media (max-width: 1024px) {
  .ay-luxury-section {
    background-attachment: scroll;
  }
  .ay-grid {
    grid-template-columns: 1fr;
  }
  .ay-hero-card {
    padding: 56px 34px 38px;
    border-radius: 100px 100px 24px 24px;
  }
  .ay-benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ay-benefit-card {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .ay-luxury-section {
    padding: 100px 0;
    min-height: auto;
  }
  .ay-container {
    padding: 0 18px;
  }
  .ay-hero-card {
    padding: 44px 22px 32px;
    border-radius: 70px 70px 20px 20px;
  }
  .ay-heading {
    font-size: clamp(24px, 7vw, 30px);
  }
  .ay-desc {
    font-size: 13.5px;
  }
  .ay-stats-row {
    gap: 10px;
  }
  .ay-stat-chip {
    padding: 11px 14px;
  }
  .ay-stat-text b {
    font-size: 15px;
  }
  .ay-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
  .ay-logo-img {
    width: 60px;
    height: 60px;
  }

  /* 2x2 grid on mobile */
  .ay-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ay-benefit-card {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 14px 16px;
    gap: 8px;
    min-height: 100px;
  }
  .ay-benefit-card.ay-help-card {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
  }
  .ay-check-icon {
    width: 32px;
    height: 32px;
  }
  .ay-check-icon i {
    font-size: 13px;
  }
  .ay-benefit-text b {
    font-size: 13px;
  }
  .ay-benefit-text span {
    font-size: 10px;
  }
  .ay-help-top {
    gap: 10px;
    width: 100%;
  }
  .ay-contact-circle {
    width: 30px;
    height: 30px;
  }
  .ay-contact-circle i {
    font-size: 12px;
  }
  .ay-help-contacts a {
    font-size: 11px;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .ay-benefit-card {
    padding: 10px 10px 12px;
    min-height: 85px;
  }
  .ay-benefit-text b {
    font-size: 12px;
  }
  .ay-benefit-text span {
    font-size: 9.5px;
  }
  .ay-check-icon {
    width: 28px;
    height: 28px;
  }
  .ay-check-icon i {
    font-size: 11px;
  }
  .ay-contact-circle {
    width: 26px;
    height: 26px;
  }
  .ay-contact-circle i {
    font-size: 10px;
  }
  .ay-help-contacts a {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ay-luxury-section {
    animation: none;
  }
}
/*======================FAQ SECTION STYLING=========================*/
.fq-section {
  position: relative;
  background:
    radial-gradient(
      ellipse 55% 45% at 50% 0%,
      rgba(14, 42, 31, 0.5),
      transparent 60%
    ),
    var(--ink);
  padding: 110px 0 80px;
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--ivory);
  isolation: isolate;
}

.fq-bgfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.fq-glow-1 {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
  opacity: 0.18;
  filter: blur(120px);
}
.fq-glow-2 {
  position: absolute;
  bottom: -200px;
  left: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--emerald), transparent 70%);
  opacity: 0.5;
  filter: blur(120px);
}

.fq-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.fq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.fq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.14),
    rgba(201, 162, 75, 0.02)
  );
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.fq-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}
.fq-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ivory);
}
.fq-heading em {
  color: var(--gold-light);
  font-style: italic;
}
.fq-desc-top {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 auto;
}

/* ================= 70/30 SPLIT ================= */
.fq-split {
  display: grid;
  grid-template-columns: 68% 32%;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

/* ---------- LEFT: accordion ---------- */
.fq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fq-item {
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.05),
    rgba(246, 242, 232, 0.015)
  );
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.fq-item.fq-active {
  border-color: rgba(236, 212, 143, 0.4);
  background: linear-gradient(
    165deg,
    rgba(201, 162, 75, 0.08),
    rgba(246, 242, 232, 0.02)
  );
  box-shadow: var(--shadow-lux);
}

.fq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

/* ----- Question Number ----- */
.fq-number {
  flex: 0 0 auto;
  width: 32px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dim);
  text-align: center;
  transition: color 0.4s var(--ease);
}
.fq-item.fq-active .fq-number {
  color: var(--gold-light);
}

.fq-icon-badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.fq-item.fq-active .fq-icon-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
}
.fq-icon-badge i {
  font-size: 18px;
  color: var(--gold-light);
  transition: color 0.4s var(--ease);
}
.fq-item.fq-active .fq-icon-badge i {
  color: var(--emerald-deep);
}

.fq-q-text {
  flex: 1;
  font-family: var(--font-serif);
  font-size: clamp(15.5px, 1.6vw, 18.5px);
  font-weight: 600;
  color: var(--ivory);
}

/* door-style toggle */
.fq-toggle {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 60px;
  transition: all 0.4s var(--ease);
}
.fq-item.fq-active .fq-toggle {
  background: var(--gold-light);
  border-color: transparent;
}
.fq-door {
  width: 12px;
  height: 16px;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.fq-door::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.6px solid var(--ivory-dim);
  border-radius: 2px;
  transition: border-color 0.4s var(--ease);
}
.fq-door::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--ivory-dim);
  transform: translateY(-50%);
  transition: background 0.4s var(--ease);
}
.fq-item.fq-active .fq-door {
  transform: rotateY(-125deg);
}
.fq-item.fq-active .fq-door::before {
  border-color: var(--emerald-deep);
}
.fq-item.fq-active .fq-door::after {
  background: var(--emerald-deep);
}

.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.fq-answer-inner {
  padding: 0 22px 22px 82px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
}

/* ============================================================ */
/* ============ RIGHT PANEL ============ */
/* ============================================================ */

.fq-side-panel {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fq-side-card {
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.06),
    rgba(246, 242, 232, 0.015)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lux);
  transition: all 0.4s var(--ease);
}
.fq-side-card:hover {
  border-color: rgba(236, 212, 143, 0.25);
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.09),
    rgba(246, 242, 232, 0.02)
  );
}

.fq-side-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fq-side-title i {
  color: var(--gold-light);
  font-size: 18px;
}
.fq-side-sub {
  font-size: 12.5px;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 0 18px;
  line-height: 1.5;
}

.fq-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fq-stat-item {
  background: rgba(246, 242, 232, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.fq-stat-item:hover {
  background: rgba(201, 162, 75, 0.06);
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}
.fq-stat-item b {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
}
.fq-stat-item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
  font-weight: 500;
}

.fq-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(79, 191, 115, 0.12);
  border: 1px solid rgba(79, 191, 115, 0.2);
  margin-bottom: 16px;
}
.fq-status-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4fbf73;
  box-shadow: 0 0 12px rgba(79, 191, 115, 0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.fq-status-badge span {
  font-size: 11.5px;
  font-weight: 600;
  color: #8fd4a8;
  letter-spacing: 0.04em;
}

.fq-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.fq-contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.03);
  text-decoration: none;
  color: var(--ivory-dim);
  transition: all 0.4s var(--ease);
}
.fq-contact-btn:hover {
  background: rgba(201, 162, 75, 0.08);
  border-color: var(--gold-dim);
  color: var(--ivory);
  transform: translateX(4px);
}
.fq-contact-btn .btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.fq-contact-btn .btn-circle i {
  font-size: 16px;
  color: var(--gold-light);
}
.fq-contact-btn:hover .btn-circle {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
}
.fq-contact-btn:hover .btn-circle i {
  color: var(--emerald-deep);
}
.fq-contact-btn .btn-text {
  flex: 1;
}
.fq-contact-btn .btn-text b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
}
.fq-contact-btn .btn-text span {
  font-size: 11px;
  color: var(--ivory-dim);
  font-weight: 300;
}
.fq-contact-btn .btn-arrow {
  font-size: 13px;
  color: var(--gold-dim);
  transition: transform 0.4s var(--ease);
}
.fq-contact-btn:hover .btn-arrow {
  transform: translateX(4px);
  color: var(--gold-light);
}

.fq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.fq-tag {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.04);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ivory-dim);
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.fq-tag:hover {
  background: rgba(201, 162, 75, 0.08);
  border-color: var(--gold-dim);
  color: var(--gold-light);
}
.fq-tag i {
  margin-right: 5px;
  font-size: 10px;
}

/* ============================================================ */
/* ============ QUICK LINKS STRIP BOX ============ */
/* ============================================================ */

.fq-links-strip {
  margin-top: 10px;
  padding: 24px 28px;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    165deg,
    rgba(246, 242, 232, 0.05),
    rgba(246, 242, 232, 0.015)
  );
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.fq-links-strip .strip-label {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fq-links-strip .strip-label i {
  color: var(--gold-light);
  font-size: 16px;
}
.fq-links-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fq-links-group a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: rgba(246, 242, 232, 0.04);
  color: var(--ivory-dim);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s var(--ease);
}
.fq-links-group a:hover {
  background: rgba(201, 162, 75, 0.1);
  border-color: var(--gold-dim);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.fq-links-group a i {
  font-size: 11px;
  color: var(--gold-light);
}

/* ============================================================ */
/* ============ RESPONSIVE ============ */
/* ============================================================ */

@media (max-width: 1024px) {
  .fq-split {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .fq-side-panel {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .fq-container {
    padding: 0 18px;
  }
  .fq-section {
    padding: 90px 0 60px;
  }
  .fq-header {
    margin-bottom: 36px;
  }
  .fq-q-text {
    font-size: 14.5px;
  }
  .fq-number {
    font-size: 12px;
    width: 24px;
  }
  .fq-icon-badge {
    width: 38px;
    height: 38px;
  }
  .fq-icon-badge i {
    font-size: 15px;
  }
  .fq-answer-inner {
    padding: 0 18px 18px 66px;
    font-size: 13px;
  }
  .fq-toggle {
    width: 32px;
    height: 32px;
  }
  .fq-side-card {
    padding: 20px 16px;
  }
  .fq-stats-grid {
    gap: 8px;
  }
  .fq-stat-item {
    padding: 10px 8px;
  }
  .fq-stat-item b {
    font-size: 18px;
  }
  .fq-contact-btn {
    padding: 12px 14px;
    gap: 10px;
  }
  .fq-contact-btn .btn-circle {
    width: 34px;
    height: 34px;
  }
  .fq-contact-btn .btn-circle i {
    font-size: 14px;
  }
  .fq-contact-btn .btn-text b {
    font-size: 12px;
  }
  .fq-contact-btn .btn-text span {
    font-size: 10px;
  }
  .fq-tags {
    gap: 6px;
  }
  .fq-tag {
    font-size: 9.5px;
    padding: 4px 10px;
  }
  .fq-links-strip {
    padding: 18px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .fq-links-strip .strip-label {
    font-size: 14px;
  }
  .fq-links-group {
    gap: 8px;
  }
  .fq-links-group a {
    font-size: 11px;
    padding: 6px 14px;
  }
}

@media (max-width: 380px) {
  .fq-links-group a {
    font-size: 10px;
    padding: 5px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/*===============================MOBILE APP SECTION STYLING==============================*/

.app-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.app-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.app-glow-gold {
  width: 520px;
  height: 520px;
  top: -100px;
  left: -180px;
  background: var(--gold);
  opacity: 0.18;
}
.app-glow-emerald {
  width: 480px;
  height: 480px;
  bottom: -140px;
  right: -160px;
  background: var(--emerald);
  opacity: 0.22;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 232, 0.08);
  z-index: 0;
  pointer-events: none;
  animation: decoFloat 12s ease-in-out infinite;
}
.dc-1 {
  width: 120px;
  height: 120px;
  top: 14%;
  right: 20%;
  animation-duration: 10s;
}
.dc-2 {
  width: 70px;
  height: 70px;
  bottom: 18%;
  right: 8%;
  animation-duration: 8s;
  animation-direction: reverse;
}
.dc-3 {
  width: 46px;
  height: 46px;
  top: 60%;
  left: 6%;
  background: var(--gold-light);
  opacity: 0.15;
  border: none;
  animation-duration: 7s;
}
@keyframes decoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

.app-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--ivory) 1px, transparent 1px),
    linear-gradient(90deg, var(--ivory) 1px, transparent 1px);
  background-size: 44px 44px;
}

.app-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.app-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 50px;
  align-items: center;
}

/* ============================================================ */
/* ============ LEFT COLUMN - IMAGE WITH FLOATING BADGES ============ */
/* ============================================================ */

.app-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-image-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lux);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.app-image-wrap:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    var(--shadow-lux),
    0 0 60px rgba(201, 162, 75, 0.06);
}
.app-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.app-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(7, 21, 16, 0.35) 100%
  );
  pointer-events: none;
}

.app-image-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(10, 13, 11, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.app-image-badge i {
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ============================================================ */
/* ============ FLOATING BADGES ============ */
/* ============================================================ */

.float-badge {
  position: absolute;
  z-index: 5;
  background: rgba(246, 242, 232, 0.07);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lux);
  animation: badgeFloat 5s ease-in-out infinite;
  transition: all 0.4s var(--ease);
}
.float-badge:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
}
.float-badge i {
  font-size: 1rem;
  flex-shrink: 0;
}
.float-badge .fb-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
}
.float-badge .fb-sub {
  font-size: 0.58rem;
  color: var(--ivory-dim);
  margin-top: 1px;
}

/* Left side badges */
.fb-left-1 {
  top: 6%;
  left: -18%;
  animation-delay: 0s;
}
.fb-left-1 i {
  color: var(--gold-light);
}

.fb-left-2 {
  bottom: 28%;
  left: -20%;
  animation-delay: 1.2s;
  animation-duration: 6s;
}
.fb-left-2 i {
  color: #5fd6a3;
}

/* Right side badges */
.fb-right-1 {
  top: 28%;
  right: -18%;
  animation-delay: 0.6s;
  animation-duration: 5.6s;
}
.fb-right-1 i {
  color: var(--gold-light);
}

.fb-right-2 {
  bottom: 6%;
  right: -16%;
  animation-delay: 1.8s;
  animation-duration: 6.4s;
}
.fb-right-2 i {
  color: #5fd6a3;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ============================================================ */
/* ============ RIGHT COLUMN - CONTENT ============ */
/* ============================================================ */

.app-content-col {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 8px;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.section-badge .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
}

.app-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 16px;
}
.app-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
}

.app-desc {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 34px;
  max-width: 520px;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 38px;
}
.app-feature-card {
  background: rgba(246, 242, 232, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.app-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  background: rgba(246, 242, 232, 0.07);
  box-shadow: var(--shadow-lux);
}
.afc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.4s var(--ease);
}
.app-feature-card:hover .afc-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-deep);
  transform: scale(1.08) rotate(-6deg);
  border-color: transparent;
}
.afc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.3;
}

/* ============ DOWNLOAD ROW ============ */
.app-download-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--ink-2);
  border: 1px solid var(--glass-border);
  color: var(--ivory);
  transition: all 0.35s var(--ease);
}
.store-badge:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lux);
}
.store-badge i {
  font-size: 1.5rem;
  color: var(--gold-light);
}
.store-badge .sb-text {
  line-height: 1.15;
  text-align: left;
}
.store-badge .sb-small {
  font-size: 0.6rem;
  color: var(--ivory-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.store-badge .sb-big {
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.qr-strip {
  font-size: 0.62rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid var(--gold-dim);
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
}
.qr-strip i {
  margin-right: 4px;
}
.qr-img-wrap {
  padding: 6px;
  background: var(--ivory);
  border-radius: 12px;
  box-shadow: var(--shadow-lux);
}
.qr-img-wrap img {
  display: block;
  width: 80px;
  height: 80px;
}

/* ============================================================ */
/* ============ RESPONSIVE ============ */
/* ============================================================ */

@media (max-width: 1024px) {
  .app-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .app-image-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .app-desc {
    max-width: 100%;
  }
  /* Adjust floating badges for tablet */
  .fb-left-1 {
    left: -8%;
    top: 2%;
  }
  .fb-left-2 {
    left: -10%;
    bottom: 22%;
  }
  .fb-right-1 {
    right: -8%;
    top: 22%;
  }
  .fb-right-2 {
    right: -6%;
    bottom: 2%;
  }
}

@media (max-width: 767px) {
  .app-section {
    padding: 80px 0 70px;
  }
  .app-container {
    padding: 0 16px;
  }
  .app-image-wrap {
    max-width: 260px;
  }
  .app-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .app-download-row {
    flex-direction: column;
    align-items: stretch;
  }
  .store-btns {
    justify-content: center;
  }
  .store-badge {
    flex: 1;
    justify-content: center;
    min-width: 140px;
  }
  .qr-block {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }
  .app-image-badge {
    font-size: 0.55rem;
    padding: 5px 12px;
    gap: 6px;
  }
  .app-image-badge i {
    font-size: 0.65rem;
  }

  /* Floating badges on mobile */
  .float-badge {
    padding: 6px 12px;
    border-radius: 10px;
    gap: 6px;
  }
  .float-badge i {
    font-size: 0.7rem;
  }
  .float-badge .fb-title {
    font-size: 0.6rem;
  }
  .float-badge .fb-sub {
    font-size: 0.5rem;
  }
  .fb-left-1 {
    left: -4%;
    top: 0%;
  }
  .fb-left-2 {
    left: -6%;
    bottom: 18%;
  }
  .fb-right-1 {
    right: -4%;
    top: 18%;
  }
  .fb-right-2 {
    right: -2%;
    bottom: 0%;
  }
}

@media (max-width: 479px) {
  .app-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .app-feature-card {
    padding: 14px 10px;
  }
  .afc-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .afc-title {
    font-size: 0.7rem;
  }
  .store-badge {
    padding: 8px 14px;
  }
  .store-badge i {
    font-size: 1.2rem;
  }
  .store-badge .sb-big {
    font-size: 0.78rem;
  }
  .app-image-wrap {
    max-width: 200px;
  }
  .float-badge {
    padding: 4px 8px;
    border-radius: 8px;
  }
  .float-badge i {
    font-size: 0.6rem;
  }
  .float-badge .fb-title {
    font-size: 0.5rem;
  }
  .float-badge .fb-sub {
    display: none;
  }
  .fb-left-1 {
    left: -2%;
    top: -2%;
  }
  .fb-left-2 {
    left: -4%;
    bottom: 14%;
  }
  .fb-right-1 {
    right: -2%;
    top: 14%;
  }
  .fb-right-2 {
    right: 0%;
    bottom: -2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============ FOOTER SHELL ============ */
.nv-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--ink-2) 0%,
    var(--emerald-deep) 55%,
    var(--ink) 100%
  );
  padding: 80px 0 0;
  margin-top: -40px;
  color: var(--ivory-dim);
}

/* ============ GRID PATTERN BACKGROUND ============ */
.footer-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(246, 242, 232, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 232, 0.8) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0;
}

.fx-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}
.fx-glow-gold {
  top: -180px;
  left: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.3) 0%,
    rgba(201, 162, 75, 0.1) 40%,
    transparent 72%
  );
}
.fx-glow-blue {
  bottom: -220px;
  right: -200px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    var(--navy-glow) 0%,
    rgba(13, 27, 46, 0.16) 42%,
    transparent 72%
  );
}

.fx-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 140px 140px;
  mix-blend-mode: overlay;
}

.fx-curves {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><path d='M-20 60 C 100 -20, 260 140, 420 40' stroke='%23f6f2e8' stroke-width='1' fill='none'/><path d='M-20 200 C 120 120, 260 300, 420 200' stroke='%23f6f2e8' stroke-width='1' fill='none'/><path d='M-20 340 C 100 260, 300 420, 420 320' stroke='%23f6f2e8' stroke-width='1' fill='none'/></svg>");
  background-size: 420px 420px;
}

#fxParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-dim) 15%,
    var(--gold-light) 50%,
    var(--gold-dim) 85%,
    transparent 100%
  );
  opacity: 0.8;
}

/* ============================================================ */
/* ============ WATERMARK - CENTER OF FOOTER ============ */
/* ============================================================ */

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 8.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 162, 75, 0.12);
  text-stroke: 1.5px rgba(201, 162, 75, 0.12);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  text-shadow: 0 0 60px rgba(201, 162, 75, 0.03);
}

/* ============================================================ */
/* ============ FLOATING CTA - OVERLAPS FOOTER ============ */
/* ============================================================ */

.cta-float-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: -60px;
  padding: 0 24px;
  pointer-events: none;
}
.cta-float-wrap > * {
  pointer-events: auto;
}

.cta-float-card {
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 44px;
  border-radius: 24px;
  background: linear-gradient(
    155deg,
    rgba(20, 26, 20, 0.92),
    rgba(9, 13, 9, 0.92)
  );
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(201, 162, 75, 0.45);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.cta-float-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(201, 162, 75, 0.5);
}

.cta-float-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-float-icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(236, 212, 143, 0.25),
    rgba(201, 162, 75, 0.08)
  );
  border: 1px solid var(--gold-dim);
}
.cta-float-icon i {
  font-size: 26px;
  color: var(--gold-light);
}

.cta-float-text .cta-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.cta-float-text h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.cta-float-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dim)
  );
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.35);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.cta-float-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(201, 162, 75, 0.5);
}
.cta-float-btn i {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}
.cta-float-btn:hover i {
  transform: translateX(4px);
}

/* ============ MAIN CONTAINER ============ */
.footer-container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 30px;
}

/* ============ FOOTER GRID ============ */
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.2fr;
  gap: 32px;
  padding-top: 20px;
}

.f-col h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
}
.f-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

/* Brand column */
.f-brand-col {
  grid-column: span 1;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.f-logo-img {
  width: 60px;
  padding: 2px;
  height: 60px;
  background: var(--ivory);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex: 0 0 auto;
  box-shadow: 0 0 20px rgba(201, 162, 75, 0.15);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.f-logo-img:hover {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 0 30px rgba(201, 162, 75, 0.25);
}
.f-logo-text {
  font-family: var(--font-serif);
  line-height: 1.1;
}
.f-logo-text .f-name {
  display: block;
  font-size: 1.3rem;
  color: var(--ivory);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.f-logo-text .f-name b {
  color: var(--gold-light);
}
.f-logo-text .f-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-top: 3px;
}

.f-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin: 0 0 12px;
}
.f-about {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--ivory-dim);
  margin: 0 0 20px;
  max-width: 30ch;
  font-weight: 300;
}

.f-social {
  display: flex;
  gap: 10px;
}
.f-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(246, 242, 232, 0.02);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  color: var(--ivory-dim);
  font-size: 14px;
}
.f-social a:hover {
  border-color: var(--gold);
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.25);
  color: var(--ink);
}
.f-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(0);
  transition: transform 0.4s var(--ease);
}
.f-social a:hover::before {
  transform: scale(1);
}
.f-social a i {
  position: relative;
  z-index: 1;
}

/* Link lists */
.f-links li {
  margin-bottom: 12px;
}
.f-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ivory-dim);
  font-size: 0.84rem;
  font-weight: 300;
  transition: all 0.35s var(--ease);
}
.f-links a i {
  font-size: 10px;
  color: var(--gold-dim);
  transition: all 0.35s var(--ease);
  flex: 0 0 auto;
}
.f-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.f-links a:hover i {
  color: var(--gold-light);
  transform: translateX(3px);
}

.f-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.f-services .svc-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
  color: var(--gold-dim);
  font-size: 11px;
}
.f-services li:hover .svc-icon {
  border-color: var(--gold);
  color: var(--gold-light);
}
.f-services span.svc-label {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ivory-dim);
  transition: color 0.3s var(--ease);
}
.f-services li:hover span.svc-label {
  color: var(--ivory);
}

/* Contact */
.f-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.f-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(246, 242, 232, 0.02);
  transition: all 0.4s var(--ease);
  color: var(--gold-dim);
  font-size: 13px;
}
.f-contact-list li:hover .f-circle {
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.2);
  color: var(--gold-light);
}
.f-contact-list li span.ctxt {
  font-size: 0.82rem;
  font-weight: 300;
  padding-top: 6px;
  color: var(--ivory-dim);
  line-height: 1.5;
}

.f-direction-btn {
  margin-top: 4px;
  width: 100%;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
}
.f-direction-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.3);
}

/* ============ DIVIDER ============ */
.footer-divider {
  height: 1px;
  margin: 48px 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line) 20%,
    var(--line) 80%,
    transparent
  );
}

/* ============ GLASS CARDS ============ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}
.glass-card:hover {
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

/* ============ ROW 2: APP + QR + BADGES ============ */
.footer-row-2 {
  display: grid;
  grid-template-columns: 1.2fr auto 1.4fr;
  gap: 28px;
  align-items: center;
}

.app-download h5,
.newsletter h5,
.payments h5 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  font-size: 1.05rem;
  margin: 0 0 14px;
}
.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.35s var(--ease);
  color: var(--ivory);
  text-decoration: none;
}
.store-badge:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.store-badge i {
  font-size: 20px;
  color: var(--gold-light);
}
.store-badge .sb-text {
  line-height: 1.1;
}
.store-badge .sb-text small {
  display: block;
  font-size: 0.55rem;
  color: var(--ivory-dim);
  letter-spacing: 0.06em;
}
.store-badge .sb-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--ivory);
  font-weight: 500;
}

/* ===== QR CODE AS IMAGE ===== */
.qr-block {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-self: center;
  min-width: 100px;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s var(--ease);
}
.qr-block:hover {
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.qr-block img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.qr-block span {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.badges-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.badge-card {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}
.badge-card i {
  font-size: 20px;
  color: var(--gold-light);
  flex: 0 0 auto;
}
.badge-card .bc-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--ivory);
  font-weight: 500;
}
.badge-card .bc-text small {
  display: block;
  font-size: 0.62rem;
  color: var(--ivory-dim);
}

/* ============ ROW 3: NEWSLETTER + PAYMENTS ============ */
.footer-row-3 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}

.newsletter p {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 0 16px;
  max-width: 42ch;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 18px;
  max-width: 400px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 9px 0;
}
.newsletter-form input::placeholder {
  color: var(--ivory-dim);
}
.newsletter-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.35s var(--ease);
}
.newsletter-form button:hover {
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.35);
  transform: translateY(-1px);
}

.payments {
  text-align: right;
}
.payment-cards {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pay-card {
  width: 62px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--ivory);
  letter-spacing: 0.03em;
  padding: 0 10px;
}

/* ============ BOTTOM BAR ============ */
.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.75rem;
}
.copyright {
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0;
}
.designed-by {
  padding: 6px 16px;
  display: inline-flex;
  gap: 4px;
  color: var(--ivory-dim);
  font-weight: 300;
  text-decoration: none;
}
.designed-by strong {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.legal-links {
  display: flex;
  gap: 20px;
}
.legal-links a {
  color: var(--ivory-dim);
  font-weight: 300;
  transition: color 0.3s var(--ease);
  text-decoration: none;
}
.legal-links a:hover {
  color: var(--gold-light);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
  }
  .f-brand-col {
    grid-column: 1 / -1;
  }
  .footer-row-2 {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .app-download {
    text-align: center;
  }
  .app-badges {
    justify-content: center;
  }
  .badges-row {
    justify-content: center;
  }
  .footer-row-3 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter {
    text-align: center;
  }
  .newsletter-form {
    margin: 0 auto;
  }
  .payments {
    text-align: center;
  }
  .payment-cards {
    justify-content: center;
  }
  .cta-float-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 30px;
  }
  .cta-float-left {
    flex-direction: column;
  }
  .cta-float-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-watermark {
    font-size: clamp(3rem, 10vw, 6rem);
  }
}

@media (max-width: 720px) {
  .nv-footer {
    padding-top: 60px;
  }
  .cta-float-wrap {
    margin-bottom: -40px;
  }
  .cta-float-card {
    padding: 22px 20px;
    gap: 16px;
    border-radius: 18px;
  }
  .cta-float-icon {
    width: 50px;
    height: 50px;
  }
  .cta-float-icon i {
    font-size: 22px;
  }
  .cta-float-btn {
    padding: 14px 24px;
    font-size: 12px;
  }
  .footer-container {
    padding: 60px 18px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-watermark {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    -webkit-text-stroke: 1px rgba(201, 162, 75, 0.1);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }
  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .f-col h4 {
    font-size: 1rem;
  }
  .f-links a,
  .f-services span.svc-label,
  .f-contact-list li span.ctxt {
    font-size: 0.8rem;
  }
  .qr-block img {
    width: 50px;
    height: 50px;
  }
  .f-logo-img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .f-about {
    max-width: none;
  }
  .badge-card {
    min-width: 0;
    flex: 1 1 45%;
  }
  .cta-float-text h3 {
    font-size: 1rem;
  }
  .qr-block {
    min-width: 70px;
    padding: 10px 14px;
  }
  .qr-block img {
    width: 44px;
    height: 44px;
  }
  .footer-watermark {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    -webkit-text-stroke: 0.8px rgba(201, 162, 75, 0.08);
  }
  .f-logo-img {
    width: 34px;
    height: 34px;
  }
}
