/* =================================================================
   The Grand Dularia — deep black + gold + soft white luxury
   Awwwards-tier: cinematic, smooth-scroll-ready, mobile-first.
   Palette: #0B0B0B black, #C8A96A gold, #F5F5F5 soft white.
   ================================================================= */

:root {
  /* core */
  --bg: #0B0B0B;
  --bg-2: #111110;
  --bg-3: #181612;
  --bg-soft: #F5F5F5;
  --ink: #F5F5F5;
  --ink-2: #d8d3c5;
  --muted: #94897a;
  --muted-2: #5d564b;
  --line: rgba(200, 169, 106, 0.14);
  --line-2: rgba(200, 169, 106, 0.28);
  --line-soft: rgba(245, 245, 245, 0.08);

  --gold: #C8A96A;
  --gold-2: #e0c082;
  --gold-3: #f1dfb0;
  --gold-deep: #886a32;

  --whatsapp: #25d366;
  --whatsapp-deep: #1da851;
  --danger: #e08a6a;

  --f-serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --f-sans: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;

  --fs-display: clamp(2.6rem, 1.8rem + 7vw, 8.5rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 3.5vw, 5rem);
  --fs-h3: clamp(1.25rem, 1rem + 1vw, 2rem);
  --fs-eyebrow: 0.72rem;
  --fs-body: clamp(0.95rem, 0.92rem + 0.15vw, 1.06rem);
  --fs-lede: clamp(1rem, 0.9rem + 0.45vw, 1.24rem);

  --pad-x: clamp(1.1rem, 0.9rem + 3vw, 5rem);
  --pad-y: clamp(3.5rem, 3rem + 5vw, 9rem);
  --gap: clamp(0.9rem, 0.7rem + 1vw, 2rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  --r-1: 6px;
  --r-2: 14px;
  --r-3: 22px;
  --r-pill: 999px;

  --tap: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  min-height: var(--tap);
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

h1,
h2,
h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--ink);
}
em {
  font-style: italic;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
}

/* ambient glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(50% 45% at 12% 8%, rgba(200, 169, 106, 0.16), transparent 60%),
    radial-gradient(45% 40% at 88% 92%, rgba(200, 169, 106, 0.1), transparent 60%),
    linear-gradient(180deg, #0B0B0B, #0a0907);
  pointer-events: none;
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  mix-blend-mode: overlay;
  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='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0 0.4  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --------- cursor (desktop only) --------- */
.cursor {
  display: none;
  pointer-events: none;
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  mix-blend-mode: screen;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }
}
.cursor__dot,
.cursor__ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
}
.cursor__dot {
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  margin-top: -3.5px;
  background: var(--gold-3);
  border-radius: 50%;
  z-index: 10000;
}
.cursor__ring {
  width: 38px;
  height: 38px;
  margin-left: -19px;
  margin-top: -19px;
  border: 1px solid rgba(200, 169, 106, 0.55);
  border-radius: 50%;
  z-index: 9999;
  transition: width 0.4s var(--ease), height 0.4s var(--ease),
    margin 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.cursor.is-hovering .cursor__ring {
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.08);
}
.cursor.is-down .cursor__ring {
  width: 24px;
  height: 24px;
  margin-left: -12px;
  margin-top: -12px;
}

/* --------- progress bar --------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-2));
  box-shadow: 0 0 14px rgba(200, 169, 106, 0.5);
  transition: width 80ms linear;
}

/* --------- nav --------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 400ms var(--ease), backdrop-filter 400ms var(--ease),
    border-color 400ms var(--ease);
  border-bottom: 1px solid transparent;
  color: var(--ink);
}
.nav.is-stuck {
  background: rgba(11, 11, 11, 0.78);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  min-height: var(--tap);
}
.nav__brand em {
  color: var(--gold);
  margin-right: 0.3ch;
}
.nav__logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.nav__brand:hover .nav__logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(200, 169, 106, 0.4));
}
.nav__word {
  display: none;
}
@media (min-width: 1100px) {
  .nav__word {
    display: inline-block;
  }
}
@media (min-width: 1000px) {
  .nav__logo {
    height: 44px;
  }
}

/* mobile drawer */
.nav__links {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 1.1rem + 3vw, 2.4rem);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(200, 169, 106, 0.18), transparent 70%),
    radial-gradient(50% 40% at 50% 100%, rgba(200, 169, 106, 0.1), transparent 70%),
    var(--bg);
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease), visibility 0s linear 0.7s;
  color: var(--ink);
  z-index: 99;
  padding: 6rem 1rem 3rem;
  visibility: hidden;
}
.nav[data-open="true"] .nav__links {
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.7s var(--ease), visibility 0s linear 0s;
}
.nav__links a {
  position: relative;
  transition: color 0.3s var(--ease);
  padding: 0.3rem 0.5rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav__links a.is-active {
  color: var(--gold);
  font-style: italic;
}
.nav__links a.is-active::after {
  transform: scaleX(1);
}
.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  display: none;
}
.nav__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
  transition: border-color 0.4s var(--ease);
  z-index: 101;
  background: rgba(11, 11, 11, 0.4);
  backdrop-filter: blur(10px);
  color: var(--ink);
}
.nav__menu:hover {
  border-color: var(--gold);
}
.nav__menu span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav__menu span:nth-child(1) {
  top: 17px;
}
.nav__menu span:nth-child(2) {
  top: 24px;
}
.nav[data-open="true"] .nav__menu span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav[data-open="true"] .nav__menu span:nth-child(2) {
  top: 20px;
  transform: rotate(-45deg);
}

@media (min-width: 1000px) {
  .nav {
    padding: 1.1rem var(--pad-x);
    gap: 2rem;
  }
  .nav.is-stuck {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .nav__brand {
    font-size: 1.2rem;
  }
  .nav__mark {
    width: 34px;
    height: 34px;
  }
  .nav__links {
    position: static;
    inset: auto;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    gap: 1.7rem;
    font-family: var(--f-sans);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: inherit;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    visibility: visible;
    padding: 0;
  }
  .nav__links a {
    padding: 0;
    color: var(--muted);
    font-style: normal;
  }
  .nav__links a.is-active {
    color: var(--ink);
  }
  .nav__links a:hover {
    color: var(--gold);
  }
  .nav__links a:hover::after,
  .nav__links a.is-active::after {
    transform: scaleX(1);
  }
  .nav__cta {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-2);
    padding: 0.7rem 1.2rem;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(200, 169, 106, 0.08);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
      color 0.4s var(--ease);
    will-change: transform;
  }
  .nav__cta:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
  }
  .nav__menu {
    display: none;
  }
}

