/* ============================================
   THE CARLTON KODAIKANAL
   Luxury Editorial Stylesheet - v2.0
   Reference: thetamara.com design language
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Raleway:wght@200;300;400;500&display=swap');

/* ============================================
   CSS VARIABLES - Edit Brand Here
   ============================================ */
:root {
  /* Brand Colors */
  --primary: #ff6500;
  --secondary: #d3dda3;
  --bg: #ffffff;
  --ink: #ff6500;
  --ink-mid: #3a3a3a;
  --muted: #888880;
  --pale: #f7f6f2;
  --rule: #e0ddd8;
  --white: #ffffff;
  --dark:#333333;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Raleway', sans-serif;

  /* Layout */
  --maxw: 1300px;
  --pad: 64px;
  --secv: 128px;

  /* Easing */
  --e1: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --e2: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  touch-action: manipulation;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   LAYOUT
   ============================================ */
.W {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sec {
  padding: var(--secv) 0;
}

.sec-sm {
  padding: 80px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rule);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 1);
}

.eyebrow.light::before,
.eyebrow.light::after {
  background: rgba(255, 255, 255, 0.2);
}

.eyebrow.center {
  justify-content: center;
}

.H {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.H em {
  font-style: italic;
  color: var(--primary);
}

.H.xl {
  font-size: clamp(54px, 7vw, 108px);
}

.H.lg {
  font-size: clamp(40px, 5vw, 72px);
}

.H.md {
  font-size: clamp(30px, 3.5vw, 52px);
}

.H.sm {
  font-size: clamp(22px, 2.5vw, 34px);
}

.H.white {
  color: var(--white);
}

.P {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dark);
}

.rule-bar {
  width: 56px;
  height: 1px;
  background: var(--primary);
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.5s var(--e1);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--e1);
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn-solid {
  background: var(--primary);
  color: var(--white);
  padding: 18px 44px;
  position: relative;
  overflow: hidden;
}

.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--e1);
}

.btn-solid:hover::after {
  transform: scaleX(1);
}

.btn-line {
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
}

.btn-line:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-line-w {
  color: var(--primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.btn-line-w:hover {
  border-color: var(--white);
}

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  transition: gap 0.3s var(--e1);
}

.tlink:hover {
  gap: 18px;
}

.tlink svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.7s var(--e1), box-shadow 0.7s var(--e1);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: filter 0.5s var(--e1);
}

.nav:not(.scrolled) .nav-logo img {
  /* filter: brightness(0) invert(1); */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav:not(.scrolled) .nav-a {
  color: #ffffff;
}

.nav.scrolled .nav-a {
  color: var(--ink-mid);
}

.nav-a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.4s var(--e1);
}

.nav-a:hover::after {
  width: 100%;
}

.nav-a:hover {
  color: var(--primary) !important;
}

.nav-book {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: var(--primary);
  cursor: pointer;
  transition: all 0.4s var(--e1);
}

.nav.scrolled .nav-book {
  /* border-color: var(--primary);
  color: var(--primary); */
}

.nav-book:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.ham span {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.4s var(--e1);
}

.nav.scrolled .ham span {
  background: var(--ink);
}

/* Drawer */
.drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--e1);
}

.drawer-bg.on {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: -110%;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--ink);
  z-index: 960;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  transition: right 0.65s var(--e2);
}

.drawer.on {
  right: 0;
}

.drawer-x {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s;
}

.drawer-x:hover {
  color: var(--white);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
}

.d-link {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s var(--e1);
  display: block;
}

.d-link:hover {
  color: var(--white);
  padding-left: 10px;
}

.drawer-book-btn {
  margin-top: 40px;
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--e1);
}

.slide.active {
  opacity: 1;
}

.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition: transform 10s var(--e1);
}

.slide.active img {
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: #00000042;
  z-index: 1;
}

/* Content */
.hero-body {
  position: absolute;
  z-index: 2;
  bottom: 13%;
  left: 0;
  right: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(14px);
  animation: fu 1s 0.3s var(--e2) forwards;
}

.hero-kicker::before {
  content: '';
  width: 52px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.6;
}

.hero-h {
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 110px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fu 1s 0.6s var(--e2) forwards;
}

.hero-h em {
  font-style: italic;
  color: var(--secondary);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(14px);
  animation: fu 1s 0.85s var(--e2) forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 44px;
  opacity: 0;
  transform: translateY(14px);
  animation: fu 1s 1.05s var(--e2) forwards;
}

/* Progress */
.hero-prog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.hero-prog-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.08s linear;
}

/* Counter */
.hero-num {
  position: absolute;
  bottom: 48px;
  right: 64px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
}

.hero-num strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.sc-line {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.sc-fill {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary);
  animation: scDrop 2.2s 1.4s var(--e1) infinite;
}

/* ============================================
   BOOKING BAR
   ============================================ */
.book-bar {
  background: var(--ink);
}

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  min-height: 90px;
  align-items: stretch;
}

.bf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.bf:hover {
  background: rgba(255, 255, 255, 0.03);
}

.bf label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary);
}

.bf input,
.bf select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  cursor: pointer;
  width: 100%;
}

.bf input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.bf select option {
  background: #1c1c1c;
  color: var(--white);
}

.book-submit {
  padding: 0 58px;
  color: var(--primary);
  background: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--primary);
}

.book-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  transform: translateX(-100%);
  transition: transform 0.4s var(--e1);
}

.book-submit:hover::after {
  transform: translateX(0);
}

/* ============================================
   INTRO EDITORIAL
   ============================================ */
.intro-sec {
  background: var(--bg);
  text-align: center;
}

.intro-sec .eyebrow {
  margin-bottom: 34px;
}

.intro-sec .H {
  max-width: 840px;
  margin: 0 auto 36px;
}

.intro-rule {
  margin-bottom: 34px;
}

.intro-p {
  max-width: 620px;
  margin: 0 auto 56px;
}

/* 4-column pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border: 1px solid var(--rule);
}

.pillar {
  padding: 56px 32px;
  border-right: 1px solid var(--rule);
  text-align: center;
  transition: background 0.4s var(--e1);
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: var(--pale);
}

.pil-n {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.pil-n sup {
  font-family: var(--sans);
  font-size: 18px;
  vertical-align: super;
  color: var(--primary);
}

.pil-l {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.pil-d {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   STORY - FULL-BLEED SPLIT
   ============================================ */
.story-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.story-img {
  position: relative;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e1);
}

.story-img:hover img {
  transform: scale(1.04);
}

.story-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 10px 22px;
}

.story-text {
  background: var(--pale);
  display: flex;
  align-items: center;
}

.story-text-in {
  padding: var(--secv) 88px;
  max-width: 620px;
}

.story-text .eyebrow {
  margin-bottom: 28px;
}

.story-text .H {
  margin-bottom: 28px;
}

.story-text .P {
  margin-bottom: 18px;
}

.story-text .P+.P {
  margin-bottom: 44px;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms-sec {
  background: var(--bg);
}

.rooms-hdr {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 60px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.r-card {
  display: flex;
  flex-direction: column;
}

.r-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 26px;
}

.r-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e1);
}

.r-card:hover .r-img img {
  transform: scale(1.06);
}

.r-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.r-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
}

.r-meta {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.r-m {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.r-m::before {
  content: ' | ';
  color: var(--rule);
  margin: 0 6px;
}

.r-m:first-child::before {
  display: none;
}

.r-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 22px;
  flex: 1;
}

.r-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.r-from {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.r-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
}

.r-price small {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
}

/* ============================================
   FULL BLEED BANNER
   ============================================ */
.fb {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.fb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--e1);
}

.fb:hover img {
  transform: scale(1.03);
}

.fb-veil {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.fb-veil .eyebrow {
  color: var(--secondary);
}

.fb-veil .eyebrow::before,
.fb-veil .eyebrow::after {
  background: rgba(211, 221, 163, 0.4);
}

/* ============================================
   DINING
   ============================================ */
.dining-sec {
  background: var(--pale);
  overflow: hidden;
}

.dining-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 84px;
  align-items: center;
}

.dining-imgs {
  display: grid;
  grid-template-columns: 3fr 3fr;
  grid-template-rows: 320px 320px;
  gap: 10px;
}

.di-a {
  /* grid-row: 1 / 3; */
  overflow: hidden;
}

.di-b,
.di-c {
  overflow: hidden;
}

.di-a img,
.di-b img,
.di-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e1);
}

.di-a:hover img,
.di-b:hover img,
.di-c:hover img {
  transform: scale(1.06);
}

.dining-content .eyebrow {
  margin-bottom: 22px;
}

.dining-content .H {
  margin-bottom: 22px;
}

.dining-content .P {
  margin-bottom: 36px;
}

.d-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 44px;
}

.d-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.d-item:first-child {
  border-top: 1px solid var(--rule);
}

.d-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

.d-item-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-mid);
  display: block;
  margin-bottom: 2px;
}

.d-item-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

/* ============================================
   EXPERIENCES
   ============================================ */
.exp-sec {
  background: var(--bg);
}

.exp-hdr {
  text-align: center;
  margin-bottom: 68px;
}

.exp-hdr .eyebrow {
  /* margin-bottom: 22px; */
}

.exp-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  background: var(--rule);
}

.exp-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4.2;
  cursor: pointer;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e1);
}

.exp-card:hover img {
  transform: scale(1.08);
}

.exp-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  transition: all 0.4s var(--e1);
}

.exp-card:hover .exp-veil {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.15) 55%);
}

.exp-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
}

.exp-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 5px;
}

.exp-sub {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
}

/* ============================================
   OFFERS (DARK)
   ============================================ */
.offers-sec {
  background: var(--ink);
}

.offers-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 56px;
}

.offers-hdr .H {
  color: var(--white);
}

.offers-hdr-l {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offers-sec .offers-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}

.offers-sec .o-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.offers-sec .o-card:first-child {
  aspect-ratio: 5/7;
}

.offers-sec .o-card:not(:first-child) {
  /* aspect-ratio: 3/4; */
}

.offers-sec .o-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e1);
}

.offers-sec .o-card:hover img {
  transform: scale(1.06);
}

.offers-sec .o-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.08) 55%);
}

.offers-sec .o-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 28px;
}

.offers-sec .o-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(211, 221, 163, 0.35);
  padding: 5px 14px;
  margin-bottom: 14px;
}

.offers-sec .o-title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 10px;
}

.offers-sec .o-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-sec {
  background: var(--pale);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testi-sec::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 500px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.03);
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-in {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.t-item {
  display: none;
}

.t-item.on {
  display: block;
}

.t-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
}

.t-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.t-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-mid);
  margin-bottom: 40px;
}

.t-rule {
  margin-bottom: 26px;
}

.t-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.t-loc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.t-pips {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
}

.t-pip {
  width: 36px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s var(--e1);
}

.t-pip.on {
  width: 56px;
  background: var(--primary);
}

/* ============================================
   GALLERY MOSAIC
   ============================================ */
.gal-sec {
  background: var(--bg);
}

.gal-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.gal-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 268px 268px;
  gap: 6px;
}

.g-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--e1);
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-ov {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--e1);
}

.g-item:hover .g-ov {
  opacity: 1;
}

.g-ov svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.g-item:nth-child(1) {
  grid-column: 1/6;
  grid-row: 1;
}

.g-item:nth-child(2) {
  grid-column: 6/9;
  grid-row: 1;
}

.g-item:nth-child(3) {
  grid-column: 9/13;
  grid-row: 1;
}

.g-item:nth-child(4) {
  grid-column: 1/4;
  grid-row: 2;
}

.g-item:nth-child(5) {
  grid-column: 4/8;
  grid-row: 2;
}