/* --------- shared --------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow--sm {
  font-size: 0.68rem;
}

.scene-head {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto clamp(2rem, 1.5rem + 3vw, 4.5rem);
  padding: 0 var(--pad-x);
}
.scene-head--left {
  text-align: left;
}
@media (min-width: 880px) {
  .scene-head--left {
    margin-left: var(--pad-x);
    margin-right: var(--pad-x);
  }
}
.scene-title {
  font-size: var(--fs-h2);
  margin-top: 0.8rem;
  color: var(--ink);
}
.scene-title em {
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.scene-lede {
  font-size: var(--fs-lede);
  color: var(--muted);
  margin-top: 1rem;
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
}

/* gold separator */
.diamond-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--gold);
  margin: 0.8rem 0 1rem;
}
.diamond-sep::before,
.diamond-sep::after {
  content: "";
  flex: 0 0 clamp(40px, 8vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.diamond-sep span {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
}

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  min-height: var(--tap);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  white-space: nowrap;
  will-change: transform;
  cursor: pointer;
  font-weight: 500;
}
@media (min-width: 880px) {
  .btn {
    padding: 1rem 1.6rem;
    font-size: 0.82rem;
  }
}
.btn--gold {
  --btn-bg: linear-gradient(135deg, var(--gold-2), var(--gold));
  --btn-fg: var(--bg);
  --btn-bd: transparent;
  box-shadow: 0 18px 40px -15px rgba(200, 169, 106, 0.55);
}
.btn--gold:hover {
  box-shadow: 0 26px 60px -10px rgba(200, 169, 106, 0.7);
}
.btn--glass {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(245, 245, 245, 0.04);
}
.btn--glass:hover {
  background: rgba(245, 245, 245, 0.1);
  border-color: var(--gold);
}
.btn--ghost {
  padding: 0.7rem 1.2rem;
  font-size: 0.76rem;
  min-height: auto;
}
.btn svg {
  transition: transform 0.4s var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}

.glass {
  background: linear-gradient(
    135deg,
    rgba(245, 245, 245, 0.06),
    rgba(245, 245, 245, 0.02) 50%,
    rgba(200, 169, 106, 0.06)
  );
  border: 1px solid rgba(200, 169, 106, 0.18);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  border-radius: var(--r-3);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), transparent 30%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.glass--xl {
  border-radius: clamp(1rem, 0.5rem + 1.5vw, 2rem);
}

.scene {
  position: relative;
  padding: var(--pad-y) 0;
}
.scene--alt {
  background: var(--bg-2);
}
.scene--soft {
  background: var(--bg-soft);
  color: var(--bg);
}
.scene--soft .scene-title {
  color: var(--bg);
}
.scene--soft .scene-lede {
  color: rgba(11, 11, 11, 0.6);
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* --------- HERO --------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero--page {
  min-height: 62vh;
  min-height: 62svh;
}
.hero__bg {
  position: absolute;
  inset: -8% -4% -4% -4%;
  z-index: 0;
  will-change: transform;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 2.6s var(--ease);
  filter: saturate(0.95) contrast(1.05) brightness(0.55);
}
.hero.is-ready .hero__img {
  transform: scale(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 70% 50% at 30% 40%,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.78) 80%
    ),
    linear-gradient(
      180deg,
      rgba(11, 11, 11, 0.55) 0%,
      rgba(11, 11, 11, 0.3) 45%,
      rgba(11, 11, 11, 0.96) 100%
    ),
    linear-gradient(45deg, rgba(200, 169, 106, 0.18), transparent 55%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 95% 80% at center,
    transparent 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  padding: clamp(5rem, 3rem + 8vw, 9rem) var(--pad-x) clamp(7rem, 5rem + 6vw, 11rem);
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  color: var(--ink);
}
.hero--page .hero__content {
  padding-bottom: clamp(5rem, 3rem + 4vw, 7rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 1s var(--ease) 0.2s forwards;
  font-weight: 500;
}
.hero__eyebrow .diamond {
  font-size: 0.6rem;
  letter-spacing: 0;
}
@media (min-width: 560px) {
  .hero__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
  }
}
.hero__title {
  font-size: var(--fs-display);
  color: var(--ink);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .w {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  animation: rise 1.2s var(--ease) forwards;
}
.hero__title .gold {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(120deg, var(--gold-3), var(--gold-2), var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title .line:nth-child(1) .w {
  animation-delay: 0.35s;
}
.hero__title .line:nth-child(2) .w {
  animation-delay: 0.5s;
}
.hero__sub {
  margin-top: 1.5rem;
  max-width: 38rem;
  color: var(--ink-2);
  font-family: var(--f-serif);
  font-size: var(--fs-lede);
  font-weight: 300;
  font-style: italic;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 1.2s var(--ease) 1s forwards;
}
@media (min-width: 560px) {
  .hero__sub {
    margin-top: 2rem;
  }
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 1.2s var(--ease) 1.15s forwards;
}
@media (min-width: 560px) {
  .hero__actions {
    margin-top: 2.4rem;
    gap: 1rem;
  }
}
.hero__marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.2rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
  opacity: 0;
  animation: rise 1.4s var(--ease) 1.5s forwards;
  display: none;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}
@media (min-width: 560px) {
  .hero__marquee {
    display: block;
    bottom: 5rem;
  }
}
.hero__marquee-track {
  display: inline-flex;
  gap: 3rem;
  padding-left: 3rem;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-3);
}
.hero__scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0;
  animation: rise 1s var(--ease) 1.8s forwards;
}
@media (min-width: 560px) {
  .hero__scroll {
    bottom: 1.5rem;
    font-size: 0.7rem;
    gap: 0.8rem;
    letter-spacing: 0.4em;
  }
}
.hero__scroll-bar {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
@media (min-width: 560px) {
  .hero__scroll-bar {
    height: 48px;
  }
}
.hero__scroll-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 16px;
  background: var(--gold-3);
  animation: scrollLine 1.8s var(--ease) infinite;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

/* --------- KPI STRIP --------- */
.strip {
  padding: clamp(3rem, 2rem + 3vw, 6rem) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}
.strip__kpi {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.strip__kpi:nth-child(2n) {
  border-left: 1px solid var(--line);
}
.strip__kpi:nth-child(n + 3) {
  border-bottom: 0;
}
@media (min-width: 760px) {
  .strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 0.5rem + 2vw, 3rem);
  }
  .strip__kpi {
    padding: 0 1rem;
    border-bottom: 0 !important;
    border-right: 1px solid var(--line);
    border-left: 0 !important;
  }
  .strip__kpi:last-child {
    border-right: 0;
  }
}
.strip__kpi .num {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 1.5rem + 3vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.strip__kpi .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
@media (min-width: 760px) {
  .strip__kpi .lbl {
    font-size: 0.76rem;
    letter-spacing: 0.2em;
  }
}

/* --------- STORY (pinned scroll) --------- */
.story {
  position: relative;
  height: 600vh; /* overall story length; pinned panel scrubs */
  background: var(--bg);
}
.story__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.story__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s var(--ease), transform 1.8s var(--ease);
}
.story__layer.is-active {
  opacity: 1;
  transform: scale(1);
}
.story__layer .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.6);
}
.story__layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 50%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75) 90%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.2) 50%, rgba(11, 11, 11, 0.95) 100%);
}
.story__copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  padding: 0 var(--pad-x);
  text-align: center;
  color: var(--ink);
  pointer-events: none;
}
.story__num {
  display: inline-block;
  font-family: var(--f-serif);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-style: italic;
}
.story__title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 1.6rem + 5vw, 5.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.story__title em {
  background: linear-gradient(120deg, var(--gold-3), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}
.story__lede {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto;
}
.story__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.story__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.18);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.story__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* --------- VENUE SHOWCASE CARDS (interactive) --------- */
.show-grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.8rem + 1.5vw, 2rem);
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .show-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.show-card {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
  will-change: transform;
}
.show-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.show-card__media .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.92) brightness(0.7);
}
.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--gold);
}
.show-card:hover .show-card__media .media {
  transform: scale(1.12);
  filter: saturate(1) brightness(0.85);
}
.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 11, 11, 0.94) 100%);
  z-index: 2;
}
.show-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 100%, rgba(200, 169, 106, 0.5), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: 3;
  mix-blend-mode: screen;
  pointer-events: none;
}
.show-card:hover .show-card__glow {
  opacity: 0.8;
}
.show-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: clamp(1.4rem, 1rem + 2vw, 2.2rem);
}
.show-card__tag {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.show-card h3 {
  font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 0.4rem;
  font-weight: 400;
}
.show-card__cap {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.show-card__use {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.show-card__use span {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid rgba(245, 245, 245, 0.16);
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(245, 245, 245, 0.04);
  font-weight: 500;
}
.show-card__open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap 0.3s var(--ease);
}
.show-card:hover .show-card__open {
  gap: 0.7rem;
}

/* --------- VENUE MODAL --------- */
.venmod {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(8, 7, 5, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
  overflow-y: auto;
}
.venmod.is-open {
  opacity: 1;
  pointer-events: auto;
}
.venmod__panel {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: clamp(4rem, 3rem + 4vw, 5rem) clamp(1rem, 2vw, 3rem) clamp(2rem, 1rem + 4vw, 5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  transform: translateY(40px);
  transition: transform 0.6s var(--ease);
}
.venmod.is-open .venmod__panel {
  transform: translateY(0);
}
@media (min-width: 880px) {
  .venmod__panel {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
}
.venmod__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 11, 11, 0.6);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 10;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  backdrop-filter: blur(14px);
}
.venmod__close:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.18);
}
@media (min-width: 880px) {
  .venmod__close {
    top: 1.5rem;
    right: 1.5rem;
  }
}
.venmod__slider {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.venmod__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.venmod__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.venmod__slide.is-active {
  opacity: 1;
}
.venmod__slide .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venmod__nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.venmod__nav button {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(245, 245, 245, 0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
  min-height: auto;
}
.venmod__nav button.is-active {
  background: var(--gold);
  width: 36px;
}
.venmod__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.venmod__arrow:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.2);
}
.venmod__arrow--prev {
  left: 1rem;
}
.venmod__arrow--next {
  right: 1rem;
}
.venmod__copy h3 {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  margin: 0.6rem 0 0.6rem;
  font-weight: 400;
  color: var(--ink);
}
.venmod__copy h3 em {
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}
.venmod__copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  font-family: var(--f-serif);
  font-style: italic;
}
.venmod__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.4rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.venmod__stats dt {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.venmod__stats dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: 1.05rem;
}
.venmod__uses {
  margin: 1.2rem 0 1.5rem;
}
.venmod__uses h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-weight: 500;
  font-family: var(--f-sans);
}
.venmod__uses ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.venmod__uses li {
  font-size: 0.78rem;
  border: 1px solid var(--line);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  background: rgba(245, 245, 245, 0.03);
  font-family: var(--f-serif);
}