.g-item:nth-child(6) {
  grid-column: 8/13;
  grid-row: 2;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-ban {
  position: relative;
  padding: var(--secv) 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-veil {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.58);
}

.cta-in {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-in .eyebrow {
  margin-bottom: 26px;
}

.cta-in .H {
  margin-bottom: 18px;
}

.cta-in .P {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 48px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: center;
}

/* ============================================
   LOCATION
   ============================================ */
.loc-sec {
  background: var(--pale);
}

.loc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.loc-content .eyebrow {
  margin-bottom: 26px;
}

.loc-content .H {
  margin-bottom: 26px;
}

.loc-content .P {
  color: var(--dark);
  margin-bottom: 44px;
}

.loc-dets {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}

.loc-det {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-det:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-ico {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.loc-lbl {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.loc-val {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
}

.loc-val a {
  color: inherit;
  transition: color 0.2s;
}

.loc-val a:hover {
  color: var(--white);
}

.loc-map {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(25%) contrast(0.92);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0c0c0c;
  padding: 90px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.f-logo {
  height: 60px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  opacity: 0.75;
  margin-bottom: 22px;
  background: #ffffff;
  border-radius: 5px;
}

.f-tag {
  font-size: 14px;
  font-weight: 300;
  color: #ececec;
  line-height: 1.82;
  margin-bottom: 34px;
}

.f-socials {
  display: flex;
  gap: 10px;
}

.f-soc {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ececec;
  transition: all 0.3s var(--e1);
}

.f-soc svg {
  width: 15px;
  height: 15px;
}

.f-soc:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 101, 0, 0.06);
}

.f-col-ttl {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 26px;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-lnk {
  font-size: 14px;
  font-weight: 300;
  color: #ececec;
  display: block;
  transition: all 0.25s var(--e1);
}

.f-lnk:hover {
  color: var(--primary);
  padding-left: 7px;
}

.f-cons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.f-con-lbl {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.f-con-val {
  font-size: 14px;
  font-weight: 300;
  color: #ececec;
  line-height: 1.6;
}

.f-con-val a {
  color: #333333;
  transition: color 0.2s;
}

.f-con-val a:hover {
  color: var(--primary);
}

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.f-copy {
  font-size: 11px;
  font-weight: 300;
  color: #ececec;
}

footer .f-con-val a {
  color: #ececec;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 4, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--e1);
}

/* ============================================
   OFFER POPUP
   ============================================ */
.offer-popup-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--e1);
}

.offer-popup-bg.on {
  opacity: 1;
  pointer-events: all;
}

.offer-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 480px;
  background: var(--bg);
  z-index: 1010;
  padding: 50px 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s var(--e2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.offer-popup.on {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.offer-popup-x {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
}

.offer-popup-x:hover {
  color: var(--ink-mid);
}

.offer-popup-content .eyebrow {
  margin-bottom: 20px;
}

.offer-popup-content .H {
  margin-bottom: 20px;
}

.offer-popup-content .P {
  margin-bottom: 35px;
}

/* ============================================
   PAGE INTRO (Extracted from Hero)
   ============================================ */
.page-intro {
  padding: 60px 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-intro .breadcrumb {
  justify-content: center;
  margin-bottom: 20px;
}

.page-intro .eyebrow {
  margin-bottom: 15px;
}

.page-intro .H {
  margin-bottom: 20px;
}

.page-intro .P {
  max-width: 800px;
  margin: 0 auto;
}

.lb.on {
  opacity: 1;
  pointer-events: all;
}

.lb img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(0.94);
  transition: transform 0.5s var(--e2);
}

.lb.on img {
  transform: scale(1);
}

.lb-x {
  position: absolute;
  top: 28px;
  right: 38px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  cursor: pointer;
  transition: color 0.25s;
}

.lb-x:hover {
  color: var(--white);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.fu {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s var(--e2), transform 1s var(--e2);
}

.fu.in {
  opacity: 1;
  transform: translateY(0);
}

.fu.d1 {
  transition-delay: 0.1s;
}

.fu.d2 {
  transition-delay: 0.22s;
}

.fu.d3 {
  transition-delay: 0.34s;
}

.fu.d4 {
  transition-delay: 0.46s;
}

.fu.d5 {
  transition-delay: 0.58s;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scDrop {
  0% {
    top: -100%;
  }

  100% {
    top: 200%;
  }
}

/* ============================================
   RESPONSIVE - TABLET â‰¤ 1100px
   ============================================ */
@media (max-width: 1100px) {
  :root {
    --secv: 90px;
    --pad: 36px;
  }

  .nav-links,
  .nav-book {
    display: none;
  }

  .ham {
    display: flex;
  }
  .eyebrow::before, .eyebrow::after {
    display: none;
  }

  .book-form {
    grid-template-columns: 1fr 1fr;
  }

  .book-submit {
    grid-column: 1/3;
    padding: 22px;
    text-align: center;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar:nth-child(2n) {
    border-right: none;
  }

  .story-sec {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-img {
    height: 480px;
  }

  .story-text-in {
    padding: 64px 44px;
  }

  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-hdr {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dining-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dining-imgs {
    grid-template-rows: 280px 180px;
  }

  .exp-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .o-card:first-child {
    grid-column: 1/3;
    aspect-ratio: 16/8;
  }

  .gal-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .g-item:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1;
  }

  .g-item:nth-child(2) {
    grid-column: 4/7;
    grid-row: 1;
  }

  .g-item:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2;
  }

  .g-item:nth-child(4) {
    grid-column: 3/5;
    grid-row: 2;
  }

  .g-item:nth-child(5) {
    grid-column: 5/7;
    grid-row: 2;
  }

  .g-item:nth-child(6) {
    grid-column: 1/7;
    grid-row: 3;
  }

  .loc-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .loc-map {
    height: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }


  .footer-top img {
    filter: none;
  }

  .footer-top>div:first-child {
    grid-column: 1/3;
  }
}

/* ============================================
   RESPONSIVE - MOBILE â‰¤ 680px
   ============================================ */
@media (max-width: 680px) {
  :root {
    --secv: 64px;
    --pad: 20px;
  }

  .book-form {
    grid-template-columns: 1fr;
  }

  .book-submit {
    grid-column: auto;
  }

  .hero-scroll {
    display: none;
  }

  .hero-num {
    right: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: none;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .exp-row {
    grid-template-columns: 1fr 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .o-card:first-child {
    grid-column: auto;
    aspect-ratio: 4/5;
  }

  .offers-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gal-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .g-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gal-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-btns {
    flex-direction: column;
  }

  .dining-imgs {
    display: block;
  }

  .di-a {
    height: 280px;
  }

  .di-b,
  .di-c {
    padding-top: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
  .room-detail .room-gallery .gal-row {
    display: contents;
  }
  .room-detail .room-gallery .gal-row {
    display: grid;
    grid-template-columns: unset;
    gap: 14px;
}
.venue-detail .venue-gallery {
  display: contents;
}

  .footer-top>div:first-child {
    grid-column: auto;
  }

  .footer-bot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .story-text-in {
    padding: 52px 24px;
  }
}

/* ============================================
   DROPDOWN NAVIGATION
   ============================================ */

/* Arrow icon inside nav links */
.nav-links>li {
  position: relative;
}

.nav-links>li>a.nav-a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-a .arr {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
  flex-shrink: 0;
}

.nav-links>li:hover .arr {
  transform: rotate(180deg);
}

/* Dropdown panel */
.drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s var(--e1), transform .28s var(--e1);
  z-index: 999;
}

/* Invisible bridge to prevent hover loss between nav item and dropdown */
.drop::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
}

.nav-links>li:hover .drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.drop a {
  display: block;
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ink-mid);
  white-space: nowrap;
  transition: color .2s, background .2s;
}

.drop a:hover {
  color: var(--primary);
  background: var(--pale);
}

.drop-divider {
  height: 1px;
  background: var(--rule);
  margin: 6px 0;
}

/* ---- Mobile Drawer Accordion ---- */
.drawer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.drawer-nav .d-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.d-arr {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
  flex-shrink: 0;
}

.d-arr.open {
  transform: rotate(180deg);
}

.d-sub {
  display: none;
  background: rgba(255, 255, 255, .05);
  padding: 4px 0;
}

.d-sub.open {
  display: block;
}

.d-sub a {
  display: block;
  padding: 7px 10px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.d-sub a:hover {
  color: var(--secondary);
}






.page-hero-veil {
  background: linear-gradient(to bottom, rgba(8, 8, 8, .22) 0%, rgb(8 8 8 / 89%) 100%) !important;
}

/* ----- MIGRATED FROM INLINE STYLES ----- */

.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10%;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .22) 0%, rgba(8, 8, 8, .62) 100%);
}

.page-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-body .eyebrow {
  color: var(--secondary);
}

.page-hero-body .eyebrow::before,
.page-hero-body .eyebrow::after {
  background: rgba(211, 221, 163, .45);
}

.page-hero-body .H {
  color: var(--white);
  margin-top: 20px;
}

.page-hero-body .P {
  color: rgba(255, 255, 255, .62);
  margin-top: 14px;
  max-width: 540px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: inherit;
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .2);
}

.dining-venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  margin-bottom: 2px;
}

.dining-venue.reverse {
  direction: rtl;
}

.dining-venue.reverse>* {
  direction: ltr;
}

@media(max-width:860px) {

  .dining-venue,
  .dining-venue.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
}

.dv-img {
  position: relative;
  overflow: hidden;
}

.dv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 1s var(--e1);
}

.dining-venue:hover .dv-img img {
  transform: scale(1.04);
}

.dv-body {
  background: var(--pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}

@media(max-width:1100px) {
  .dv-body {
    padding: 48px 44px;
  }
}

@media(max-width:860px) {
  .dv-body {
    padding: 44px 28px;
  }
}

.dv-tag {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.dv-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.dv-name em {
  font-style: italic;
}

.dv-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.dv-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-ban {
  position: relative;
  overflow: hidden;
}

.cta-veil {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .52);
}

.cta-in {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 108px 0;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 44px;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fu {
  opacity: 0;
  animation: fu .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.d1 {
  animation-delay: .15s;
}

.d2 {
  animation-delay: .3s;
}

.d3 {
  animation-delay: .45s;
}

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8%;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .18) 0%, rgba(8, 8, 8, .62) 100%);
}

.gal-filter-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--pale);
}

.gal-filters {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  gap: 0;
}

.gal-filters::-webkit-scrollbar {
  display: none;
}

.gf-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 20px 26px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .3s var(--e1);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.gf-btn:hover {
  color: var(--ink);
}

.gf-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.gal-grid {
  columns: 3;
  gap: 8px;
  column-gap: 8px;
}

@media(max-width:860px) {
  .gal-grid {
    columns: 2;
  }
}

@media(max-width:520px) {
  .gal-grid {
    columns: 1;
  }
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gal-item img {
  width: 100%;
  display: block;
  transition: transform .9s var(--e1);
}

.gal-item:hover img {
  transform: scale(1.05);
}

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0);
  transition: background .3s;
}

.gal-item:hover .gal-item-overlay {
  background: rgba(8, 8, 8, .18);
}

.lb {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, .95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lb.open {
  opacity: 1;
  pointer-events: all;
}

.lb img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 200;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 16px 20px;
  opacity: .6;
  transition: opacity .2s;
  background: none;
  border: none;
}

.lb-prev:hover,
.lb-next:hover {
  opacity: 1;
}

.lb-prev {
  left: 12px;
}

.lb-next {
  right: 12px;
}

.hall-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--pale);
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}

.hall-item.rev .hall-img-wrap {
  order: 2;
}

.hall-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.hall-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.hall-item:hover .hall-img-wrap img {
  transform: scale(1.04);
}

.hall-text {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hall-text .H {
  margin-bottom: 24px;
}

.hall-text .P {
  color: var(--muted);
  max-width: 500px;
}

@media(max-width:960px) {
  .hall-text {
    padding: 48px 32px;
  }
}

@media(max-width:768px) {
  .hall-item {
    grid-template-columns: 1fr;
  }

  .hall-item.rev .hall-img-wrap {
    order: 0;
  }

  .hall-img-wrap {
    aspect-ratio: 16/10;
  }
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.o-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .35s var(--e1), transform .35s var(--e1);
}

.o-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .10);
  transform: translateY(-4px);
}

.o-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.o-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--e1);
}

.o-card:hover .o-img img {
  transform: scale(1.06);
}

.o-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 6px 14px;
  display: none;
}

.o-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.o-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.o-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 24px;
}

.o-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.rooms-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 44px;
}

@media (max-width: 780px) {
  .rooms-listing-grid {
    grid-template-columns: 1fr;
  }
}

.fu {
  opacity: 0;
  animation: fu .9s var(--e2, cubic-bezier(.16, 1, .3, 1)) forwards;
}