/* --------- ROOFTOP NIGHT --------- */
.rooftop-section {
  position: relative;
  padding: clamp(5rem, 4rem + 5vw, 10rem) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0) 0%, rgba(11, 11, 11, 0.8) 100%),
    radial-gradient(80% 60% at 50% 0%, rgba(200, 169, 106, 0.18), transparent 70%),
    linear-gradient(180deg, #060606, #14110a 80%, #0B0B0B);
}
.rooftop-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.rooftop-section .scene-head,
.rooftop-section .rooftop-feat {
  position: relative;
  z-index: 2;
}
.rooftop-feat {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 800px) {
  .rooftop-feat {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.rooftop-bullet {
  background: rgba(245, 245, 245, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 1.4rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
    transform 0.4s var(--ease);
  backdrop-filter: blur(10px);
}
.rooftop-bullet:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.06);
  transform: translateY(-3px);
}
.rooftop-bullet__num {
  flex-shrink: 0;
  font-family: var(--f-serif);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  width: 50px;
}
.rooftop-bullet h4 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.rooftop-bullet p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* --------- BOOKING --------- */
.book {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
}
.book__bar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 1.2rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: end;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.6);
}
@media (min-width: 700px) {
  .book__bar {
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
  }
}
.book__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.book__field label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.book__field input,
.book__field select {
  padding: 0.85rem 1rem;
  border-radius: var(--r-1);
  border: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.6);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  font-size: 0.95rem;
  width: 100%;
  min-height: var(--tap);
}
.book__field input:focus,
.book__field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(11, 11, 11, 0.85);
}
.book__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23C8A96A' stroke-width='1.3'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
}
.book__check {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book__summary {
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--muted);
}
.book__summary strong {
  color: var(--gold);
  font-style: normal;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.rooms-grid {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.8rem + 1.5vw, 2rem);
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.room-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.room-tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px var(--gold);
}
.room-tile.is-unavailable {
  opacity: 0.55;
}
.room-tile.is-unavailable::after {
  content: "Unavailable";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(11, 11, 11, 0.7);
  border: 1px solid rgba(224, 138, 106, 0.5);
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.room-tile__media {
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.room-tile__media .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.room-tile:hover .room-tile__media .media {
  transform: scale(1.06);
}
.room-tile__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(11, 11, 11, 0.7);
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
}
.room-tile__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--gold);
  background: rgba(11, 11, 11, 0.7);
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-1);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.room-tile__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.room-tile__title {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
.room-tile__amen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.room-tile__amen span {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.3rem 0.55rem;
  border-radius: var(--r-pill);
  font-family: var(--f-serif);
}
.room-tile__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.room-tile__price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.room-tile__price .num {
  font-family: var(--f-serif);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.room-tile__price .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* booking confirm modal */
.confirm {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(8, 7, 5, 0.92);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.confirm.is-open {
  opacity: 1;
  pointer-events: auto;
}
.confirm__panel {
  max-width: 540px;
  width: 100%;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.06), rgba(200, 169, 106, 0.08));
  border: 1px solid var(--line-2);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-radius: clamp(1rem, 0.5rem + 1vw, 2rem);
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s var(--ease);
  backdrop-filter: blur(22px);
}
.confirm.is-open .confirm__panel {
  transform: translateY(0) scale(1);
}
.confirm__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  color: var(--bg);
  box-shadow: 0 18px 45px -15px rgba(200, 169, 106, 0.6);
}
.confirm h3 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  margin: 0 0 0.4rem;
}
.confirm h3 em {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}
.confirm p {
  color: var(--muted);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.confirm__details {
  background: rgba(11, 11, 11, 0.4);
  padding: 1rem;
  border-radius: var(--r-2);
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.88rem;
}
.confirm__details dt {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: center;
}
.confirm__details dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-serif);
}