.d4 {
  animation-delay: .6s;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .22) 0%, rgba(8, 8, 8, .65) 100%);
}

.page-hero-body .P {
  color: rgba(255, 255, 255, .62);
  margin-top: 14px;
  max-width: 560px;
}

.breadcrumb span {
  color: rgba(255, 255, 255, .22);
}

.venue-tabs-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--pale);
}

.venue-tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.venue-tabs::-webkit-scrollbar {
  display: none;
}

.vtab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 20px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .35s var(--e1);
  white-space: nowrap;
}

.vtab:hover {
  color: var(--ink);
}

.vtab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.venue-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media(max-width:900px) {
  .venue-detail {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-hero {
    height: 55vh;
  }
}

.venue-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.venue-gallery .gal-main {
  grid-column: 1/-1;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.venue-gallery .gal-thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.venue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.venue-gallery .gal-main:hover img,
.venue-gallery .gal-thumb:hover img {
  transform: scale(1.05);
}

.venue-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 36px;
}

.venue-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 36px;
}

.vi-item {
  padding: 20px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.vi-item:nth-child(2n) {
  border-right: none;
}

.vi-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.vi-lbl {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.vi-val {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.5;
}

.page-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8%;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .22) 0%, rgba(8, 8, 8, .65) 100%);
}

.page-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-body .eyebrow {
  color: var(--secondary);
}

.page-hero-body .eyebrow::before,
.page-hero-body .eyebrow::after {
  background: rgba(211, 221, 163, .45);
}

.page-hero-body .H {
  color: var(--white);
  margin-top: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: inherit;
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

@media(max-width:900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.con-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.con-info-card {
  border: 1px solid var(--rule);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .3s;
}

.con-info-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
}

.con-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
}

.con-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.con-lbl {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.con-val {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

.con-val a {
  color: var(--ink-mid);
  transition: color .3s;
}

.con-val a:hover {
  color: var(--primary);
}

.form-wrap {
  background: var(--pale);
  border: 1px solid var(--rule);
  padding: 48px 44px;
}

@media(max-width:640px) {
  .form-wrap {
    padding: 32px 20px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width:580px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.map-wrap {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(20%);
  display: block;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media(max-width:860px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:540px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.office-card {
  border: 1px solid var(--rule);
  padding: 24px 20px;
  background: var(--pale);
}

.office-city {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.office-details {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.office-details a {
  color: var(--muted);
  transition: color .3s;
}

.office-details a:hover {
  color: var(--primary);
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fu {
  opacity: 0;
  animation: fu .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.d1 {
  animation-delay: .15s;
}

.d2 {
  animation-delay: .3s;
}

.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10%;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .18) 0%, rgba(8, 8, 8, .65) 100%);
}

.page-hero-body .P {
  color: rgba(255, 255, 255, .62);
  margin-top: 14px;
  max-width: 560px;
}

.wedding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media(max-width:860px) {
  .wedding-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.wedding-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wedding-img-stack .wi-main {
  grid-column: 1/-1;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.wedding-img-stack .wi-thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.wedding-img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.wedding-img-stack .wi-main:hover img,
.wedding-img-stack .wi-thumb:hover img {
  transform: scale(1.05);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

@media(max-width:860px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:540px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  border: 1px solid var(--rule);
  padding: 36px 28px;
  background: var(--pale);
  transition: transform .35s var(--e1), box-shadow .35s var(--e1);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.why-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.contact-form-wrap {
  background: var(--pale);
  border: 1px solid var(--rule);
  padding: 48px 44px;
}

@media(max-width:640px) {
  .contact-form-wrap {
    padding: 32px 24px;
  }
}

@media(max-width:640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-ban {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-veil {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .52);
}

.cta-in {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 108px 0;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.d3 {
  animation-delay: .45s;
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}

@media(max-width:1024px) {
  .fac-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:700px) {
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fac-card {
  background: var(--pale);
  padding: 10px 10spx;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: background .3s, transform .3s;
}

.fac-card:hover {
  background: #fff;
  transform: translateY(-3px);
}

.fac-icon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fac-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.fac-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--ink-mid);
  line-height: 1.4;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.club-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media(max-width:860px) {
  .club-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.club-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.club-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.club-img:hover img {
  transform: scale(1.04);
}

.ent-section {
  background: var(--ink);
  padding: 80px 0;
}

.ent-inner {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media(max-width:860px) {
  .ent-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ent-img {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.ent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.ent-img:hover img {
  transform: scale(1.04);
}

.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10%;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .22) 0%, rgba(8, 8, 8, .65) 100%);
}

.page-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero-body .eyebrow {
  color: var(--secondary);
}

.page-hero-body .eyebrow::before,
.page-hero-body .eyebrow::after {
  background: rgba(211, 221, 163, .45);
}

.page-hero-body .H {
  color: var(--white);
  margin-top: 20px;
}

.page-hero-body .P {
  color: rgba(255, 255, 255, .62);
  margin-top: 14px;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: inherit;
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .22);
}

.offer-tabs-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--pale);
}

.offer-tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.offer-tabs::-webkit-scrollbar {
  display: none;
}

.otab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 20px 26px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .35s var(--e1);
  white-space: nowrap;
}

.otab:hover {
  color: var(--ink);
}

.otab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.offer-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media(max-width:900px) {
  .offer-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero {
    height: 55vh;
  }
}

.offer-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.offer-img-wrap:hover img {
  transform: scale(1.04);
}

.offer-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 36px;
}

.price-box {
  border: 1px solid var(--rule);
  padding: 28px 32px;
  margin-bottom: 36px;
  background: var(--pale);
}

.price-box-title {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}

.price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-room {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-mid);
}

.price-amount {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

.price-amount small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

.incl-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.incl-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.incl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}

.incl-list li:last-child {
  border-bottom: none;
}

.incl-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
}

.validity-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--pale);
  border: 1px solid var(--rule);
  padding: 10px 18px;
  margin-bottom: 32px;
}

.validity-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.cta-ban {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-veil {
  position: absolute;
  inset: 0;
  background: rgb(8 8 8 / 62%);
}

.cta-in {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 108px 0;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 44px;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fu {
  opacity: 0;
  animation: fu .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.d1 {
  animation-delay: .15s;
}

.d2 {
  animation-delay: .3s;
}

.offer-tabs-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--pale);
}

.offer-tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.offer-tabs::-webkit-scrollbar {
  display: none;
}

.otab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 20px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .35s var(--e1);
  white-space: nowrap;
}

.otab:hover {
  color: var(--ink);
}

.otab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.offer-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media(max-width:900px) {
  .offer-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero {
    height: 55vh;
  }
}

.offer-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.offer-img-wrap:hover img {
  transform: scale(1.04);
}

.offer-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 36px;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300; 
  padding: 10px 30px;
  margin-bottom: 28px;
}

.discount-badge span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.4;
}

.incl-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.incl-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.incl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}

.incl-list li:last-child {
  border-bottom: none;
}

.incl-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
}

.room-tabs-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--pale);
}

.room-tabs {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.room-tabs::-webkit-scrollbar {
  display: none;
}

.rtab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 22px 32px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .35s var(--e1);
  white-space: nowrap;
}

.rtab:hover {
  color: var(--ink);
}

.rtab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media(max-width:900px) {
  .room-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero {
    height: 55vh;
  }
}

.room-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.room-gallery .gal-main {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-gallery .gal-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.room-gallery .gal-main:hover img {
  transform: scale(1.05);
}

.room-gallery .gal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.room-gallery .gal-thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-gallery .gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e1);
}

.room-gallery .gal-thumb:hover img {
  transform: scale(1.06);
}

.room-desc-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 44px;
}

.facilities-section {
  background: var(--pale);
  border-top: 1px solid var(--rule);
}

.facilities-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.facilities-header-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.amenities-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 24px;
  margin-bottom: 56px;
}

@media(max-width:1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:640px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.5;
  padding: 8px 0;
}

.amenity-item::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 5px;
}

.cottage-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}

.cf-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.cf-item:last-child {
  border-right: none;
}

.cf-icon {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}

.cf-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

.room-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
}

.rtab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 22px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .35s var(--e1);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .room-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero {
    height: 55vh;
  }
}

.room-content-col {}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.room-desc-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 36px;
}

.suite-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 44px;
}

.sh-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.sh-item:last-child {
  border-right: none;
}

.sh-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 6px;
}

.sh-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.suite-intro-strip {
  background: var(--ink);
  padding: 72px 0;
}

.suite-intro-strip .eyebrow {
  color: rgba(255, 255, 255, .4);
}

.suite-intro-strip .eyebrow::before,
.suite-intro-strip .eyebrow::after {
  background: rgba(255, 255, 255, .15);
}

.suite-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media(max-width:760px) {
  .suite-intro-inner {
    grid-template-columns: 1fr;
  }
}


/* ----- MIGRATED INLINE STYLE ATTRIBUTES ----- */

.u-style-44f71c {
  display: flex;
  align-items: center;
  gap: 20px;
}

.u-style-716ecf {
  margin-top: 20px;
}

.u-style-26dd46 {
  padding: 0;
}

.u-style-241a9a {
  padding-bottom: 60;
}

.u-style-46eae9 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.u-style-f29b5b {
  margin-top: 28px;
}

.u-style-683889 {
  margin: 32px auto;
}

.u-style-240d8b {
  padding: 0 0 80px;
}

.u-style-fff242 {
  margin-bottom: 26px;
}

.u-style-5499ee {
  margin-bottom: 18px;
}

.u-style-433ad8 {
  text-align: center;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.u-style-ecf405 {
  padding-top: 0;
  padding-bottom: 0;
}

.u-style-deead0 {
  max-width: 840px;
  margin: 32px auto 0;
  text-align: center;
}

.u-style-260011 {
  margin: 36px auto;
}

.u-style-1b7551 {
  max-width: 780px;
  margin: 0 auto 0;
  text-align: center;
}

.u-style-d1ee06 {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--primary);
  vertical-align: super;
}

.u-style-801732 {
  margin-bottom: 28px;
}

.u-style-684111 {
  margin-bottom: 20px;
}

.u-style-c55e54 {
  text-align: center;
  max-width: 700px;
}

.u-style-d79ce2 {
  margin-top: 8px;
}

.u-style-97e650 {
  margin-bottom: 22px;
}

.u-style-60417c {
  margin-bottom: 36px;
}