/* --------- TESTIMONIALS auto-scroll --------- */
.testi-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 var(--pad-x);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: clamp(1rem, 0.8rem + 1.5vw, 2rem);
  width: max-content;
  animation: testiSlide 50s linear infinite;
}
.testi-track:hover {
  animation-play-state: paused;
}
@keyframes testiSlide {
  to {
    transform: translateX(-50%);
  }
}
.testi {
  flex: 0 0 clamp(280px, 28rem, 460px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.4s var(--ease);
}
.testi:hover {
  border-color: var(--gold);
}
.testi__stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 1rem;
}
.testi blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}
.testi__by {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.testi__by span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  margin-top: 0.2rem;
  letter-spacing: 0.1em;
}

/* --------- FEATURE HIGHLIGHTS --------- */
.feat-grid {
  padding: 0 var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.feat:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -25px rgba(200, 169, 106, 0.45);
}
.feat__ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  color: var(--gold);
  margin-bottom: 1.1rem;
  background: rgba(200, 169, 106, 0.08);
}
.feat h4 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.feat p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

/* --------- VENUE CARDS (legacy on venues.html) --------- */
.venue-grid {
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem);
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .venue-grid {
    grid-template-columns: repeat(3, 1fr);
    perspective: 1400px;
  }
}
.venue-detail {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 3rem + 5vw, 9rem);
}
.venue-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  align-items: center;
}
@media (min-width: 880px) {
  .venue-row {
    grid-template-columns: 1.2fr 1fr;
  }
  .venue-row:nth-child(even) .venue-row__media {
    order: 2;
  }
}
.venue-row__media {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.7);
}
.venue-row__media .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- venue carousel (on /venues page) ----- */
.venue-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.venue-carousel__slides {
  position: absolute;
  inset: 0;
}
.venue-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 1.6s var(--ease);
  transform: scale(1.04);
}
.venue-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.venue-carousel__slide .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.venue-carousel__arrow:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.2);
}
.venue-carousel__arrow--prev { left: 0.8rem; }
.venue-carousel__arrow--next { right: 0.8rem; }
.venue-carousel__dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.venue-carousel__dots button {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: rgba(245, 245, 245, 0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
  min-height: auto;
}
.venue-carousel__dots button.is-active {
  background: var(--gold);
  width: 32px;
}
.venue-carousel__counter {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  z-index: 3;
  letter-spacing: 0.02em;
}
.venue-row__body h3 {
  font-size: clamp(1.8rem, 1.3rem + 2vw, 3rem);
  color: var(--ink);
  margin: 0.6rem 0 1rem;
  font-weight: 400;
}
.venue-row__stats {
  margin: 1.5rem 0 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.venue-row__stats dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.venue-row__stats dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: 1.1rem;
}

/* capacity table */
.cap-table {
  max-width: 900px;
  margin: clamp(3rem, 2rem + 3vw, 5rem) auto 0;
  padding: 0 var(--pad-x);
}
.cap-table__grid {
  display: grid;
  gap: 0.7rem;
}
.cap-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: var(--bg-2);
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.4s var(--ease);
}
.cap-row:hover {
  border-color: var(--gold);
}
.cap-row--h {
  background: transparent;
  border-color: transparent;
  padding: 0.3rem 1.2rem;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.cap-row__name {
  font-family: var(--f-serif);
  color: var(--ink);
  font-size: 1.05rem;
}
.cap-row__v {
  color: var(--ink-2);
  font-family: var(--f-serif);
  font-size: 1rem;
}
@media (max-width: 640px) {
  .cap-row--h {
    display: none;
  }
  .cap-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.5rem;
  }
  .cap-row__name {
    grid-column: 1 / -1;
  }
  .cap-row__v::before {
    content: attr(data-k);
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
    font-family: var(--f-sans);
    font-weight: 500;
  }
}

/* --------- amenities --------- */
.amen-grid {
  padding: 0 var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 640px) {
  .amen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
}
@media (min-width: 1000px) {
  .amen-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.amen {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.3rem 0.9rem;
  border-radius: var(--r-2);
  text-align: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.amen:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.05);
  transform: translateY(-3px);
}
.amen__icon {
  color: var(--gold);
  margin: 0 auto 0.6rem;
  display: grid;
  place-items: center;
}
.amen__lbl {
  font-size: 0.78rem;
  color: var(--ink);
  font-family: var(--f-serif);
  font-weight: 500;
}