.u-style-5a0c26 {
  margin-top: 22px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.u-style-b7caef {
  margin-top: 52px;
  text-align: center;
}

.u-style-0de2aa {
  color: var(--secondary);
}

.u-style-037b60 {
  text-align: center;
  margin-bottom: 56px;
}

.u-style-fad6b7 {
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.u-style-444422 {
  text-align: center;
  margin-bottom: 18px;
}

.u-style-f13ab9 {
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 48px;
}

.u-style-db5190 {
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 44px;
}

.u-style-6711a6 {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px auto;
}

.u-style-df6f53 {
  color: var(--muted);
}

.u-style-013814 {
  padding-top: 0;
}

.u-style-1b7095 {
  text-align: center;
  margin-top: 64px;
}

.u-style-ebe189 {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.u-style-1265ee {
  margin-bottom: 32px;
}

.u-style-cf5a7a {
  width: 100%;
  justify-content: center;
}

.u-style-46dcee {
  margin: 0;
}

.u-style-342a5c {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.u-style-64e186 {
  margin-top: 24px;
}

.u-style-ca1ec3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.u-style-770ad5 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

.u-style-cbae6d {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 0;
}

.u-style-2d05c9 {
  background: var(--pale);
  padding: 80px 0;
}

.u-style-946c60 {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.u-style-652124 {
  max-width: 760px;
  margin: 0 auto;
}

.u-style-1ded3b {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.u-style-5d72e9 {
  color: var(--secondary);
  margin-bottom: 22px;
}

.u-style-309e5a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .62);
  line-height: 1.9;
  margin-bottom: 36px;
}

.u-style-6ad7e5 {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.u-style-2753a3 {
  margin-bottom: 44px;
}

.u-style-b0ddb8 {
  color: rgba(255, 255, 255, .55);
}

/* ============================================
   ITINERARIES
   ============================================ */
.iti-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .iti-grid {
    grid-template-columns: 1fr;
  }
}

.iti-card {
  background: var(--pale);
  padding: 40px;
  border-left: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--e1), box-shadow 0.4s var(--e1);
  overflow: hidden;
}

.iti-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.iti-img {
  position: relative;
  /* overflow: hidden; */
  aspect-ratio: 16/9;
  margin: -40px -40px 16px -40px;
  flex-shrink: 0;
}

.iti-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--e1);
}

.iti-card:hover .iti-img img {
  transform: scale(1.05);
}

.iti-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

.iti-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.iti-name a:hover {
  color: var(--primary);
}

.iti-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.iti-route {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
  background: var(--white);
  padding: 16px 20px;
  border-radius: 2px;
}

.iti-route strong {
  font-weight: 500;
  color: var(--primary);
}

.iti-notes {
  background: var(--ink);
  color: var(--white);
  padding: 50px 60px;
  margin-top: 60px;
}

.iti-notes h4 {
  color: var(--white);
  margin-bottom: 24px;
}

.iti-notes ul {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

@media (max-width: 768px) {
  .iti-notes ul {
    grid-template-columns: 1fr;
  }
}

.iti-notes li {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  list-style-type: disc;
}

.iti-notes li::before {
  content: 'â€¢';
  position: absolute;
  left: 0;
  color: var(--primary);
  display: none;
}

.iti-notes p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 24px;
}

/* ============================================
   WELLNESS PAGE
   ============================================ */
.well-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.well-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 32px;
  text-align: center;
  transition: transform 0.4s var(--e1), box-shadow 0.4s var(--e1);
}

.well-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.well-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 28px;
}

.well-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 300;
}

.well-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 900px) {
  .well-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .well-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ROOMS PAGE REDESIGN
   ============================================ */
.rooms-page-sec {
  background-color: var(--pale);
}

.rc-group {
  margin-bottom: 60px;
}

.rc-sep {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.rc-sep::before,
.rc-sep::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #d3cdc1;
  /* Slightly darker than --rule for visibility */
}

.rc-sep:not(:empty)::before {
  margin-right: 20px;
}

.rc-sep:not(:empty)::after {
  margin-left: 20px;
}

.rc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rc-card {
  background: var(--white);
  border: 1px solid #e2ddd3;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rc-card-horiz {
  flex-direction: row;
}

.rc-card-horiz .rc-img {
  width: 50%;
  padding-bottom: 0;
  aspect-ratio: 4/3;
}

.rc-card-horiz .rc-img img {
  position: absolute;
  height: 100%;
}

.rc-card-horiz .rc-body {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rc-img {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}

.rc-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-body {
  padding: 24px 16px;
  text-align: center;
}

.rc-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 10px;
}

.rc-start {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}

.rc-price {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 20px;
}

.rc-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #999;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.rc-btn:hover {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink);
}

@media (max-width: 991px) {

  .rc-grid-3,
  .rc-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rc-card-horiz {
    flex-direction: column;
  }

  .rc-card-horiz .rc-img,
  .rc-card-horiz .rc-body {
    width: 100%;
  }

  .rc-card-horiz .rc-img {
    padding-bottom: 60%;
  }
}

@media (max-width: 767px) {

  .rc-grid-3,
  .rc-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FACILITIES GALLERY
   ============================================ */
.facility-gallery-sec {
  background: var(--bg);
}

.facility-gallery-sec .eyebrow {
  margin-bottom: 24px;
}

.facility-gallery-sec .H {
  margin-bottom: 24px;
}

.facility-gallery-sec .rule-bar {
  margin-bottom: 56px;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.facility-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s var(--e1), filter 0.4s var(--e1);
  filter: brightness(0.9);
}

.facility-gallery img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  z-index: 1;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .facility-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .facility-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .facility-gallery {
    grid-template-columns: 1fr;
  }
}