/* services */
.services {
  padding: 0 var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media (min-width: 640px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .services {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service {
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: var(--bg-2);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.service:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.05);
  transform: translateY(-3px);
}
.service__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  color: var(--gold);
  margin-bottom: 1rem;
  background: rgba(200, 169, 106, 0.08);
}
.service h4 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.service p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --------- GALLERY masonry --------- */
.gallery {
  padding-bottom: calc(var(--pad-y) + 2rem);
}
.g-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 var(--pad-x);
  margin-bottom: 2rem;
}
.g-chip {
  border: 1px solid var(--line-2);
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-2);
  transition: all 0.3s var(--ease);
  min-height: 38px;
  font-weight: 500;
}
.g-chip:hover {
  color: var(--ink);
  border-color: var(--gold);
}
.g-chip.is-active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg);
  border-color: var(--gold);
}

.g-masonry {
  padding: 0 var(--pad-x);
  columns: 1;
  column-gap: clamp(0.6rem, 0.4rem + 0.8vw, 1.4rem);
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .g-masonry {
    columns: 2;
  }
}
@media (min-width: 1100px) {
  .g-masonry {
    columns: 3;
  }
}
.g-tile {
  margin: 0 0 clamp(0.6rem, 0.4rem + 0.8vw, 1.4rem);
  break-inside: avoid;
  border-radius: var(--r-2);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease),
    opacity 0.5s var(--ease);
  will-change: transform;
  cursor: zoom-in;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
}
.g-tile.is-filtered-out {
  display: none;
}
.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(11, 11, 11, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.g-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.8),
    0 0 0 1px var(--gold);
}
.g-tile:hover::after {
  opacity: 1;
}
.g-tile__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 1.2s var(--ease),
    filter 0.8s var(--ease);
  filter: saturate(0.95) brightness(0.92);
  transform: scale(1.02);
}
.g-tile__img.is-loaded {
  opacity: 1;
  transform: scale(1);
}
.g-tile:hover .g-tile__img {
  filter: saturate(1.05) brightness(1);
}
.g-hint {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2rem;
  padding: 0 var(--pad-x);
}

/* --------- LIGHTBOX --------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 7, 5, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lb.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lb__img-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.lb__img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: var(--r-2);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease);
}
.lb.is-open .lb__img {
  transform: scale(1);
}
.lb__close,
.lb__prev,
.lb__next {
  position: absolute;
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  color: var(--ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
  z-index: 2;
}
.lb__close:hover,
.lb__prev:hover,
.lb__next:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.18);
}
.lb__close {
  top: clamp(0.8rem, 2vw, 2rem);
  right: clamp(0.8rem, 2vw, 2rem);
}
.lb__prev {
  left: clamp(0.8rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}
.lb__next {
  right: clamp(0.8rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}
.lb__prev:hover,
.lb__next:hover {
  transform: translateY(-50%) scale(1.08);
}
.lb__counter {
  position: absolute;
  bottom: clamp(0.8rem, 2vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-2);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(14px);
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
}

/* --------- CONTACT --------- */
.contact {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* keep the form panel below the fixed nav at all sizes */
  padding-top: clamp(6rem, 4.5rem + 3vw, 8rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
}
.contact__bg {
  position: absolute;
  inset: -6% -3% -3% -3%;
  z-index: 0;
  will-change: transform;
}
.contact__bg .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.85) brightness(0.5);
}
.contact__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.85),
    rgba(11, 11, 11, 0.6) 50%,
    rgba(11, 11, 11, 0.92)
  );
}
.contact__panel {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: calc(100% - 2 * var(--pad-x));
  padding: clamp(1.5rem, 1rem + 3vw, 4rem);
  margin: 0 auto;
}
.contact__title {
  font-size: var(--fs-h2);
  color: var(--ink);
  margin: 1rem 0 0.5rem;
  line-height: 1;
}
.contact__title em {
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}
.contact__lede {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contact__form {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
  }
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.contact__form .full {
  grid-column: 1 / -1;
}
.contact__form .lbl-txt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--r-1);
  border: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.55);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  font-size: 0.95rem;
  width: 100%;
  min-height: var(--tap);
}
.contact__form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23C8A96A' stroke-width='1.3'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(245, 245, 245, 0.32);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(11, 11, 11, 0.8);
}
.contact__form .is-error input,
.contact__form .is-error select,
.contact__form .is-error textarea {
  border-color: var(--danger);
}
.contact__form .err {
  display: none;
  color: #f3b09a;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  text-transform: none;
}
.contact__form .is-error .err {
  display: block;
}
.contact__form textarea {
  resize: vertical;
  min-height: 6rem;
}
.contact__sent {
  grid-column: 1 / -1;
  color: var(--gold);
  font-family: var(--f-serif);
  font-style: italic;
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-2);
  background: rgba(200, 169, 106, 0.08);
  margin: 0;
  font-size: 1.1rem;
}
.contact__meta {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contact__meta {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact__meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact__meta .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact__meta div > span:nth-child(2) {
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: 0.98rem;
}

/* map */
.map-card {
  padding: 0 var(--pad-x);
  max-width: 1200px;
  margin: clamp(3rem, 2rem + 3vw, 5rem) auto 0;
}
.map-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-3);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.7);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(1.1) contrast(0.95);
  transition: filter 0.4s var(--ease);
}
.map-embed:hover iframe {
  filter: invert(0.88) hue-rotate(180deg) saturate(0.8) brightness(1.15) contrast(0.98);
}
.map-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
@media (max-width: 640px) {
  .map-embed {
    aspect-ratio: 4 / 5;
  }
}
/* legacy fallback (kept for older pages) */
.map {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-3);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200, 169, 106, 0.1), transparent 60%),
    radial-gradient(circle at 60% 40%, rgba(200, 169, 106, 0.25), transparent 40%),
    linear-gradient(180deg, #131008, #0c0a07);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.map__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(200, 169, 106, 0.06) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(200, 169, 106, 0.06) 1px, transparent 1px) 0 0 / 40px 40px;
}
.map__pin {
  position: relative;
  z-index: 2;
  color: var(--gold);
  text-align: center;
}
.map__pin .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 0.8rem;
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.25),
    0 0 0 12px rgba(200, 169, 106, 0.12),
    0 0 30px rgba(200, 169, 106, 0.85);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.25),
      0 0 0 12px rgba(200, 169, 106, 0.12),
      0 0 30px rgba(200, 169, 106, 0.85);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(200, 169, 106, 0.32),
      0 0 0 20px rgba(200, 169, 106, 0.08),
      0 0 40px rgba(200, 169, 106, 1);
  }
}
.map__pin p {
  font-family: var(--f-serif);
  margin: 0;
  font-size: 1.05rem;
}