.footer-top .f-cons .f-con-val a {
 /* font-family: monospace; */
}
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* Policy and Info Pages Common Styles */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--rule);
}
.policy-section-last {
    margin-bottom: 40px;
}
.policy-heading {
    color: var(--primary);
    margin-bottom: 16px;
}
.policy-text {
    font-size: 15px;
}
.policy-text-mt {
    font-size: 15px;
    margin-top: 16px;
}
.policy-text-mb {
    font-size: 15px;
    margin-bottom: 40px;
}
.policy-list {
    list-style: none;
    margin-top: 16px;
}
.policy-list-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    font-size: 15px;
}
.policy-list-item-simple {
    margin-bottom: 8px;
    font-size: 15px;
}
.policy-strong {
    color: var(--ink);
}
.policy-intro {
    max-width: 800px;
    margin: 0 auto;
}
.nav-book-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Phone and Email Links Customization */
a[href^='tel:'],
a[href^='mailto:'] {
  transition: color 0.3s ease !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

a[href^='tel:']:hover,
a[href^='mailto:']:hover,
a[href^='tel:']:visited,
a[href^='mailto:']:visited,
a[href^='tel:']:active,
a[href^='mailto:']:active {
  color: var(--primary) !important;
}


/* All a href links hover and active color */
a:hover,
a:active {
  color: var(--primary);
  transition: color 0.3s ease;
}

/* Protect buttons with solid backgrounds */
a.btn-solid:hover,
a.btn-solid:active,
a.nav-book:hover,
a.nav-book:active {
  color: var(--white) !important;
}


/* ============================================
   CUSTOM MAP WIDGET
   ============================================ */
.mw-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
  border-radius: 4px;
}
.mw-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 250px;
  background: #2b2b2b;
  color: #fff;
  z-index: 10;
  overflow-y: auto;
}
.mw-left-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mw-left-item {
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}
.mw-left-item:hover {
  background: rgba(255,255,255,0.05);
}
.mw-left-item.active {
  background: #111;
}
.mw-left-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.mw-left-item span {
  font-size: 14px;
  font-weight: 500;
}
.mw-map {
  position: absolute;
  left: 250px;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--pale);
  z-index: 5;
}
.mw-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.mw-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 10;
  display: none;
  flex-direction: row;
  transition: transform 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0,0,0,0.05);
}
.mw-collapse-btn {
  width: 30px;
  background: var(--pale);
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dark);
  transition: background 0.3s;
}
.mw-collapse-btn:hover {
  background: var(--white);
}
.mw-right-content {
  flex: 1;
  overflow-y: auto;
}
.mw-right-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.mw-right-pad {
  padding: 20px;
}
.mw-right-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--ink-dark);
}
.mw-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.mw-btn:hover {
  opacity: 0.9;
}
.mw-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.mw-bottom {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding: 20px 0;
  margin-top: 10px;
}
.mw-bottom-col {
  flex: 1;
}
.mw-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.mw-select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: inherit;
  color: var(--ink-dark);
}
.mw-submit {
  width: 200px;
}

@media (max-width: 900px) {
  .mw-wrapper {
    height: 700px;
    display: flex;
    flex-direction: column;
  }
  .mw-left {
    position: relative;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }
  .mw-map {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .mw-right {
    display: none;
  }
  .mw-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .mw-submit {
    width: 100%;
  }
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--rule);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.blog-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* 16:9 aspect ratio approximate */
  overflow: hidden;
}
.blog-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}
.blog-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink-dark);
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}
.blog-link {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-link span {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-link span {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BLOG DETAIL PAGES
   ============================================ */
.blog-detail-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Raleway', sans-serif;
  color: var(--ink-dark);
}
.blog-detail-wrapper h2, .blog-detail-wrapper h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-detail-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--ink-mid);
}
.blog-detail-wrapper a {
  color: var(--primary);
  text-decoration: none;
}
.blog-detail-wrapper a:hover {
  text-decoration: underline;
}
.blog-detail-wrapper ul, .blog-detail-wrapper ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.blog-detail-wrapper li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--ink-mid);
}

/* ============================================
   BLOG DETAIL EXTRA (TAGS & RELATED)
   ============================================ */
.blog-tags-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
  gap: 20px;
}
.blog-tags {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.blog-tags .tag-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--ink-dark);
}
.blog-tags .tag {
  background: var(--bg-gray);
  border: 1px solid var(--rule);
  padding: 8px 15px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-tags .tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-share .share-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--ink-dark);
}
.blog-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-gray);
  border-radius: 50%;
  color: var(--ink-mid);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}
.blog-share a:hover {
  background: var(--primary);
  color: var(--white);
}

.related-posts-section {
  background: var(--bg-gray);
  padding: 60px 0;
  margin-top: 20px;
}
.related-posts-section .eyebrow {
  text-align: center;
  margin-bottom: 10px;
}
.related-posts-section .H {
  text-align: center;
  margin-bottom: 40px;
}
.related-posts-section .W{
  text-align: center;
}


/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
  background-color: #1e1e1e;
  padding: 24px;
  border-radius: 8px;
  max-width: 520px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  box-sizing: border-box;
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-popup-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cookie-icon {
  flex-shrink: 0;
}
.cookie-icon svg {
  fill: #3b3b3b;
  width: 48px;
  height: 48px;
}
.cookie-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #f1f1f1;
  font-family: inherit;
}
.cookie-text a {
  color: #666;
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-text a:hover {
  color: #aaa;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
  text-transform: uppercase;
  font-family: inherit;
}
.cookie-accept {
  background-color: var(--primary);
  color: #fff;
}
.cookie-accept:hover {
  background-color: var(--primary);
}
.cookie-decline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
  .cookie-popup {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 20px;
  }
  .cookie-popup-inner {
    gap: 12px;
  }
  .cookie-icon svg {
    width: 36px;
    height: 36px;
  }
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
}


/* Added for Blog Images Grid */
.blog-images-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.blog-images-grid .blog-grid-img {
  max-width: 100%;
  height: auto;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
}

/* Blog Extracted Content Styles */
.blog-extracted-content {
    text-align: justify;
}
.blog-extracted-content img {
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}
.blog-extracted-content h2, .blog-extracted-content h3 {
    text-align: justify;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 180px 0 120px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content .H {
    margin-bottom: 24px;
    color: var(--primary);
}

.thank-you-content .P {
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--muted);
}