/* --------- CTA STRIP --------- */
.cta-strip {
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(200, 169, 106, 0.2), transparent 70%),
    var(--bg);
}
.cta-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 1.5rem + 3vw, 4rem);
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(245, 245, 245, 0.04),
    rgba(200, 169, 106, 0.06)
  );
  border: 1px solid var(--line-2);
  border-radius: clamp(1rem, 0.5rem + 1.5vw, 2rem);
  box-shadow: 0 30px 70px -25px rgba(200, 169, 106, 0.45);
  backdrop-filter: blur(22px);
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 1.3rem + 2.5vw, 3.4rem);
  margin-bottom: 1rem;
  color: var(--ink);
}
.cta-strip h2 em {
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.cta-strip p {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* --------- FAQ --------- */
.faq-list {
  padding: 0 var(--pad-x);
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item[open] {
  border-color: var(--line-2);
  background: rgba(200, 169, 106, 0.04);
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem);
  color: var(--ink);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s var(--ease);
  min-height: var(--tap);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--gold);
}
.faq-item__plus {
  flex-shrink: 0;
  font-family: var(--f-sans);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.faq-item[open] .faq-item__plus {
  transform: rotate(45deg);
}
.faq-item__a {
  padding: 0 1.4rem 1.2rem;
}
.faq-item__a p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ============================================================
   ROOMS PREVIEW (home) — 3 category cards
   ============================================================ */
.room-preview-grid {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 1rem + 1.5vw, 2rem);
}
@media (min-width: 760px) {
  .room-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .room-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.room-prev {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.room-prev:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 80px -25px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--gold);
}
.room-prev__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-prev__media .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.room-prev:hover .room-prev__media .media {
  transform: scale(1.06);
}
.room-prev__body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.room-prev__tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.room-prev__body h3 {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem);
  margin: 0;
  font-weight: 400;
}
.room-prev__meta {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
}
.room-prev__body p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
  margin: 0;
}
.room-prev__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room-prev__price .num {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
  line-height: 1;
}
.room-prev__price .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.room-prev__cta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   BOOKING PORTAL (rooms.html) — premium hotel layout
   ============================================================ */
.book-portal {
  padding: clamp(2rem, 1.5rem + 3vw, 4rem) 0;
}
.rooms-portal {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
}
.room-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden; /* mobile: clip rounded edges around stacked layout */
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
@media (min-width: 900px) {
  /* desktop: allow sticky child to escape scrolling context */
  .room-card {
    overflow: visible;
  }
  /* explicit clipping on the inner gallery so the rounded corner is preserved */
  .room-card__gallery {
    border-radius: var(--r-3) 0 0 var(--r-3);
    overflow: hidden;
  }
}
.room-card:hover {
  border-color: var(--line-2);
  box-shadow: 0 30px 80px -25px rgba(0, 0, 0, 0.6);
}
.room-card.is-unavailable {
  opacity: 0.5;
}
.room-card.is-unavailable .room-card__cta-row::before {
  content: 'Sold out for selected dates';
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
@media (min-width: 900px) {
  /* Exactly 50/50 image and info on desktop */
  .room-card {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* gallery slider */
.room-card__gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 900px) {
  /* On desktop the gallery sticks at the top of the room-card while the
     info column scrolls past beside it — image is always one fold tall
     and fills its full 50% column width (no aspect-ratio clamping). */
  .room-card__gallery {
    position: sticky;
    top: 80px;
    aspect-ratio: auto;
    height: calc(100vh - 110px);
    width: 100%;
    border-radius: var(--r-3) 0 0 var(--r-3);
  }
}
.room-card__slides {
  position: absolute;
  inset: 0;
}
.room-card__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.room-card__slide.is-active {
  opacity: 1;
}
.room-card__slide .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 11, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.room-card__arrow:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.2);
}
.room-card__arrow--prev { left: 0.8rem; }
.room-card__arrow--next { right: 0.8rem; }
.room-card__dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.room-card__dots button {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: rgba(245, 245, 245, 0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
  min-height: auto;
}
.room-card__dots button.is-active {
  background: var(--gold);
  width: 32px;
}
.room-card__cat-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(11, 11, 11, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

/* info side */
.room-card__info {
  padding: clamp(1.4rem, 1rem + 2vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.room-card__head h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  margin: 0 0 0.4rem;
  font-weight: 400;
}
.room-card__short {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.5;
}
.room-card__quick {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
@media (min-width: 1200px) {
  .room-card__quick {
    grid-template-columns: repeat(2, 1fr);
  }
}
.room-card__quick li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-2);
  font-size: 0.88rem;
}
.room-card__quick li svg {
  color: var(--gold);
  flex-shrink: 0;
}
.room-card__quick li span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.room-card__quick li strong {
  color: var(--ink);
  font-weight: 500;
}
.room-card__quick li em {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-style: normal;
}
.room-card__desc {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}
.room-card__desc + .room-card__desc {
  margin-top: -0.4rem;
}

/* Collapsible description: first paragraph always visible,
   the rest reveal under a "Read more" toggle. */
.room-card__more {
  display: block;
}
.room-card__more > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.3s var(--ease);
  min-height: auto;
  padding: 0.4rem 0;
}
.room-card__more > summary::-webkit-details-marker { display: none; }
.room-card__more > summary::after {
  content: '+';
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.4s var(--ease);
}
.room-card__more[open] > summary::after {
  transform: rotate(45deg);
}
.room-card__more > summary:hover {
  color: var(--gold-3);
}
.room-card__more > summary > .less { display: none; }
.room-card__more[open] > summary > .more { display: none; }
.room-card__more[open] > summary > .less { display: inline; }
.room-card__more .room-card__desc {
  margin-top: 0.7rem;
}
.room-card__more .room-card__desc + .room-card__desc {
  margin-top: 0.7rem;
}

/* tabs */
.room-tabs {
  margin-top: 0.4rem;
}
.room-tabs__head {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.room-tabs__head::-webkit-scrollbar { display: none; }
.room-tabs__btn {
  background: transparent;
  border: 0;
  padding: 0.7rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
  font-weight: 500;
  min-height: auto;
}
.room-tabs__btn:hover {
  color: var(--ink);
}
.room-tabs__btn.is-active {
  color: var(--gold);
}
.room-tabs__btn.is-active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
}
.room-tabs__panel {
  display: none;
  animation: tabIn 0.4s var(--ease);
}
.room-tabs__panel.is-active {
  display: block;
}
@keyframes tabIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.4rem;
  }
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
}
.check-list li.ok::before {
  content: '✓';
  background: rgba(200, 169, 106, 0.18);
  color: var(--gold);
  border: 1px solid rgba(200, 169, 106, 0.4);
}
.check-list li.no::before {
  content: '×';
  background: rgba(224, 138, 106, 0.14);
  color: var(--danger);
  border: 1px solid rgba(224, 138, 106, 0.35);
  font-size: 0.85rem;
}

.amen-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.amen-pills li {
  font-size: 0.78rem;
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  background: rgba(245, 245, 245, 0.03);
  font-family: var(--f-serif);
}

.room-card__note {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  padding: 0.9rem 1rem;
  background: rgba(200, 169, 106, 0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r-1) var(--r-1) 0;
}

.room-card__cta-row {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
/* Sold out: WhatsApp button stays usable (enquiry still allowed) but visually muted */
.room-card.is-unavailable .room-card__cta-row::before {
  content: 'Sold out for selected dates — message us anyway';
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: -0.4rem;
  font-weight: 500;
  font-family: var(--f-sans);
}
.room-card.is-unavailable .room-card__price .num { opacity: 0.6; }
[data-room-enquire].is-disabled {
  background: linear-gradient(135deg, #4a4135, #3a342a);
  box-shadow: none;
}
.room-card__price .num {
  font-family: var(--f-serif);
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
  line-height: 1;
}
.room-card__price .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ============================================================
   POLICIES (cancellation, child, T&C, etc.)
   ============================================================ */
.policies-grid {
  padding: 0 var(--pad-x);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.policy {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.policy[open] {
  border-color: var(--line-2);
  background: rgba(200, 169, 106, 0.04);
}
.policy summary {
  padding: 1.1rem 1.4rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem);
  color: var(--ink);
  font-weight: 500;
  min-height: var(--tap);
  transition: color 0.3s var(--ease);
}
.policy summary::-webkit-details-marker { display: none; }
.policy summary:hover { color: var(--gold); }
.policy__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.1);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.policy__plus {
  margin-left: auto;
  color: var(--gold);
  font-weight: 300;
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease);
  font-family: var(--f-sans);
  line-height: 1;
}
.policy[open] .policy__plus {
  transform: rotate(45deg);
}
.policy__body {
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
  line-height: 1.65;
}
.policy__body ul {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.policy__body li::marker {
  color: var(--gold);
}
.policy__body strong {
  color: var(--ink);
}
.policy__body h4 {
  margin: 1.4rem 0 0.6rem;
  color: var(--gold);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0;
}
.policy-table th,
.policy-table td {
  padding: 0.8rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.92rem;
}
.policy-table th {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.policy-table td:first-child {
  color: var(--ink);
  font-family: var(--f-serif);
}

/* ============================================================
   IN & AROUND NAGPUR
   ============================================================ */
.nearby-grid {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .nearby-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nearby-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.nearby-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-2));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nearby-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px -25px rgba(200, 169, 106, 0.4);
}
.nearby-card:hover::before {
  opacity: 1;
}
.nearby-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nearby-card__cat {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  border: 1px solid currentColor;
}
.nearby-card__cat--wildlife { color: #8eb87b; }
.nearby-card__cat--heritage { color: var(--gold-2); }
.nearby-card__cat--nature   { color: #6fb6c2; }
.nearby-card__cat--cuisine  { color: #d49263; }
.nearby-card__num {
  font-family: var(--f-serif);
  color: var(--gold);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  opacity: 0.5;
}
.nearby-card h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
.nearby-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.nearby-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nearby-card__meta svg {
  color: var(--gold);
}
.nearby-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   BLOG INDEX + ARTICLE
   ============================================================ */
.blog-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 var(--pad-x);
  margin-bottom: 2rem;
}
.blog-grid {
  padding: 0 var(--pad-x);
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 1rem + 1vw, 1.8rem);
}
@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-grid--related {
  margin-top: 0;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.blog-card.is-filtered-out {
  display: none;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px -25px rgba(200, 169, 106, 0.45);
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card__hue {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.blog-card__hue[data-hue="1"]  { background: linear-gradient(135deg, #1a3625 0%, #285439 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="2"]  { background: linear-gradient(135deg, #432a18 0%, #6e421f 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="3"]  { background: linear-gradient(135deg, #2a1a3b 0%, #4d2f5b 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="4"]  { background: linear-gradient(135deg, #3a1a1a 0%, #6e3033 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="5"]  { background: linear-gradient(135deg, #1a2c3b 0%, #2f4d6e 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="6"]  { background: linear-gradient(135deg, #2e3a14 0%, #4d5e22 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="7"]  { background: linear-gradient(135deg, #2a1a1a 0%, #5e3030 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="8"]  { background: linear-gradient(135deg, #3b2614 0%, #6e4322 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="9"]  { background: linear-gradient(135deg, #1a3036 0%, #2c5560 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="10"] { background: linear-gradient(135deg, #2c1e3a 0%, #4d3964 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="11"] { background: linear-gradient(135deg, #1a1a2e 0%, #2c2c4a 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="12"] { background: linear-gradient(135deg, #36231a 0%, #5d3b26 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="13"] { background: linear-gradient(135deg, #1a3030 0%, #2f5454 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="14"] { background: linear-gradient(135deg, #2c1a30 0%, #4f2f55 60%, #C8A96A 200%); }
.blog-card__hue[data-hue="15"] { background: linear-gradient(135deg, #3a3019 0%, #6e5a30 60%, #C8A96A 200%); }
.blog-card__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(200, 169, 106, 0.18), transparent 40%),
    repeating-linear-gradient(45deg, rgba(245, 245, 245, 0.02) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, rgba(11, 11, 11, 0) 30%, rgba(11, 11, 11, 0.55) 100%);
  opacity: 0.9;
  transition: transform 1.2s var(--ease);
  z-index: 1;
}
.blog-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.blog-card__image .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.85);
  transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
}
.blog-card:hover .blog-card__image .media {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.95);
}
.blog-card:hover .blog-card__pattern {
  transform: scale(1.06) rotate(0.5deg);
}
.blog-card__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  background: rgba(11, 11, 11, 0.65);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(200, 169, 106, 0.35);
  backdrop-filter: blur(10px);
  font-weight: 500;
  z-index: 2;
}
.blog-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.blog-card__body h3 {
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.blog-card:hover .blog-card__body h3 {
  color: var(--gold);
}
.blog-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

/* ARTICLE PAGE */
.article-hero {
  position: relative;
  padding: clamp(7rem, 5rem + 6vw, 12rem) var(--pad-x) clamp(3rem, 2rem + 4vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.article-hero[data-hue="1"]  { background: linear-gradient(135deg, #0B0B0B 0%, #1a3625 50%, #0B0B0B 100%); }
.article-hero[data-hue="2"]  { background: linear-gradient(135deg, #0B0B0B 0%, #432a18 50%, #0B0B0B 100%); }
.article-hero[data-hue="3"]  { background: linear-gradient(135deg, #0B0B0B 0%, #2a1a3b 50%, #0B0B0B 100%); }
.article-hero[data-hue="4"]  { background: linear-gradient(135deg, #0B0B0B 0%, #3a1a1a 50%, #0B0B0B 100%); }
.article-hero[data-hue="5"]  { background: linear-gradient(135deg, #0B0B0B 0%, #1a2c3b 50%, #0B0B0B 100%); }
.article-hero[data-hue="6"]  { background: linear-gradient(135deg, #0B0B0B 0%, #2e3a14 50%, #0B0B0B 100%); }
.article-hero[data-hue="7"]  { background: linear-gradient(135deg, #0B0B0B 0%, #2a1a1a 50%, #0B0B0B 100%); }
.article-hero[data-hue="8"]  { background: linear-gradient(135deg, #0B0B0B 0%, #3b2614 50%, #0B0B0B 100%); }
.article-hero[data-hue="9"]  { background: linear-gradient(135deg, #0B0B0B 0%, #1a3036 50%, #0B0B0B 100%); }
.article-hero[data-hue="10"] { background: linear-gradient(135deg, #0B0B0B 0%, #2c1e3a 50%, #0B0B0B 100%); }
.article-hero[data-hue="11"] { background: linear-gradient(135deg, #0B0B0B 0%, #1a1a2e 50%, #0B0B0B 100%); }
.article-hero[data-hue="12"] { background: linear-gradient(135deg, #0B0B0B 0%, #36231a 50%, #0B0B0B 100%); }
.article-hero[data-hue="13"] { background: linear-gradient(135deg, #0B0B0B 0%, #1a3030 50%, #0B0B0B 100%); }
.article-hero[data-hue="14"] { background: linear-gradient(135deg, #0B0B0B 0%, #2c1a30 50%, #0B0B0B 100%); }
.article-hero[data-hue="15"] { background: linear-gradient(135deg, #0B0B0B 0%, #3a3019 50%, #0B0B0B 100%); }
.article-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200, 169, 106, 0.16), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 169, 106, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
/* topical image behind the gradient — dimmed for text contrast */
.article-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.article-hero__image .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.55);
  transform: scale(1.04);
  transition: transform 2s var(--ease);
}
.article-hero:hover .article-hero__image .media {
  transform: scale(1);
}
.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.article-hero__back {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.article-hero__back:hover {
  color: var(--gold-3);
}
.article-hero__cat {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  border: 1px solid rgba(200, 169, 106, 0.45);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
  font-weight: 500;
}
.article-hero h1 {
  font-size: clamp(2rem, 1.5rem + 3vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  font-weight: 400;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.article-hero__meta time,
.article-hero__meta span {
  font-family: var(--f-serif);
  font-style: italic;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) var(--pad-x);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  margin: 2.5rem 0 0.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.article-body h2:first-of-type {
  margin-top: 1rem;
}
.article-body p {
  margin: 0 0 1.2rem;
}
.article-body ul,
.article-body ol {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.article-body li::marker {
  color: var(--gold);
}
.article-body strong {
  color: var(--ink);
}
.article-body a {
  color: var(--gold);
  border-bottom: 1px dashed rgba(200, 169, 106, 0.4);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.article-body a:hover {
  color: var(--gold-3);
  border-color: var(--gold);
}

.article-share {
  text-align: center;
  padding: clamp(2rem, 1.5rem + 2vw, 3rem) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.article-share p {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
}
.article-share__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.related-posts {
  background: var(--bg-2);
}

/* --------- BACK TO TOP --------- */
.totop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--gold);
  z-index: 50;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
    border-color 0.3s var(--ease);
  min-height: 48px;
}
.totop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.totop:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.15);
}
@media (min-width: 880px) {
  .totop {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

/* --------- WHATSAPP --------- */
.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 4.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
  color: #fff;
  z-index: 60;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  min-height: 54px;
}
.whatsapp::before,
.whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: ringPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.whatsapp::after {
  animation-delay: 1.2s;
}
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  80% {
    transform: scale(1.65);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.whatsapp:hover {
  transform: scale(1.08);
}
.whatsapp svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 2;
}
.whatsapp__label {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  font-weight: 500;
  z-index: 3;
}
.whatsapp:hover .whatsapp__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (min-width: 880px) {
  .whatsapp {
    right: 1.5rem;
    bottom: 5.4rem;
    width: 60px;
    height: 60px;
  }
  .whatsapp svg {
    width: 30px;
    height: 30px;
  }
}

/* --------- FOOTER --------- */
.foot {
  padding: 3rem var(--pad-x) 2.5rem;
  border-top: 1px solid var(--line);
  background: #050402;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.foot__grid {
  max-width: 1300px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .foot__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .foot__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.foot__brand {
  font-family: var(--f-serif);
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.foot__brand em {
  color: var(--gold);
}
.foot__brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: transform 0.5s var(--ease);
}
.foot__brand-logo img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}
.foot__brand-logo:hover {
  transform: scale(1.04);
}
.foot__tag {
  color: var(--muted);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  margin: 0 0 1.2rem;
  max-width: 22rem;
  line-height: 1.5;
}
.foot__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.foot__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.foot__social a:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.18);
  color: var(--gold);
}
.foot__col h5 {
  color: var(--gold);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 500;
}
.foot__col a,
.foot__col li {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
  transition: color 0.3s var(--ease);
  font-family: var(--f-serif);
  font-size: 1rem;
}
.foot__col a:hover {
  color: var(--gold);
}
.foot__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  text-transform: uppercase;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.foot__sep {
  color: var(--gold);
}

/* --------- reveal --------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .w,
  .hero__eyebrow,
  .hero__sub,
  .hero__actions,
  .hero__marquee,
  .hero__scroll,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .cursor {
    display: none !important;
  }
  body {
    cursor: auto;
  }
  .testi-track {
    animation: none;
  }
}

[data-tilt] {
  transition: transform 0.6s var(--ease);
}
