/* ============================================================
   SAISAWAN BEACH RESORT — Luxury Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Sarabun:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --navy: #0B1E2D;
  --navy-mid: #1A3347;
  --navy-light: #EBF1F5;
  --gold: #C9A96E;
  --gold-dark: #A07840;
  --gold-light: #EDD9A3;
  --gold-pale: #F7EED8;
  --ivory: #F8F5EF;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text: #1C1C1E;
  --text-mid: #4A4A4A;
  --text-light: #888888;
  --border: #E8E2D8;

  /* legacy aliases — keep for page compatibility */
  --ocean: #1A3347;
  --ocean-dark: #0B1E2D;
  --ocean-light: #EBF1F5;
  --coral: #C9A96E;
  --coral-dark: #A07840;
  --sand: #F7EED8;
  --sand-dark: #D4B896;

  --shadow-sm: 0 2px 16px rgba(0, 0, 0, .06);
  --shadow: 0 8px 40px rgba(0, 0, 0, .10);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, .16);
  --radius: 4px;
  --radius-sm: 2px;
  --transition: all .4s cubic-bezier(.25, .8, .25, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sarabun', 'Noto Sans Thai', sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', 'Sarabun', serif;
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--navy-mid);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

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

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  font-size: .75rem;
  font-family: 'Sarabun', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .35rem;
  padding-bottom: .35rem;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}

.topbar-item:hover {
  color: var(--gold);
}

.topbar-item .bi {
  font-size: .75rem;
  color: var(--gold);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.topbar-social {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: white;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.topbar-social:hover {
  opacity: .85;
  transform: scale(1.1);
  color: white;
}

.topbar-social.line {
  background: #06C755;
}

.topbar-social.facebook {
  background: #1877F2;
}

.topbar-social.instagram {
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.topbar-social.messenger {
  background: linear-gradient(135deg, #0099FF, #A033FF);
}

@media (max-width: 767px) {
  .topbar-left {
    gap: .75rem;
  }

  .topbar-item:not(:first-child) {
    display: none;
  }
}

/* ── NAVBAR ── */
.navbar {
  background: transparent;
  padding: 0;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .5s ease, box-shadow .5s ease, padding .3s ease, top .3s ease;
}

.navbar.topbar-hidden {
  top: 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, .06);
}

.navbar .container {
  max-width: 1280px;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .5px;
  transition: color .5s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled .navbar-brand {
  color: var(--navy) !important;
}

/* ── Desktop logo: large on homepage only, normal on sub-pages ── */
@media (min-width: 992px) {
  .navbar-brand img {
    transition: height .4s cubic-bezier(.4, 0, .2, 1), filter .4s ease;
  }

  /* Homepage — large logo at top */
  .navbar-home {
    overflow: visible;
  }

  .navbar-home:not(.scrolled) .navbar-brand img {
    height: 200px !important;
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, .55));
    position: relative;
    z-index: 2;
  }

  /* Align nav links to top when logo is large */
  .navbar-home:not(.scrolled) .container {
    align-items: flex-start;
  }

  .navbar-home:not(.scrolled) .navbar-collapse {
    padding-top: 0.6rem;
  }

  /* Shrink on scroll (homepage) */
  .navbar-home.scrolled .navbar-brand img {
    height: 44px !important;
    filter: none;
  }
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: border-color .5s ease, color .5s ease;
}

.navbar.scrolled .brand-icon {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 991px) {

  /* ── Hide topbar on mobile ── */
  .topbar {
    display: none !important;
  }

  /* ── Navbar = compact initial bar ── */
  .navbar {
    position: relative !important;
    top: 0 !important;
    background: linear-gradient(180deg, #0e2540 0%, #0b1e2d 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4) !important;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(201, 169, 110, .18);
  }

  .navbar .container {
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: .55rem;
    padding-bottom: .55rem;
  }

  /* Logo — full width, centered */
  .navbar-brand {
    padding: .2rem 0;
    width: 100%;
    justify-content: center;
  }

  .navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .4));
  }

  /* Hamburger — absolute top-right, dark lines on white header */
  .mnav-hamburger {
    position: absolute !important;
    right: .75rem;
    top: .65rem;
    transform: none;
    background: #ffffff !important;
    border-color: #cfcfcf !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12) !important;
  }

  .mnav-hamburger span {
    background: #222222 !important;
    height: 2.5px !important;
  }

  /* Contact block in initial navbar — compact, full-width, centered */
  .mnb-contact {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: .5rem;
    gap: .32rem;
    border-top: 1px solid rgba(201, 169, 110, .12);
    position: relative;
  }

  .mnb-contact::before {
    display: none;
  }

  .mnb-contact-close {
    position: absolute;
    top: .3rem;
    right: .3rem;
    width: 20px;
    height: 20px;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background .2s, color .2s;
  }

  .mnb-contact-close:hover {
    background: rgba(255, 255, 255, .25);
    color: #fff;
  }

  /* Toggle chevron — small centered button below contact bar */
  .mnb-toggle-strip {
    display: block;
    margin: 0 auto -4px;
    background: rgba(10, 18, 30, .9);
    border: 1px solid rgba(201, 169, 110, .35);
    border-top: none;
    color: rgba(201, 169, 110, .85);
    font-size: .6rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 10px 3px;
    border-radius: 0 0 8px 8px;
    transition: background .2s, color .2s;
    order: 99;
    align-self: center;
  }

  .mnb-toggle-strip:hover {
    background: rgba(201, 169, 110, .15);
    color: #C9A96E;
  }

  .navbar .mnb-socials {
    gap: .3rem;
  }

  .navbar .mnb-social {
    width: 22px;
    height: 22px;
    font-size: .62rem;
    box-shadow: none;
  }

  .navbar .mnb-phones {
    gap: .65rem;
    flex-wrap: nowrap;
  }

  .navbar .mnb-phone-item {
    font-size: .72rem;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap;
  }

  .navbar .mnb-phone-item .bi {
    font-size: .68rem;
  }

  .navbar .mnb-email-item {
    font-size: .68rem;
    color: rgba(255, 255, 255, .4);
  }

  .navbar .mnb-email-item .bi {
    font-size: .65rem;
  }

  /* Hero no top padding (navbar is static) */
  .hero-content {
    padding-top: 16px !important;
  }

  /* ── Shared social/contact styles (used by both sticky and drawer) ── */
  .mnb-socials {
    display: flex;
    gap: .7rem;
    justify-content: center;
  }

  .mnb-social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .35);
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .mnb-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
    color: white;
  }

  .mnb-social.line {
    background: #06C755;
  }

  .mnb-social.fb {
    background: #1877F2;
  }

  .mnb-social.ig {
    background: radial-gradient(circle at 30% 110%, #f09433, #dc2743, #bc1888);
  }

  .mnb-social.msn {
    background: linear-gradient(135deg, #0099FF, #A033FF);
  }

  .mnb-phones {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mnb-phone-item {
    display: flex;
    align-items: center;
    gap: .38rem;
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    transition: color .2s;
  }

  .mnb-phone-item:hover {
    color: var(--gold);
  }

  .mnb-phone-item .bi {
    color: var(--gold);
    font-size: .78rem;
  }

  .mnb-email-item {
    display: flex;
    align-items: center;
    gap: .38rem;
    color: rgba(255, 255, 255, .5);
    font-size: .76rem;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    transition: color .2s;
  }

  .mnb-email-item:hover {
    color: var(--gold);
  }

  .mnb-email-item .bi {
    color: var(--gold);
    font-size: .74rem;
  }
}

.navbar .nav-link {
  font-family: 'Sarabun', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88) !important;
  padding: 1.5rem .9rem !important;
  position: relative;
  transition: color .4s ease;
}

.navbar.scrolled .nav-link {
  color: var(--text-mid) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold-dark) !important;
}

/* ── Navbar on light hero ── */
body.hero-light-page .navbar:not(.scrolled) .nav-link {
  color: var(--navy, #0b1e2d) !important;
  opacity: .85;
}

body.hero-light-page .navbar:not(.scrolled) .nav-link:hover,
body.hero-light-page .navbar:not(.scrolled) .nav-link.active {
  color: var(--gold-dark, #a07840) !important;
  opacity: 1;
}

body.hero-light-page .navbar:not(.scrolled) .navbar-brand {
  color: var(--navy, #0b1e2d) !important;
}

body.hero-light-page .navbar:not(.scrolled) .mnav-hamburger span {
  background: white;
}

body.hero-light-page .navbar:not(.scrolled) .mnav-hamburger {
  background: var(--navy, #0b1e2d) !important;
  border-color: transparent !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left .35s ease, right .35s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  left: 10%;
  right: 10%;
}

.btn-book-nav {
  font-size: .78rem !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, .6) !important;
  border-radius: 0 !important;
  color: white !important;
  padding: .5rem 1.4rem !important;
  margin-left: .5rem;
  transition: background .3s ease, border-color .3s ease, color .3s ease !important;
}

.navbar.scrolled .btn-book-nav {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.btn-book-nav:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}

.btn-book-nav::after {
  display: none !important;
}

/* Language switcher */
.lang-switcher .dropdown-toggle::after {
  display: none;
}

.lang-toggle-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: .32rem .65rem !important;
  border: 1.5px solid rgba(201, 169, 110, 0.45);
  border-radius: 50px;
  font-size: .75rem !important;
  transition: border-color .2s, background .2s;
}

.lang-toggle-btn:hover {
  border-color: rgba(201, 169, 110, .9) !important;
  background: rgba(201, 169, 110, .08) !important;
}

.navbar.scrolled .lang-toggle-btn {
  border-color: rgba(11, 30, 45, .25);
}

.navbar.scrolled .lang-toggle-btn:hover {
  border-color: var(--navy) !important;
  background: rgba(11, 30, 45, .06) !important;
}

.lang-flag-img {
  border-radius: 3px;
  display: block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.lang-code {
  font-weight: 700;
  letter-spacing: .5px;
  font-size: .72rem;
}

.lang-dropdown {
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(11, 30, 45, .14);
  padding: .5rem;
  min-width: 165px;
  margin-top: 6px !important;
}

.lang-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: .55rem .85rem !important;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--navy) !important;
  transition: background .15s;
}

.lang-opt-img {
  border-radius: 2px;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
  flex-shrink: 0;
}

.lang-opt-name {
  flex: 1;
}

.lang-option:hover {
  background: var(--cream) !important;
}

.lang-option.active {
  background: var(--navy) !important;
  color: var(--gold) !important;
  font-weight: 600;
}

.lang-option.active .lang-opt-img {
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .4) !important;
  padding: .35rem .6rem;
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--border) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2c26%2c26%2c.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar {
    background: var(--navy) !important;
  }

  .navbar-collapse {
    background: var(--navy);
    padding: 1rem;
  }

  .navbar .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    padding: .75rem 0 !important;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .btn-book-nav {
    margin: .5rem 0 0;
    display: inline-block;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-url, url('../images/hero-bg.jpg')) center/cover no-repeat;
  background-attachment: scroll;
  opacity: .35;
}

@media (hover: hover) and (pointer: fine) {
  .hero-bg {
    background-attachment: fixed;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(11, 30, 45, .7) 0%,
      rgba(11, 30, 45, .3) 60%,
      rgba(11, 30, 45, .55) 100%);
  opacity: var(--hero-overlay-opacity, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-h1-intro {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  font-style: normal;
  line-height: 1.2;
}

.hero-h1-brand {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.hero-stats {
  display: flex;
  justify-content: space-evenly;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.stat-item {
  color: white;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 6px;
  display: block;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}

.hero-waves svg {
  display: block;
  width: 100%;
}

/* ── HERO LIGHT VARIANT ── */
.hero-light {
  background: white;
}

.hero-light .hero-bg {
  opacity: .06;
}

.hero-light .hero-overlay {
  background: linear-gradient(160deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(255, 255, 255, .75) 55%,
      rgba(255, 255, 255, .9) 100%);
}

.hero-light h1 {
  color: var(--text-dark, #1a2a35);
}

.hero-light h1 em {
  color: var(--gold-dark, #a07840);
}

.hero-light p {
  color: var(--text-mid, #4a4a4a);
}

.hero-light .hero-eyebrow {
  color: var(--gold-dark, #a07840);
}

.hero-light .hero-eyebrow::before,
.hero-light .hero-eyebrow::after {
  background: var(--gold-dark, #a07840);
}

.hero-light .hero-divider {
  background: var(--gold-dark, #a07840);
}

.hero-light .stat-item {
  color: var(--text-dark, #1a2a35);
}

.hero-light .stat-number {
  color: var(--gold-dark, #a07840);
}

.hero-light .stat-label {
  opacity: .6;
}

.hero-light .hero-stats {
  border-top-color: rgba(0, 0, 0, .1);
}

/* ── HERO IMAGE (right column) ── */
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold, #c9a96e);
  z-index: 0;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 50%;
  height: 50%;
  background: var(--gold-pale, #f7eed8);
  z-index: 0;
}

/* ── BUTTONS ── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .9rem 2.4rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, .35);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  padding: .65rem 1.6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, .25);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .55);
  padding: .875rem 2.4rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Light hero variant */
body.hero-light-page .btn-hero-outline {
  color: var(--navy, #0b1e2d);
  border-color: rgba(11, 30, 45, .35);
}

body.hero-light-page .btn-hero-outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  border: none;
  padding: .65rem 1.5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-book-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy-mid);
  border: 1.5px solid var(--navy-mid);
  padding: .6rem 1.35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-book-outline:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.btn-book-sm {
  padding: .45rem 1rem;
  font-size: .75rem;
}

/* ── SECTIONS ── */
.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .75rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* ── PAGE HEADER ── */
.page-header {
  background: #0B1E2D;
  padding: 156px 0 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(5, 14, 28, .65) 0%, rgba(5, 14, 28, .30) 50%, rgba(5, 14, 28, .55) 100%),
    var(--hero-bg-url, url('../images/hero-bg.jpg')) center / cover no-repeat;
  opacity: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--ivory);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header>.container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: .5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65), 0 1px 4px rgba(0, 0, 0, .45);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, .6);
}

.breadcrumb-item.active {
  color: var(--gold-light);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .35);
}

/* ── FEATURE CARDS ── */
.feature-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: white;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card:hover::after {
  width: 48px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.feature-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--navy);
}

.feature-desc {
  color: var(--text-light);
  font-size: .88rem;
  line-height: 1.75;
}

/* ── ROOM CARDS ── */
.room-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.room-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.room-card:hover .room-card-img img {
  transform: scale(1.07);
}

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: .2rem .75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-card-body {
  padding: 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.room-desc {
  color: var(--text-light);
  font-size: .88rem;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--text-mid);
}

.room-meta-item i {
  color: var(--gold);
  font-size: .9rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem;
}

.amenity-tag {
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: .18rem .65rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .5px;
}

.room-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.room-price-label {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .5px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='35' stroke='%23C9A96E' stroke-opacity='0.06' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: .75rem;
  color: white;
}

.cta-section p {
  font-size: 1rem;
  opacity: .75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 169, 110, .3);
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: white;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(201, 169, 110, .12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-card i {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}

.contact-card .label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: .3rem;
}

.contact-card .value {
  font-size: 1rem;
  font-weight: 600;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--ivory);
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ── FACILITIES PAGE ── */

/* Scroll fade-up animation */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up.d1 {
  transition-delay: .08s;
}

.animate-fade-up.d2 {
  transition-delay: .16s;
}

.animate-fade-up.d3 {
  transition-delay: .24s;
}

.animate-fade-up.d4 {
  transition-delay: .32s;
}

.animate-fade-up.d5 {
  transition-delay: .40s;
}

.animate-fade-up.d6 {
  transition-delay: .48s;
}

/* Stats grid */
.fac-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.fac-stat {
  background: white;
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}

.fac-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}

.fac-stat:hover {
  background: var(--cream);
}

.fac-stat:hover::after {
  width: 50%;
}

.fac-stat-icon {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: .7rem;
  line-height: 1;
}

.fac-stat-num {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}

.fac-stat-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Facility cards */
.fac-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fac-card::before {
  content: '';
  position: absolute;
  inset: 0;
  top: auto;
  height: 0;
  background: linear-gradient(to top, var(--gold-pale) 0%, transparent 100%);
  transition: height .4s ease;
  z-index: 0;
}

.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top-color: var(--gold-dark);
}

.fac-card:hover::before {
  height: 40%;
}

.fac-card>* {
  position: relative;
  z-index: 1;
}

.fac-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.fac-card:hover .fac-card-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.fac-card-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}

.fac-card-desc {
  color: var(--text-mid);
  font-size: .875rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.fac-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.fac-card-tags span {
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: .2rem .6rem;
}

/* ── ALBUM CATEGORY CARDS ── */
.album-cat-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.album-cat-card:not(.album-cat-empty):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.album-cat-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}

.album-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  filter: brightness(.85);
}

.album-cat-card:hover .album-cat-img img {
  transform: scale(1.07);
  filter: brightness(.65);
}

.album-cat-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  color: var(--text-light);
  font-size: 2.5rem;
}

.album-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: .25rem .7rem;
}

.album-cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  opacity: 0;
  transition: opacity .35s ease;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.album-cat-overlay i {
  font-size: 2rem;
}

.album-cat-card:hover .album-cat-overlay {
  opacity: 1;
}

.album-cat-body {
  padding: 1.25rem 1.5rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--gold);
  gap: .2rem;
}

.album-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}

.album-cat-sub {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .85rem;
}

.album-cat-desc {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: .85rem;
  flex-grow: 1;
}

.album-cat-btn {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color .25s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

.album-cat-card:hover .album-cat-btn {
  color: var(--navy);
}

.album-cat-empty-label {
  font-size: .75rem;
  color: var(--text-light);
  font-style: italic;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

.album-cat-empty {
  opacity: .6;
}


/* Activity cards (redesigned from rows) */
.act-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.act-card:hover {
  background: white;
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.act-card-num {
  position: absolute;
  top: -8px;
  right: 12px;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(201, 169, 110, .08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color .4s ease;
}

.act-card:hover .act-card-num {
  color: rgba(201, 169, 110, .15);
}

.act-card-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.act-card:hover .act-card-icon {
  background: var(--gold);
  color: var(--navy);
}

.act-card-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.act-card-detail {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .3px;
  line-height: 1.6;
}

/* Keep activity-row for backward compatibility */
.activity-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.activity-row:hover {
  border-left-color: var(--gold);
  background: white;
  box-shadow: var(--shadow-sm);
}

.activity-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  min-width: 36px;
  user-select: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.activity-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
}

.activity-detail {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .15rem;
  letter-spacing: .3px;
}

/* Package includes list */
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.pkg-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.pkg-check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* Package highlight boxes */
.pkg-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pkg-highlight-item {
  background: rgba(255, 255, 255, .06);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: background .3s ease;
}

.pkg-highlight-item:hover {
  background: rgba(255, 255, 255, .12);
}

.pkg-highlight-item i {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.pkg-hl-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: .25rem;
}

.pkg-hl-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
}

/* Tip cards */
.tip-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 2.25rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tip-card--baby {
  border-top-color: var(--gold);
}

.tip-card--child {
  border-top-color: var(--navy-mid);
}

.tip-card--elder {
  border-top-color: #4A7C6F;
}

.tip-card-icon {
  width: 68px;
  height: 68px;
  background: var(--gold-pale);
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold-dark);
  margin: 0 auto 1.4rem;
  transition: var(--transition);
}

.tip-card--child .tip-card-icon {
  background: var(--navy-light);
  border-color: rgba(27, 51, 71, .25);
  color: var(--navy-mid);
}

.tip-card--elder .tip-card-icon {
  background: #EFF5F3;
  border-color: rgba(74, 124, 111, .3);
  color: #4A7C6F;
}

.tip-card:hover .tip-card-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.tip-card-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
}

.tip-card-desc {
  color: var(--text-mid);
  font-size: .875rem;
  line-height: 1.85;
  margin: 0;
}

/* ── ROOM CARD (rcard) — shared between homepage & rooms listing ── */
.rcard {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.rcard-img-wrap {
  display: block;
  position: relative;
  height: 240px;
  overflow: hidden;
}

.rcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rcard:hover .rcard-img-wrap img {
  transform: scale(1.06);
}

.rcard-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 77, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.rcard:hover .rcard-img-overlay {
  opacity: 1;
}

.rcard-badge-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4a4a4a;
  color: #ffffff;
  padding: 0.24rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.rcard-badge-photos {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.rcard-body {
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rcard-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.rcard-desc {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.rcard-meta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.rcard-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.rcard-meta-item i {
  color: var(--ocean);
  font-size: 0.9rem;
}

.rcard-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem;
}

.amenity-more {
  background: var(--sand);
  color: var(--text-light);
}

.rcard-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.rcard-price-block {
  line-height: 1.2;
}

.rcard-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rcard-discount-badge {
  background: var(--coral);
  color: white;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: 800;
}

.rcard-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rcard-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.rcard-price-unit {
  font-size: 0.75rem;
  color: var(--text-light);
}

.rcard-rack-rate {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

.rcard-rack-rate s {
  color: var(--text-light);
  opacity: 0.7;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  padding: 72px 0 28px;
  border-top: 1px solid rgba(201, 169, 110, .2);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: .75rem;
  letter-spacing: .5px;
}

.footer-desc {
  font-size: .85rem;
  opacity: .7;
  line-height: 1.8;
  font-weight: 300;
}

.footer-title {
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: .55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  font-weight: 300;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .08);
  margin: 2.5rem 0 1.25rem;
}

.footer-bottom {
  text-align: center;
  font-size: .78rem;
  opacity: .5;
  letter-spacing: .5px;
}

/* ── FORMS ── */
.form-label {
  font-weight: 600;
  margin-bottom: .4rem;
  font-size: .88rem;
  color: var(--text-mid);
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: .7rem 1rem;
  font-size: .92rem;
  transition: border-color .3s ease, box-shadow .3s ease;
  background: #fafaf8;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .12);
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  border-radius: 0;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── ROOM DETAIL ── */
.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: .65;
  transition: var(--transition);
  border: 2px solid transparent;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--gold);
}

/* ── BREADCRUMB ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, .15);
  border: 1px solid rgba(201, 169, 110, .4);
  color: var(--gold-light);
  padding: .3rem 1rem;
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ── BOOKING FORM ── */
.booking-section {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem;
}

.booking-closed {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
  text-align: center;
  padding: 1.25rem 2.5rem;
}

/* Inside white price-card, flip to dark */
.price-card .booking-closed {
  background: rgba(201, 169, 110, .06);
  border: 1px solid rgba(201, 169, 110, .25);
  color: var(--text-body);
  border-radius: 8px;
  padding: 1rem;
}

/* ══════════════════════════════════════════
   ADMIN — Modern UI
══════════════════════════════════════════ */

/* Sidebar */
.admin-sidebar {
  width: 260px;
  height: 100vh;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, .08);
  border-right: 1px solid rgba(0, 0, 0, .07);
  overflow-y: auto;
}

.admin-logo {
  padding: 1.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  color: #0B1E2D;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.admin-logo-sub {
  font-size: .6rem;
  opacity: .45;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  color: #0B1E2D;
}

.admin-nav {
  padding: .75rem 0 2rem;
  flex: 1;
}

.admin-nav-label {
  font-size: .58rem;
  letter-spacing: 2.5px;
  color: rgba(0, 0, 0, .35);
  padding: .9rem 1.25rem .3rem;
  text-transform: uppercase;
  font-weight: 700;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .65rem 1rem .65rem 1.25rem;
  color: rgba(0, 0, 0, .6);
  transition: all .2s ease;
  font-size: .82rem;
  font-weight: 500;
  margin: 1px .75rem;
  border-radius: 8px;
  position: relative;
  text-decoration: none;
}

.admin-nav-item:hover {
  background: rgba(0, 0, 0, .05);
  color: #0B1E2D;
}

.admin-nav-item.active {
  background: rgba(201, 169, 110, .12);
  color: #A07840;
  font-weight: 600;
}

.admin-nav-item.active::before {
  content: '';
  position: absolute;
  left: -.75rem;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: #C9A96E;
  border-radius: 0 3px 3px 0;
}

.admin-nav-item i {
  width: 18px;
  text-align: center;
  font-size: .88rem;
  flex-shrink: 0;
}

.admin-nav-divider {
  border-top: 1px solid rgba(0, 0, 0, .07);
  margin: .75rem 1rem;
}

/* Content */
.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: #f0f2f5;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: white;
  padding: .875rem 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 2px 12px rgba(0, 0, 0, .04);
}

.admin-topbar-title {
  font-weight: 700;
  font-size: .95rem;
  color: #0B1E2D;
}

.admin-topbar-user {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: #888;
}

.admin-topbar-avatar {
  width: 32px;
  height: 32px;
  background: #F7EED8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: #A07840;
  font-weight: 700;
}

.admin-body {
  padding: 1.75rem;
  flex: 1;
}

/* Stat Cards */
.stat-card {
  background: white;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
}

.stat-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-card-icon.ocean {
  background: linear-gradient(135deg, #e0eaf4, #c7daea);
  color: #1A3347;
}

.stat-card-icon.coral {
  background: linear-gradient(135deg, #fdf3e0, #f7e0bb);
  color: #A07840;
}

.stat-card-icon.green {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}

.stat-card-icon.sand {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  color: #f57f17;
}

.stat-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #0B1E2D;
}

.stat-card-label {
  color: #888;
  font-size: .78rem;
  margin-top: 4px;
  font-weight: 500;
}

/* Cards */
.card-admin {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
}

.card-admin-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 245, 239, .5);
}

.card-admin-header h5 {
  font-weight: 700;
  margin: 0;
  font-size: .92rem;
  color: #0B1E2D;
}

.card-admin-body {
  padding: 1.5rem;
}

/* Tables */
.table-custom th {
  background: #f8f9fb;
  color: #4A4A4A;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  border: none;
  padding: .85rem 1rem;
}

.table-custom td {
  vertical-align: middle;
  border-color: rgba(0, 0, 0, .05);
  padding: .85rem 1rem;
}

.table-custom tr:hover td {
  background: #fafbff;
}

.table-custom tbody tr:last-child td {
  border-bottom: none;
}

/* Badges */
.badge-status {
  padding: .3rem .85rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 20px;
}

.badge-pending {
  background: #fff8e6;
  color: #92660a;
}

.badge-confirmed {
  background: #e6f7ef;
  color: #0a6640;
}

.badge-cancelled {
  background: #feeaea;
  color: #991b1b;
}

/* Toggle / Forms */
.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  cursor: pointer;
  border-radius: 2rem;
}

.form-switch .form-check-input:checked {
  background-color: #C9A96E;
  border-color: #C9A96E;
}

.form-control,
.form-select {
  border-radius: 8px;
  border-color: rgba(0, 0, 0, .12);
  font-size: .875rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, .15);
}

.btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: .82rem;
}

.btn-primary {
  background: #0B1E2D;
  border-color: #0B1E2D;
}

.btn-primary:hover {
  background: #1A3347;
  border-color: #1A3347;
}

.btn-outline-secondary {
  border-color: rgba(0, 0, 0, .15);
  color: #4A4A4A;
}

.btn-outline-secondary:hover {
  background: #f3f4f6;
  border-color: rgba(0, 0, 0, .2);
  color: #0B1E2D;
}

/* Image Upload */
.img-preview-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.img-preview-item {
  position: relative;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.img-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, .6);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: .7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TOAST NOTIFICATIONS ── */
#adminToastContainer {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  pointer-events: none;
  min-width: 300px;
}

.admin-toast {
  pointer-events: all;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .14), 0 2px 8px rgba(0, 0, 0, .06);
  transform: translateX(calc(100% + 1.5rem));
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.admin-toast.toast-show {
  transform: translateX(0);
  opacity: 1;
}

.admin-toast.toast-hide {
  transform: translateX(calc(100% + 1.5rem));
  opacity: 0;
  transition: transform .3s ease-in, opacity .25s ease-in;
}

.admin-toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
}

.admin-toast.toast-success::before {
  background: #22c55e;
}

.admin-toast.toast-error::before {
  background: #ef4444;
}

.admin-toast.toast-info::before {
  background: #3b82f6;
}

.admin-toast.toast-warning::before {
  background: #f59e0b;
}

.admin-toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.toast-success .admin-toast-icon {
  background: #f0fdf4;
  color: #16a34a;
}

.toast-error .admin-toast-icon {
  background: #fef2f2;
  color: #dc2626;
}

.toast-info .admin-toast-icon {
  background: #eff6ff;
  color: #2563eb;
}

.toast-warning .admin-toast-icon {
  background: #fffbeb;
  color: #d97706;
}

.admin-toast-body {
  flex: 1;
  min-width: 0;
}

.admin-toast-title {
  font-weight: 700;
  font-size: .84rem;
  color: #111827;
  line-height: 1.3;
}

.admin-toast-msg {
  font-size: .76rem;
  color: #6b7280;
  margin-top: .2rem;
  line-height: 1.4;
}

.admin-toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  font-size: .75rem;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}

.admin-toast-close:hover {
  color: #374151;
}

.admin-toast-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 14px 14px;
}

.toast-success .admin-toast-bar {
  background: #22c55e;
}

.toast-error .admin-toast-bar {
  background: #ef4444;
}

.toast-info .admin-toast-bar {
  background: #3b82f6;
}

.toast-warning .admin-toast-bar {
  background: #f59e0b;
}

/* Admin utility */
.btn-xs {
  font-size: .72rem;
  padding: .2rem .55rem;
  line-height: 1.5;
}

/* Admin inline error (form validation, non-dismissable) */
.admin-inline-error {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.2rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  border-radius: 12px;
}

.admin-inline-error-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.admin-inline-error-title {
  font-weight: 700;
  font-size: .84rem;
  color: #991b1b;
  margin-bottom: .25rem;
}

.admin-inline-error-item {
  font-size: .8rem;
  color: #b91c1c;
  line-height: 1.5;
}

.admin-inline-error-item+.admin-inline-error-item {
  margin-top: .15rem;
}

/* Mobile sidebar drawer backdrop */
.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(11, 30, 45, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}

@media (min-width: 992px) {
  .admin-sidebar-backdrop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
    z-index: 1100;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-content {
    margin-left: 0;
  }

  #adminToastContainer {
    right: .75rem;
    left: .75rem;
    min-width: unset;
  }

  .admin-sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  body.sidebar-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .section-pad {
    padding: 64px 0;
  }

  .gallery-main img {
    height: 260px;
  }

  .cta-section {
    padding: 72px 0;
  }
}

/* ── UTILITIES ── */
.text-gold {
  color: var(--gold) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-ivory {
  background: var(--ivory) !important;
}

/* ── MAP ── */
.map-responsive-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 42%;
  height: 0;
  overflow: hidden;
}

.map-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-responsive-wrap {
    padding-bottom: 65%;
  }
}

@media (max-width: 480px) {
  .map-responsive-wrap {
    padding-bottom: 85%;
  }
}

/* ── ROOM DETAIL GALLERY ── */
.room-gallery {
  border-radius: 12px;
  overflow: hidden;
}

.rg-main {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: zoom-in;
}

.rg-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, opacity .3s;
}

.rg-main:hover img {
  transform: scale(1.03);
}

.rg-main-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: .4rem;
  padding: .75rem;
  transition: background .3s;
  pointer-events: none;
}

.rg-main:hover .rg-main-overlay {
  background: rgba(0, 0, 0, .12);
}

.rg-main-overlay i,
.rg-main-overlay span {
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: .3rem .55rem;
  border-radius: 6px;
  font-size: .75rem;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.rg-main:hover .rg-main-overlay i,
.rg-main:hover .rg-main-overlay span {
  background: rgba(201, 169, 110, .85);
  color: #1a1a2e;
}

.rg-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.rg-thumbs::-webkit-scrollbar {
  display: none;
}

.rg-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border: 2px solid transparent;
  transition: border-color .25s, opacity .25s;
  opacity: .6;
}

.rg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rg-thumb:hover {
  opacity: .85;
}

.rg-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.detail-gallery-placeholder {
  height: 380px;
  background: var(--navy-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.detail-gallery-placeholder i {
  font-size: 3rem;
  opacity: .3;
}

/* Lightbox */
.room-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9980;
  background: rgba(0, 0, 0, .95);
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 4rem;
}

.room-lightbox.active {
  display: flex;
}

.rlb-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rlb-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .25s;
  user-select: none;
  -webkit-user-drag: none;
}

.rlb-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}

.rlb-close:hover {
  background: rgba(255, 255, 255, .28);
}

.rlb-prev,
.rlb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}

.rlb-prev {
  left: .75rem;
}

.rlb-next {
  right: .75rem;
}

.rlb-prev:hover,
.rlb-next:hover {
  background: rgba(201, 169, 110, .5);
  border-color: var(--gold);
}

.rlb-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  font-size: .78rem;
  padding: .3rem .85rem;
  border-radius: 20px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .rg-main img {
    height: 260px;
  }

  .rg-thumb {
    width: 72px;
    height: 52px;
  }

  .rlb-prev {
    left: .35rem;
  }

  .rlb-next {
    right: .35rem;
  }

  .rlb-prev,
  .rlb-next {
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }
}

@media (max-width: 480px) {
  .rg-main img {
    height: 220px;
  }

  .rg-thumb {
    width: 64px;
    height: 48px;
  }

  .room-lightbox {
    padding: 3rem .5rem 3.5rem;
  }
}

/* Specs Strip */
.specs-strip {
  display: flex;
  align-items: stretch;
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  margin-top: 10px;
  overflow: hidden;
}

.specs-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 1rem;
  text-align: center;
  gap: .3rem;
}

.specs-strip-item i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: .2rem;
}

.specs-strip-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.specs-strip-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.specs-strip-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .specs-strip {
    flex-wrap: wrap;
  }

  .specs-strip-item {
    flex: 1 1 45%;
    min-width: 0;
  }

  .specs-strip-sep {
    display: none;
  }
}

/* Detail Block */
.detail-block {
  background: white;
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
}

.detail-block-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.detail-block-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.detail-block-text {
  color: var(--text-mid);
  line-height: 2.1;
  font-size: .95rem;
  margin: 0;
}

/* Amenity Grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

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

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

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .65rem .85rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  transition: border-color .25s ease, background .25s ease;
}

.amenity-chip:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.amenity-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

.amenity-label {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.3;
}

/* Price Card */
.price-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.price-card-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .4rem;
}

.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.price-weekend {
  font-size: .82rem;
  color: var(--gold-dark);
  margin-top: .35rem;
}

.price-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.btn-book-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .9rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.btn-book-full:hover {
  background: var(--gold-dark);
  color: white;
}

.price-card-contact {}

.price-card-contact-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .85rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s ease;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row:hover {
  color: var(--gold-dark);
}

.contact-row i {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── RELATED ROOMS ── */
.related-card {
  background: white;
  border: 1px solid var(--border);
  transition: var(--transition);
  color: var(--text) !important;
  overflow: hidden;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.related-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.related-card:hover .related-card-img img {
  transform: scale(1.07);
}

.related-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4a4a4a;
  color: #ffffff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.related-card-body {
  padding: 1.25rem;
}

.related-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card-meta {
  display: flex;
  gap: .75rem;
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: .65rem;
}

.related-card-meta i {
  color: var(--gold);
}

.related-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: .85rem;
}

.related-card-tags span {
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: .68rem;
  padding: .15rem .55rem;
  letter-spacing: .3px;
}

.related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  margin-top: .25rem;
}

.related-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.related-card-price-label {
  font-size: .68rem;
  color: var(--text-light);
  letter-spacing: .5px;
  margin-top: 2px;
}

.related-card-btn {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-mid);
  transition: color .3s ease;
}

.related-card:hover .related-card-btn {
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .price-card {
    position: static;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp .7s cubic-bezier(.25, .8, .25, 1) forwards;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-heading {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-links li {
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.footer-links li a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-links li a:hover,
.footer-links li:hover {
  color: rgba(255, 255, 255, .9);
}

.footer-links li a:hover {
  color: rgba(255, 255, 255, .9);
}

.btn-footer-book {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .55rem 1.4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.btn-footer-book:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .78rem;
  color: rgba(255, 255, 255, .75);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}

.footer-bottom-copy {
  flex: 1;
  min-width: 200px;
}

.footer-legal-dot {
  opacity: .35;
  margin: 0 .1rem;
}

.footer-bottom-brand {
  font-size: .7rem;
  letter-spacing: 1.8px;
  opacity: .6;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .45rem;
  }

  .footer-bottom-copy {
    min-width: unset;
    text-align: center;
  }

  .footer-bottom-brand {
    text-align: center;
    white-space: normal;
  }
}


/* ── MOBILE NAV DRAWER ── */
.mnav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--navy, #0B1E2D);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.mnav-hamburger:hover {
  background: var(--gold, #C9A96E);
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(201, 169, 110, .4);
}

.mnav-hamburger:hover span {
  background: var(--navy, #0B1E2D);
}

.navbar.scrolled .mnav-hamburger {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.mnav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background .25s ease;
}

.navbar.scrolled .mnav-hamburger span {
  background: white;
}

.mnav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(5, 14, 22, .65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

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

.mnav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: linear-gradient(170deg, #F8FBFF 0%, #EDF3FB 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .18);
}

.mnav-drawer.open {
  transform: translateX(0);
}

.mnav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  flex-shrink: 0;
}

.mnav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.mnav-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #C9A96E);
  font-size: .9rem;
}

.mnav-brand-name {
  font-family: 'Playfair Display', serif;
  color: #0B1E2D;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.mnav-brand-sub {
  font-size: .55rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .38);
  margin-top: 2px;
}

.mnav-close {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .45);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.mnav-close:hover {
  background: rgba(0, 0, 0, .12);
  color: #0B1E2D;
}

.mnav-gold-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #C9A96E), transparent);
  flex-shrink: 0;
}

.mnav-links {
  padding: .75rem 0;
  flex: 1;
}

.mnav-link {
  display: flex;
  align-items: center;
  padding: .88rem 1.5rem .88rem 1.6rem;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2744;
  letter-spacing: .01em;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: background .2s, border-color .2s, color .2s, padding-left .2s;
  opacity: 0;
  transform: translateX(20px);
  position: relative;
}

.mnav-drawer.open .mnav-link {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity .35s ease calc(var(--i) * 50ms + 100ms),
    transform .35s ease calc(var(--i) * 50ms + 100ms),
    background .2s, border-color .2s, color .2s, padding-left .2s;
}

.mnav-link::after {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: .55rem;
  color: rgba(0, 0, 0, .18);
  margin-left: auto;
  transition: color .2s, transform .2s;
}

.mnav-link:hover {
  background: rgba(0, 0, 0, .04);
  border-left-color: var(--gold, #C9A96E);
  color: #0B1E2D;
  padding-left: 1.85rem;
}

.mnav-link:hover::after {
  color: var(--gold, #C9A96E);
  transform: translateX(3px);
}

.mnav-link.active {
  background: rgba(201, 169, 110, .1);
  border-left-color: var(--gold, #C9A96E);
  color: var(--gold-dark, #A07840);
  font-weight: 600;
}

.mnav-link.active::after {
  color: var(--gold, #C9A96E);
}

/* span support (if used) */
.mnav-link span:first-child {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

.mnav-link-en {
  font-size: .6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .3);
  margin-left: .5rem;
}

.mnav-link.active .mnav-link-en {
  color: var(--gold, #C9A96E);
  opacity: .7;
}

.mnav-divider {
  height: 1px;
  background: rgba(0, 0, 0, .07);
  margin: 0 1.5rem;
  flex-shrink: 0;
}

.mnav-bottom {
  padding: 1.25rem 1.75rem 2rem;
  flex-shrink: 0;
}

.mnav-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(0, 0, 0, .5);
  font-size: .8rem;
  text-decoration: none;
  margin-bottom: .55rem;
  transition: color .2s ease;
}

.mnav-contact-item:hover {
  color: var(--gold, #C9A96E);
}

.mnav-contact-item .bi {
  color: var(--gold, #C9A96E);
  font-size: .78rem;
}

/* mnav bottom logo */
.mnav-bottom-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mnav-bottom-logo img {
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .15));
}

.mnav-bottom-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B1E2D;
  letter-spacing: .5px;
  line-height: 1.2;
}

.mnav-bottom-brand-sub {
  font-size: .62rem;
  color: var(--gold, #C9A96E);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* social circles — larger, centered */
.mnav-socials {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin: 0 0 1.1rem;
}

.mnav-social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.mnav-social:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
}

.mnav-social.line {
  background: #06C755;
}

.mnav-social.fb {
  background: #1877F2;
}

.mnav-social.ig {
  background: radial-gradient(circle at 30% 110%, #f09433, #dc2743, #bc1888);
}

.mnav-social.msn {
  background: linear-gradient(135deg, #0099FF, #A033FF);
}

/* contacts block */
.mnav-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

.mnav-phones {
  display: flex;
  gap: .65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mnav-phone-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(0, 0, 0, .55);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}

.mnav-phone-item:hover {
  color: var(--gold, #C9A96E);
}

.mnav-phone-item .bi {
  color: var(--gold, #C9A96E);
  font-size: .76rem;
}

.mnav-email-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(0, 0, 0, .45);
  font-size: .76rem;
  text-decoration: none;
  transition: color .2s ease;
}

.mnav-email-item:hover {
  color: var(--gold, #C9A96E);
}

.mnav-email-item .bi {
  color: var(--gold, #C9A96E);
  font-size: .74rem;
}

.mnav-langs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mnav-lang {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .38rem .85rem;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 0, 0, .12);
  color: rgba(0, 0, 0, .55);
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  background: rgba(255, 255, 255, .7);
}

.mnav-lang img {
  border-radius: 2px;
  display: block;
}

.mnav-lang.active {
  background: var(--gold, #C9A96E);
  border-color: var(--gold, #C9A96E);
  color: #fff;
}

.mnav-lang.active img {
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.mnav-lang:hover:not(.active) {
  border-color: var(--gold, #C9A96E);
  color: var(--gold-dark, #A07840);
  background: rgba(201, 169, 110, .08);
}

/* Language switcher moved to top of the mobile drawer */
.mnav-langs-top {
  padding: .9rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.mnav-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem;
  background: var(--gold, #C9A96E);
  color: #fff;
  font-family: 'Sarabun', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.mnav-book-btn:hover {
  background: var(--gold-dark, #A07840);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

/* ── Mobile Sticky Full-Header (slides in on scroll) ── */
.mnav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1rem 1rem;
  background: rgba(10, 24, 38, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, .25);
  box-shadow: 0 6px 32px rgba(0, 0, 0, .5);
  transform: translateY(-110%);
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.mnav-sticky.mnav-sticky-visible {
  transform: translateY(0);
}

/* Row 1: logo centered + hamburger absolute right */
.mnav-sticky-row1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mnav-sticky-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mnav-sticky-brand img {
  height: 84px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .55));
}

.mnav-sticky-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: .5px;
}

/* Hamburger inside sticky */
.mnav-sticky-ham {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold, #C9A96E) !important;
  color: var(--navy, #0B1E2D);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

.mnav-sticky-ham:hover {
  background: var(--gold-dark, #A07840) !important;
  transform: scale(1.05);
}

/* Row 2: contact */
.mnav-sticky-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(201, 169, 110, .15);
  position: relative;
}

.mnav-sticky-contact::before {
  content: '◆';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .4rem;
  color: var(--gold);
  background: rgba(10, 24, 38, .95);
  padding: 0 8px;
  letter-spacing: 6px;
}

/* Social circles inside sticky — slightly smaller so logo dominates */
.mnav-sticky .mnb-social {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.mnav-sticky .mnb-phone-item {
  font-size: .8rem;
}

.mnav-sticky .mnb-email-item {
  font-size: .74rem;
}

@media (min-width: 992px) {
  .mnav-sticky {
    display: none !important;
  }
}

/* ── Light Theme Overrides ── */
.theme-light .topbar {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}

.theme-light .topbar-item,
.theme-light .topbar-item a {
  color: #333333 !important;
}

.theme-light .topbar-item:hover,
.theme-light .topbar-item a:hover {
  color: var(--gold-dark) !important;
}

.theme-light .topbar-item .bi {
  color: var(--gold-dark) !important;
}

.theme-light .topbar-social {
  opacity: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .14);
}

/* Navbar not-scrolled: transparent — hero image shows through */
.theme-light .navbar:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

.theme-light .navbar:not(.scrolled) .navbar-brand {
  color: #fff !important;
}

.theme-light .navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, .88) !important;
  opacity: 1;
}

.theme-light .navbar:not(.scrolled) .nav-link:hover,
.theme-light .navbar:not(.scrolled) .nav-link.active {
  color: var(--gold) !important;
}

.theme-light .navbar:not(.scrolled) .btn-book-nav {
  border-color: rgba(255, 255, 255, .55) !important;
  color: rgba(255, 255, 255, .9) !important;
}

.theme-light .navbar:not(.scrolled) .btn-book-nav:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--text-dark) !important;
}

/* Navbar scrolled: solid white */
.theme-light .navbar.scrolled {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08) !important;
}

.theme-light .navbar.scrolled .navbar-brand {
  color: var(--text-dark) !important;
}

.theme-light .navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}

/* Logo: brighter + subtle shadow only */
@media (min-width: 992px) {
  .theme-light .navbar-home:not(.scrolled) .navbar-brand img {
    filter: drop-shadow(0 3px 14px rgba(0, 0, 0, .5)) brightness(1.12) !important;
  }
}

/* Light theme — hero: dark base so image renders crisp (ไม่หมอก) */
.theme-light .hero {
  background: #08121e !important;
}

.theme-light .hero-bg {
  opacity: 0.72 !important;
}

/* Light theme — hero text: สีขาวเข้ม + shadow ทำให้อ่านชัด */
.theme-light .hero-eyebrow {
  color: #fff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .55);
}

.theme-light .hero-eyebrow::before,
.theme-light .hero-eyebrow::after {
  background: rgba(255, 255, 255, .75) !important;
}

.theme-light .hero h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.theme-light .hero-h1-intro {
  color: rgba(255, 255, 255, .92) !important;
}

.theme-light .hero-h1-brand {
  background: linear-gradient(135deg, #F7E08A 0%, #D4A84B 35%, #F0CC6A 60%, #B8862A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .55));
}

.theme-light .hero p {
  color: rgba(255, 255, 255, .90) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}

/* Light theme — page hero/header: always dark bg for text readability */
.theme-light .page-hero,
.theme-light .page-header {
  background: #0B1E2D !important;
}

.theme-light .page-hero h1,
.theme-light .page-header h1 {
  color: #ffffff !important;
}

.theme-light .page-hero .page-hero-sub,
.theme-light .page-hero p,
.theme-light .page-header .page-hero-sub,
.theme-light .page-header p {
  color: rgba(255, 255, 255, .72) !important;
}

.theme-light .breadcrumb-item,
.theme-light .breadcrumb-item a {
  color: rgba(255, 255, 255, .65) !important;
}

.theme-light .breadcrumb-item.active {
  color: #ffffff !important;
}

.theme-light .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4) !important;
}

/* When navy IS white — use a light section divider color */
.theme-light .mnav-sticky {
  background: rgba(255, 255, 255, .96) !important;
}

.theme-light .mnav-sticky .mnav-sticky-brand img {
  filter: none;
}

.theme-light .mnav-sticky-ham {
  color: var(--text-dark) !important;
  border-color: rgba(0, 0, 0, .15) !important;
  background: rgba(0, 0, 0, .04) !important;
}

.theme-light .mnav-sticky-ham:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* Light theme — buttons, badges & interactive elements */

/* btn-book: outlined dark + gold hover (used on room cards "ดูรายละเอียด") */
.theme-light .btn-book {
  background: transparent !important;
  color: var(--text-dark) !important;
  border: 1.5px solid rgba(10, 39, 68, .28) !important;
}

.theme-light .btn-book:hover {
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  border-color: var(--gold) !important;
}

/* Image-overlay version: frosted white on dark photo */
.theme-light .rcard-img-overlay .btn-book,
.theme-light .card-img-overlay .btn-book {
  background: rgba(255, 255, 255, .92) !important;
  border: none !important;
}

.theme-light .rcard-img-overlay .btn-book:hover,
.theme-light .card-img-overlay .btn-book:hover {
  background: var(--gold) !important;
}

/* btn-outline-gold: gold-dark for contrast on light bg, dark-filled on hover */
.theme-light .btn-outline-gold {
  color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}

.theme-light .btn-outline-gold:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: #fff !important;
}

/* btn-book-nav, btn-book-full, btn-hero-primary */
.theme-light .btn-hero-primary {
  color: var(--text-dark) !important;
}

.theme-light .btn-book-nav:hover {
  color: var(--text-dark) !important;
}

.theme-light .btn-book-full {
  color: var(--text-dark) !important;
}

.theme-light .btn-footer-book:hover {
  color: var(--text-dark) !important;
}

.theme-light .btn-primary {
  background: var(--text-dark) !important;
  border-color: var(--text-dark) !important;
}

.theme-light .btn-primary:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--text-dark) !important;
}

.theme-light .btn-book-outline {
  color: var(--text-dark) !important;
  border-color: rgba(10, 39, 68, .28) !important;
}

.theme-light .btn-book-outline:hover {
  background: var(--text-dark) !important;
  border-color: var(--text-dark) !important;
  color: #fff !important;
}

.theme-light .back-to-top:hover {
  color: var(--text-dark) !important;
}

.theme-light .room-badge {
  color: var(--text-dark) !important;
}

.theme-light .album-cat-badge {
  color: var(--text-dark) !important;
}

.theme-light .album-cat-card:hover .album-cat-btn {
  color: var(--text-dark) !important;
}

.theme-light .pkg-check {
  color: var(--text-dark) !important;
}

.theme-light .fac-card:hover .fac-card-icon {
  color: var(--text-dark) !important;
}

.theme-light .act-card:hover .act-card-icon {
  color: var(--text-dark) !important;
}

.theme-light .cookie-btn-accept {
  color: var(--text-dark) !important;
}

/* Light theme — headings & card text */
/* Sections — section titles and sub-text rendered on white/cream backgrounds */
.theme-light .section-title {
  color: var(--text-dark) !important;
}

.theme-light .section-sub {
  color: var(--text-mid) !important;
}

/* Feature cards — white card bg */
.theme-light .feature-title {
  color: var(--text-dark) !important;
}

/* Room cards (legacy .room-card) — white card bg */
.theme-light .room-name {
  color: var(--text-dark) !important;
}

/* Facility stats — white cell bg */
.theme-light .fac-stat-num {
  color: var(--text-dark) !important;
}

.theme-light .fac-stat-label {
  color: var(--text-mid) !important;
}

/* Facility cards — white card bg */
.theme-light .fac-card-title {
  color: var(--text-dark) !important;
}

/* Album category cards — white card bg */
.theme-light .album-cat-title {
  color: var(--text-dark) !important;
}

.theme-light .album-cat-sub {
  color: var(--text-mid) !important;
}

/* Activity cards — ivory/white card bg */
.theme-light .act-card-title {
  color: var(--text-dark) !important;
}

.theme-light .act-card-detail {
  color: var(--text-mid) !important;
}

.theme-light .activity-title {
  color: var(--text-dark) !important;
}

.theme-light .activity-detail {
  color: var(--text-mid) !important;
}

/* Tip cards — white card bg */
.theme-light .tip-card-title {
  color: var(--text-dark) !important;
}

/* Room detail specs strip — white bg */
.theme-light .specs-strip-value {
  color: var(--text-dark) !important;
}

.theme-light .specs-strip-label {
  color: var(--text-mid) !important;
}

/* Related room cards — white card bg */
.theme-light .related-card-name {
  color: var(--text-dark) !important;
}

.theme-light .related-card-meta {
  color: var(--text-mid) !important;
}

/* Privacy page — white/cream page bg */
.theme-light .privacy-heading {
  color: var(--text-dark) !important;
}

.theme-light .privacy-purpose-item strong {
  color: var(--text-dark) !important;
}

.theme-light .privacy-right-item strong {
  color: var(--text-dark) !important;
}

/* Cookie settings modal — white modal bg */
.theme-light .cookie-toggle-row strong {
  color: var(--text-dark) !important;
}

/* Language switcher dropdown — white dropdown bg */
.theme-light .lang-option {
  color: var(--text-dark) !important;
}

/* Utility class — .text-navy on any light-bg surface */
.theme-light .text-navy {
  color: var(--text-dark) !important;
}

/* Light theme — footer */
.theme-light footer {
  border-top-color: rgba(0, 0, 0, .1) !important;
  color: var(--on-primary) !important;
}

.theme-light .footer-brand {
  color: var(--on-primary) !important;
}

.theme-light .footer-desc {
  color: var(--on-primary) !important;
  opacity: .82;
}

.theme-light .footer-heading {
  color: var(--gold-dark) !important;
}

.theme-light .footer-line-label {
  color: var(--on-primary) !important;
  opacity: .7;
}

.theme-light .footer-bottom {
  color: var(--on-primary) !important;
}

.theme-light .footer-bottom-copy {
  opacity: .75;
}

.theme-light .footer-bottom-brand {
  opacity: .55;
}

.theme-light .footer-legal-links a {
  color: var(--on-primary) !important;
  opacity: .8;
}

.theme-light .footer-legal-links a:hover {
  color: var(--gold-dark) !important;
  opacity: 1;
}

.theme-light .footer-legal-dot {
  color: var(--on-primary) !important;
}

.theme-light .footer-title {
  color: var(--gold-dark) !important;
}

.theme-light .footer-links li {
  color: var(--on-primary) !important;
  opacity: .82;
}

.theme-light .footer-links li:hover {
  opacity: 1;
}

.theme-light .footer-links a {
  color: var(--on-primary) !important;
  opacity: .82;
}

.theme-light .footer-links a:hover {
  color: var(--on-primary) !important;
  opacity: 1;
}

.theme-light .footer-links li a:hover {
  color: var(--gold-dark) !important;
  opacity: 1;
}

.theme-light .social-btn {
  border-color: rgba(0, 0, 0, .2) !important;
  color: var(--on-primary) !important;
}

.theme-light .social-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--text-dark) !important;
}

.theme-light .footer-divider {
  border-color: rgba(0, 0, 0, .1) !important;
}

.theme-light .footer-bottom {
  color: var(--on-primary) !important;
  opacity: .7;
}

/* Light theme — CTA contact cards (see CTA section block further below for full rules) */
.theme-light .contact-card {
  background: rgba(255, 255, 255, .65) !important;
  border-color: rgba(0, 0, 0, .12) !important;
  color: var(--on-primary) !important;
  backdrop-filter: blur(4px);
}

.theme-light .contact-card:hover {
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1) !important;
}

.theme-light .contact-card i {
  color: var(--gold) !important;
}

/* Light theme — cookie banner */
.theme-light .cookie-banner {
  background: rgba(255, 255, 255, .97) !important;
  border-top-color: rgba(0, 0, 0, .1) !important;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .1) !important;
}

.theme-light .cookie-banner-title {
  color: var(--text-dark) !important;
}

.theme-light .cookie-banner-text p {
  color: rgba(0, 0, 0, .6) !important;
}

.theme-light .cookie-banner-text a {
  color: var(--gold) !important;
}

.theme-light .cookie-btn-settings,
.theme-light .cookie-btn-reject {
  border-color: rgba(0, 0, 0, .2) !important;
  color: rgba(0, 0, 0, .6) !important;
}

.theme-light .cookie-btn-reject:hover {
  border-color: rgba(0, 0, 0, .4) !important;
  color: var(--text-dark) !important;
}

/* Light theme — mnav-sticky */
.theme-light .mnav-sticky {
  background: rgba(255, 255, 255, .97) !important;
  border-bottom-color: rgba(0, 0, 0, .08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08) !important;
}

.theme-light .mnav-sticky-name {
  color: var(--on-primary) !important;
}

/* Light theme — info-card labels (Check-in / Check-out — use inline color:var(--navy)) */
.theme-light .info-card-label {
  color: var(--text-dark) !important;
}

/* Light theme — awards strip (white text on navy=light-blue → swap to dark) */
.theme-light .awards-strip {
  border-top-color: rgba(0, 0, 0, .1) !important;
  border-bottom-color: rgba(0, 0, 0, .1) !important;
}

.theme-light .award-item {
  color: var(--on-primary) !important;
  opacity: .82;
}

.theme-light .award-item strong {
  color: var(--on-primary) !important;
  opacity: 1;
}

.theme-light .award-item i {
  color: var(--gold) !important;
}

.theme-light .award-item+.award-item {
  border-left-color: rgba(0, 0, 0, .12) !important;
}

@media (max-width: 767px) {
  .theme-light .award-item+.award-item {
    border-top-color: rgba(0, 0, 0, .1) !important;
  }
}

/* Light theme — signature experiences: natural photo + dark overlay + parallax */
.theme-light .experience-section {
  background: #0f1e2d !important;
}

.theme-light .experience-section::before {
  opacity: 0.72 !important;
}

.theme-light .experience-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 36, .52);
  z-index: 1;
  pointer-events: none;
}

.theme-light .experience-section .container {
  z-index: 3 !important;
}

/* Eyebrow, heading, subtitle — white on dark overlay */
.theme-light .experience-section .section-tag-center {
  color: var(--gold) !important;
}

.theme-light .experience-section .section-title {
  color: #ffffff !important;
}

.theme-light .experience-section .luxury-divider-icon {
  color: var(--gold) !important;
}

.theme-light .experience-section>.container>.text-center>p {
  color: rgba(255, 255, 255, .75) !important;
  opacity: 1 !important;
}

/* Cards — white frosted glass */
.theme-light .experience-title {
  color: var(--text-dark) !important;
}

.theme-light .experience-desc {
  color: var(--text-mid) !important;
}

.theme-light .experience-card {
  background: rgba(255, 255, 255, .9) !important;
  border-color: rgba(255, 255, 255, .18) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-light .experience-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35) !important;
  transform: translateY(-8px) !important;
}

.theme-light .experience-num {
  color: var(--gold) !important;
  opacity: .5;
}

.theme-light .experience-link {
  color: var(--gold-dark) !important;
}

.theme-light .experience-link:hover {
  color: var(--gold) !important;
}

/* Light theme — CTA section (navy=light-blue bg): scoped gold-light → gold-dark */
.theme-light .cta-section {
  --gold-light: var(--gold-dark);
}

.theme-light .cta-section h2 {
  color: var(--on-primary) !important;
}

.theme-light .cta-section p {
  color: var(--on-primary) !important;
  opacity: .7;
}


/* Light theme — activity rows (ivory bg): gold-light num low contrast */
.theme-light .activity-num {
  color: var(--gold-dark) !important;
}

/* Light theme — related-card badge (navy=light-blue bg + gold-light text = low contrast) */
.theme-light .related-card-badge {
  background: #4a4a4a !important;
  color: #ffffff !important;
}

/* Light theme — privacy table header (navy=light-blue bg + gold-light text) */
.theme-light .privacy-table th {
  background: var(--text-dark) !important;
  color: var(--gold) !important;
}

/* Light theme — cookie badge required (navy=light-blue bg + gold-light) */
.theme-light .cookie-badge.required {
  background: var(--text-dark) !important;
  color: var(--gold) !important;
}

/* ── Scroll Reveal ── */
.reveal-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.reveal-ready.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: #0B1E2D;
  padding: 176px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(5, 14, 28, .60) 0%, rgba(5, 14, 28, .22) 50%, rgba(5, 14, 28, .50) 100%),
    var(--hero-bg-url, url('../images/hero-bg.jpg')) center / cover no-repeat;
  opacity: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: .75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65), 0 1px 4px rgba(0, 0, 0, .45);
}

.page-hero-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  max-width: 520px;
  font-weight: 300;
}

.page-hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .25s ease, color .25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }
}

/* ══════════════════════════════════════════════════════
   5-STAR LUXURY COMPONENTS — Saisawan Beach Luxury
══════════════════════════════════════════════════════ */

/* ── Luxury hero font upgrade ── */
.hero h1,
.section-title,
.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  letter-spacing: .5px;
}

/* ── Section tag dual-line variant ── */
.section-tag-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .75rem;
}

.section-tag-center::before,
.section-tag-center::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ── Awards / Recognition Strip ── */
.awards-strip {
  background: var(--navy);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 169, 110, .15);
  border-bottom: 1px solid rgba(201, 169, 110, .15);
}

.awards-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.award-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 2.25rem;
  color: rgba(255, 255, 255, .65);
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.award-item+.award-item {
  border-left: 1px solid rgba(201, 169, 110, .2);
}

.award-item i {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.award-item strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

@media (max-width: 767px) {
  .award-item {
    padding: .4rem 1rem;
    font-size: .72rem;
  }

  .award-item+.award-item {
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, .15);
  }

  .awards-strip-inner {
    flex-direction: column;
    gap: 0;
  }
}

/* ── Signature Experience Cards ── */
.experience-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--sig-bg-image, url('../images/hero-bg.jpg'));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: var(--sig-bg-opacity, 0.08);
  transition: opacity .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .experience-section::before {
    background-attachment: fixed;
  }
}

.experience-section .container {
  position: relative;
  z-index: 2;
}

.experience-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 169, 110, .18);
  transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
  height: 100%;
}

.experience-card:hover {
  border-color: rgba(201, 169, 110, .5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.experience-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.experience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.25, .8, .25, 1);
}

.experience-card:hover .experience-card-img img {
  transform: scale(1.07);
}

.experience-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 27, 46, .8) 0%, transparent 55%);
}

.experience-card-body {
  padding: 1.75rem;
}

.experience-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, .25);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}

.experience-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: .65rem;
  line-height: 1.2;
}

.experience-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.experience-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .3s ease, color .3s ease;
}

.experience-link:hover {
  gap: .85rem;
  color: var(--gold-light);
}

/* ── Luxury Divider ── */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.luxury-divider-icon {
  color: var(--gold);
  font-size: .85rem;
  opacity: .7;
}

/* ── Footer luxury brand ── */
.footer-brand-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.footer-brand-name span {
  display: block;
  font-size: .8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  font-family: 'Sarabun', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: .2rem;
}

.footer-tagline {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-top: .65rem;
  margin-bottom: 1.25rem;
}

/* ── About section luxury accent ── */
.about-accent-box {
  position: relative;
}

.about-accent-box::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 160px;
  background: var(--gold-pale, #f7eed8);
  z-index: -1;
}

/* ── Luxury font size boost on large screens ── */
@media (min-width: 1200px) {
  .section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
  }

  .experience-title {
    font-size: 1.75rem;
  }
}

/* ══════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════════════════════════ */
.privacy-toc {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.privacy-toc-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.privacy-toc-list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.privacy-toc-list a {
  color: var(--text-mid);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s ease;
}

.privacy-toc-list a:hover {
  color: var(--gold-dark);
}

.privacy-intro {
  border-left: 3px solid var(--gold);
  padding: .85rem 1.5rem;
  background: rgba(201, 169, 110, .06);
  margin-bottom: 2.5rem;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-heading {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.privacy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--gold);
  font-size: .9rem;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.privacy-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: .5rem;
  margin-top: .55rem;
  flex-shrink: 0;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: rgba(201, 169, 110, .08);
  border: 1px solid rgba(201, 169, 110, .3);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.privacy-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .75rem;
}

@media (max-width: 767px) {
  .privacy-purpose-grid {
    grid-template-columns: 1fr;
  }
}

.privacy-purpose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  transition: border-color .25s ease;
}

.privacy-purpose-item:hover {
  border-color: var(--gold);
}

.privacy-purpose-item i {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

.privacy-purpose-item strong {
  display: block;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: .2rem;
}

.privacy-purpose-item span {
  font-size: .75rem;
  color: var(--text-light);
  letter-spacing: .3px;
}

.privacy-table-wrap {
  overflow-x: auto;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.privacy-table th {
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .85rem 1rem;
  text-align: left;
}

.privacy-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: top;
}

.privacy-table tr:hover td {
  background: rgba(201, 169, 110, .04);
}

.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: .75rem;
}

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

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

.privacy-right-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: white;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.privacy-right-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.privacy-right-item i {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.privacy-right-item strong {
  display: block;
  font-size: .82rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.privacy-right-item p {
  font-size: .78rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.privacy-cookie-types {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: .75rem;
}

.cookie-type-item {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  background: white;
}

.cookie-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.cookie-type-item p {
  font-size: .875rem;
  color: var(--text-mid);
  margin: 0;
}

.cookie-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .2rem .7rem;
}

.cookie-badge.required {
  background: var(--navy);
  color: var(--gold-light);
}

.cookie-badge.optional {
  background: rgba(201, 169, 110, .15);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 169, 110, .3);
}

.privacy-contact-box {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.privacy-contact-title {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.privacy-contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}

.privacy-contact-row i {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

.privacy-contact-row a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s;
}

.privacy-contact-row a:hover {
  color: var(--gold-light);
}

.privacy-footer-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 1rem;
}

.privacy-footer-note a {
  color: var(--gold-dark);
  text-decoration: none;
}

/* ── Footer LINE label ── */
.footer-line-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .4rem;
  letter-spacing: .5px;
}

/* ── Footer legal links ── */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-legal-links a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .25s ease;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER + MODAL
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER + MODAL
══════════════════════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9900;
  background: rgba(10, 18, 30, .97);
  border-top: 2px solid rgba(201, 169, 110, .45);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
}

.cookie-banner.active {
  display: block;
  animation: cookieSlideUp .4s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cookie-banner-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.cookie-banner-text p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cookie-banner-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.cookie-btn-settings,
.cookie-btn-reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .6);
  padding: .45rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
  font-family: 'Sarabun', sans-serif;
}

.cookie-btn-settings:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, .4);
  color: white;
}

.cookie-btn-accept {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: .45rem 1.2rem;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: .3px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: 'Sarabun', sans-serif;
}

.cookie-btn-accept:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
}

/* Tablet: wrap text */
@media (max-width: 767px) {
  .cookie-banner-inner {
    flex-wrap: wrap;
    padding: .85rem 1rem;
    gap: .75rem;
  }

  .cookie-banner-text p {
    white-space: normal;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Mobile: compact stacked layout */
@media (max-width: 480px) {
  .cookie-banner-inner {
    padding: .75rem .9rem;
    gap: .6rem;
  }

  .cookie-banner-icon {
    font-size: 1.2rem;
  }

  .cookie-banner-title {
    font-size: .68rem;
  }

  .cookie-banner-text p {
    font-size: .75rem;
  }

  .cookie-banner-actions {
    gap: .4rem;
  }

  .cookie-btn-settings,
  .cookie-btn-reject {
    padding: .4rem .65rem;
    font-size: .7rem;
  }

  .cookie-btn-accept {
    padding: .4rem .85rem;
    font-size: .73rem;
  }
}

/* ── Cookie Settings Modal ── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9950;
  background: rgba(5, 14, 22, .75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-box {
  background: white;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  border-radius: 12px 12px 0 0;
}

.cookie-modal-header h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  margin: 0;
}

.cookie-modal-close {
  background: rgba(255, 255, 255, .1);
  border: none;
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  transition: background .2s, color .2s;
  padding: .3rem .45rem;
  border-radius: 6px;
}

.cookie-modal-close:hover {
  background: rgba(255, 255, 255, .2);
  color: white;
}

.cookie-modal-body {
  padding: 1.1rem 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle-row:last-child {
  border-bottom: none;
}

.cookie-toggle-row>div {
  flex: 1;
  min-width: 0;
}

.cookie-toggle-row strong {
  display: block;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: .25rem;
}

.cookie-toggle-row p {
  font-size: .76rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle span {
  position: absolute;
  inset: 0;
  background: #d0d0d0;
  border-radius: 12px;
  transition: background .3s ease;
}

.cookie-toggle span::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  transition: transform .3s ease;
}

.cookie-toggle input:checked+span {
  background: var(--gold);
}

.cookie-toggle input:checked+span::before {
  transform: translateX(20px);
}

.cookie-toggle.disabled {
  opacity: .45;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #fafafa;
  border-radius: 0 0 12px 12px;
  flex-wrap: wrap;
}

.cookie-modal-link {
  font-size: .75rem;
  color: var(--gold-dark);
  text-decoration: underline;
  margin-right: auto;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 0;
    align-items: flex-end;
  }

  .cookie-modal-box {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
  }

  .cookie-modal-header {
    border-radius: 16px 16px 0 0;
  }

  .cookie-modal-footer {
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-modal-link {
    margin-right: 0;
    margin-bottom: .25rem;
  }

  .cookie-modal-footer .cookie-btn-reject,
  .cookie-modal-footer .cookie-btn-accept {
    width: 100%;
    text-align: center;
    padding: .6rem;
  }
}

/* ════════════════════════════════════════════════════════════
   REAL-SITE LOOK — override luxury theme to match saisawanbeach.com
   (appended 2026-06-14)
   ════════════════════════════════════════════════════════════ */

/* ---- Solid white header (no transparent overlap, no giant logo) ---- */
.navbar,
.navbar.navbar-home:not(.scrolled),
.navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 2px 14px rgba(0, 0, 0, .05) !important;
}

.navbar .navbar-brand,
.navbar.scrolled .navbar-brand {
  color: var(--text-dark) !important;
}

.navbar .navbar-brand img,
.navbar-home:not(.scrolled) .navbar-brand img,
.navbar-home.scrolled .navbar-brand img {
  height: 62px !important;
  filter: none !important;
}

.navbar-home:not(.scrolled) .container {
  align-items: center !important;
}

.navbar-home:not(.scrolled) .navbar-collapse {
  padding-top: 0 !important;
}

.navbar .nav-link {
  color: var(--text-dark) !important;
  opacity: 1 !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

/* ---- Hero = bright full-width image banner (no overlay/text) ---- */
.hero-banner {
  width: 100%;
  height: 74vh;
  min-height: 400px;
  margin-top: 130px;
  /* clear fixed topbar + navbar */
  background: var(--hero-bg-url, url('../images/hero-bg.jpg')) center center / cover no-repeat;
}

@media (max-width:991px) {
  .hero-banner {
    margin-top: 0;
    height: 48vh;
    min-height: 260px;
  }
}

/* ---- Room cards: teal name, red promo price (like real site) ---- */
.rcard-name,
.rcard-name a {
  color: var(--gold-dark) !important;
}

.rcard-price {
  color: #E5396A !important;
}

.rcard-discount-badge {
  background: #E5396A !important;
  color: #fff !important;
}

/* ---- Section headings: clean sans, medium weight ---- */
.section-title {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

/* ════════ REAL-SITE POLISH v2 — light topbar/footer/page-header (2026-06-14) ════════ */

/* ---- Top bar: light (contact on white, like real) ---- */
.topbar {
  background: #ffffff !important;
  color: #666 !important;
  border-bottom: 1px solid #ececec !important;
}

.topbar-item {
  color: #666 !important;
}

.topbar-item:hover {
  color: var(--gold-dark) !important;
}

.topbar-item .bi {
  color: var(--gold-dark) !important;
}

/* ---- Sub-page header: white, simple heading (real site has NO dark image band) ---- */
.theme-light .page-header,
.theme-light .page-hero,
.page-header,
.page-hero {
  background: #ffffff !important;
  color: var(--text-dark) !important;
  padding: 174px 0 12px !important;
}

.page-header::before,
.page-header::after,
.page-hero::before,
.page-hero::after {
  display: none !important;
}

.theme-light .page-header h1,
.theme-light .page-hero h1,
.page-header h1,
.page-hero h1 {
  color: var(--text-dark) !important;
  text-shadow: none !important;
  font-family: 'Sarabun', sans-serif !important;
}

.page-hero-eyebrow,
.page-header .page-hero-eyebrow {
  color: var(--gold-dark) !important;
}

.theme-light .page-header .page-hero-sub,
.theme-light .page-header p,
.theme-light .page-hero .page-hero-sub,
.theme-light .page-hero p,
.page-hero-sub {
  color: var(--text-light) !important;
}

.page-hero-divider,
.page-header-divider {
  background: var(--gold) !important;
}

.breadcrumb-item a {
  color: var(--gold-dark) !important;
}

.breadcrumb-item.active {
  color: var(--text-light) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #bbb !important;
}

/* ---- Footer: light bg, dark text (real site footer is light) ---- */
.theme-light footer,
footer {
  background: #F4F7F7 !important;
  color: #555 !important;
  border-top: 1px solid #e6ecec !important;
}

.footer-brand,
.footer-brand-name {
  color: var(--text-dark) !important;
}

.footer-desc,
.footer-tagline,
.footer-line-label {
  color: #777 !important;
}

.footer-heading {
  color: var(--gold-dark) !important;
}

.footer-links li,
.footer-links li a {
  color: #555 !important;
}

.footer-links li a:hover,
.footer-links li:hover {
  color: var(--gold-dark) !important;
}

.social-btn {
  border-color: #ccd6d6 !important;
  color: #5a6a6a !important;
}

.social-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

.btn-footer-book {
  border-color: var(--gold) !important;
  color: var(--gold-dark) !important;
}

.btn-footer-book:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

.theme-light .footer-bottom,
.footer-bottom {
  border-top-color: #e0e8e8 !important;
  color: #777 !important;
}

.theme-light .footer-bottom-copy,
.theme-light .footer-bottom-brand,
.footer-bottom-copy,
.footer-bottom-brand {
  color: #777 !important;
  opacity: 1 !important;
}

/* ---- Price: dark red like real (#B00000), hide discount %% badge (real has none) ---- */
.rcard-price,
.room-price,
.price-now {
  color: #B00000 !important;
}

.rcard-discount-badge {
  display: none !important;
}

/* ---- Footer link contrast (darker, readable on light bg) ---- */
.theme-light footer .footer-links li,
.theme-light footer .footer-links li a,
.theme-light footer .footer-links li a:visited {
  color: #3b4a4a !important;
}

.theme-light footer .footer-desc,
.theme-light footer .footer-tagline {
  color: #5a6a6a !important;
}

/* ---- CTA band on sub-pages: light to match bright theme ---- */
.theme-light .cta-section,
.cta-section {
  background: var(--cream) !important;
  color: var(--text-dark) !important;
}

.theme-light .cta-section h2,
.cta-section h2 {
  color: var(--text-dark) !important;
  font-family: 'Sarabun', sans-serif !important;
}

.theme-light .cta-section p,
.cta-section p {
  color: var(--text-light) !important;
  opacity: 1 !important;
}

.theme-light .contact-card,
.contact-card {
  background: #ffffff !important;
  border: 1px solid #e2eaea !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05) !important;
}

.contact-card .value {
  color: var(--text-dark) !important;
}

.contact-card .label {
  color: var(--text-light) !important;
}

.contact-card i {
  color: var(--gold) !important;
}

/* ════════ HEADER TWEAKS — logo bigger, nav dark+pill active, no lang circle (2026-06-14) ════════ */

/* 1) Bigger logo */
.navbar .navbar-brand img,
.navbar-home:not(.scrolled) .navbar-brand img,
.navbar-home.scrolled .navbar-brand img {
  height: 84px !important;
}

.navbar .navbar-brand {
  padding: 0.4rem 0 !important;
}

.hero-banner {
  margin-top: 148px;
}

/* 2) Nav menu = dark links + dark pill on active (match real), remove teal underline */
.theme-light .navbar .nav-link,
.theme-light .navbar:not(.scrolled) .nav-link,
.navbar.scrolled .nav-link {
  color: #3a3a3a !important;
}

.navbar .nav-link {
  padding: 0.55rem 1.05rem !important;
  border-radius: 6px;
}

.navbar .nav-link::after {
  display: none !important;
}

.theme-light .navbar .nav-link.active,
.theme-light .navbar:not(.scrolled) .nav-link.active,
.navbar.scrolled .nav-link.active {
  color: #ffffff !important;
  background: #2f3b44 !important;
}

.theme-light .navbar .nav-link:hover:not(.active),
.theme-light .navbar:not(.scrolled) .nav-link:hover:not(.active),
.navbar.scrolled .nav-link:hover:not(.active) {
  color: var(--gold-dark) !important;
}

/* 3) Remove circle/border around language switcher */
.lang-toggle-btn,
.navbar.scrolled .lang-toggle-btn {
  border: none !important;
  background: transparent !important;
  padding: .2rem .3rem !important;
}

.lang-toggle-btn:hover,
.navbar.scrolled .lang-toggle-btn:hover {
  border: none !important;
  background: transparent !important;
}

/* ---- Travel-time stat boxes (cleaner UI) ---- */
.travel-stats {
  margin-top: .25rem;
}

.travel-box {
  background: #f6faf9;
  border: 1px solid #e4eeec;
  border-radius: 14px;
  padding: 1.15rem .4rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.travel-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.travel-num {
  font-family: 'Sarabun', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-dark);
}

.travel-label {
  font-size: .74rem;
  font-weight: 600;
  color: #5a5a5a;
  margin-top: .5rem;
  line-height: 1.35;
}

/* ---- Gray accent fine-tune (neutral, no blue tint) ---- */
.navbar .nav-link.active,
.theme-light .navbar .nav-link.active,
.theme-light .navbar:not(.scrolled) .nav-link.active,
.navbar.scrolled .nav-link.active {
  background: #2d2d2d !important;
}

.travel-box {
  background: #f7f7f7 !important;
  border-color: #e8e8e8 !important;
}

/* ---- Button contrast for gray theme: WHITE text on dark fills ---- */
.btn-hero-primary,
.theme-light .btn-hero-primary {
  background: #2d2d2d !important;
  color: #ffffff !important;
}

.btn-hero-primary:hover,
.theme-light .btn-hero-primary:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

.theme-light .btn-book:hover,
.theme-light .rcard-img-overlay .btn-book:hover,
.theme-light .card-img-overlay .btn-book:hover {
  background: #2d2d2d !important;
  border-color: #2d2d2d !important;
  color: #ffffff !important;
}

/* ---- LINE brand icon (bi-line) sizing in social circles ---- */
.topbar-social .bi-line,
.mnav-social .bi-line,
.social-btn .bi-line {
  font-size: 1.05rem;
}

/* ---- Footer zone: cookie accept button (gray bg → white text) + LINE QR label readable ---- */
.theme-light .cookie-btn-accept,
.cookie-btn-accept {
  background: #2d2d2d !important;
  border-color: #2d2d2d !important;
  color: #ffffff !important;
}

.theme-light .cookie-btn-accept:hover,
.cookie-btn-accept:hover {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.theme-light .footer-line-label {
  color: #3b4a4a !important;
  opacity: 1 !important;
}

/* ════ Hero full-screen + FIXED parallax, bigger logo (match real) 2026-06-14 ════ */
/* Logo bigger — ~เท่าเว็บจริง */
.navbar .navbar-brand img,
.navbar-home:not(.scrolled) .navbar-brand img,
.navbar-home.scrolled .navbar-brand img {
  height: 115px !important;
}

.navbar .navbar-brand {
  padding: 0.25rem 0 !important;
}

/* Hero = fill screen below header, background FIXED (doesn't scroll with page) */
.hero-banner {
  height: calc(100vh - 160px) !important;
  min-height: 460px !important;
  margin-top: 160px !important;
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

@media (max-width: 991px) {
  .hero-banner {
    height: 52vh !important;
    min-height: 300px !important;
    margin-top: 0 !important;
    background-attachment: scroll !important;
  }
}

/* ════ About image carousel (right column) 2026-06-14 ════ */
.about-media {
  position: relative;
}

.about-carousel .carousel-inner {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
}

.about-carousel .carousel-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.about-carousel .carousel-indicators {
  margin-bottom: .6rem;
}

.about-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  opacity: .7;
}

.about-carousel .carousel-indicators .active {
  opacity: 1;
}

.about-carousel .carousel-control-prev,
.about-carousel .carousel-control-next {
  width: 14%;
  opacity: .85;
}

.about-carousel .carousel-control-prev-icon,
.about-carousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, .4);
  border-radius: 50%;
  padding: 13px;
  background-size: 48%;
}

.about-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 160px;
  background: var(--gold-pale);
  z-index: -1;
}

.about-empty {
  width: 100%;
  height: 450px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .6rem;
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
}

.about-empty i {
  font-size: 2.6rem;
  color: var(--border);
}

@media (max-width:991px) {

  .about-carousel .carousel-item img,
  .about-empty {
    height: 300px;
  }

  .about-deco {
    width: 130px;
    height: 110px;
    bottom: -16px;
    right: -16px;
  }
}

/* ════ Hero flush under menu (no gap) — image y0, full height, header overlaps top 2026-06-14 ════ */
.hero-banner {
  height: 100vh !important;
  min-height: 520px !important;
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  .hero-banner {
    height: 60vh !important;
    min-height: 320px !important;
    margin-top: 0 !important;
  }
}

/* ════ Hero = full natural image, scales to viewport width, scrolls with page (no crop, no parallax) 2026-06-15 ════ */
.hero-banner {
  height: auto !important;
  min-height: 0 !important;
  background: none !important;
  /* drop the cropped fixed background */
  width: 100%;
  font-size: 0;
  /* remove inline-image whitespace gap */
  line-height: 0;
}

.hero-banner .hero-img {
  display: block;
  width: 100%;
  height: auto;
  /* full image, natural aspect ratio, sized to screen width */
}

@media (max-width: 991px) {
  .hero-banner {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* ════ Footer rework — colorful social, map, readable links (match real) 2026-06-14 ════ */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 1.1rem;
  justify-content: center;
}

@media(min-width:992px) {
  .footer-socials {
    justify-content: center;
  }
}

.fsoc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.15rem;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.fsoc:hover {
  transform: translateY(-2px);
  opacity: .92;
  color: #fff !important;
}

.fsoc.line {
  background: #06C755;
}

.fsoc.fb {
  background: #1877F2;
}

.fsoc.ig {
  background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fsoc.msn {
  background: linear-gradient(135deg, #0099FF, #A033FF);
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.footer-map iframe {
  width: 100% !important;
  height: 250px !important;
  border: 0 !important;
  display: block;
}

.footer-map-empty {
  height: 250px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-light);
}

.theme-light .footer-legal-links a,
.footer-legal-links a {
  color: #3b4a4a !important;
}

.theme-light .footer-legal-links a:hover,
.footer-legal-links a:hover {
  color: var(--gold-dark) !important;
}

.theme-light .footer-bottom-brand,
.footer-bottom-brand {
  color: #8a8a8a !important;
  opacity: 1 !important;
}

/* ════ Fix gray-on-gray: white text/icons on dark (gray) accent backgrounds 2026-06-14 ════ */
.privacy-num,
.privacy-table th,
.activity-icon,
.act-card-icon,
.related-card-badge,
.back-to-top,
.back-to-top i {
  color: #ffffff !important;
}

.privacy-contact-box,
.privacy-contact-box a,
.privacy-contact-box a:hover {
  color: #ffffff !important;
}

.cookie-badge.required,
.theme-light .cookie-badge.required {
  background: #2d2d2d !important;
  color: #ffffff !important;
}

.lang-option.active,
.theme-light .lang-option.active {
  color: #ffffff !important;
}

/* additional gray-on-gray fixes (rooms/facilities/booking — other pages) */
.btn-book-nav:hover,
.theme-light .navbar:not(.scrolled) .btn-book-nav:hover,
.room-badge,
.fac-card:hover .fac-card-icon,
.album-cat-badge,
.theme-light .album-cat-badge,
.pkg-check,
.btn-primary,
.btn-primary:hover,
.theme-light .btn-primary,
.theme-light .btn-primary:hover,
.btn-book-full,
.social-btn:hover,
.theme-light .social-btn:hover {
  color: #ffffff !important;
}

/* ════ Footer text darker (near-black, clear) 2026-06-14 ════ */
.theme-light footer .footer-links li,
.theme-light footer .footer-links li a,
.theme-light footer .footer-links li a:visited,
.theme-light footer .footer-links li span,
footer .footer-links li,
footer .footer-links li a {
  color: #1f1f1f !important;
}

.theme-light footer .footer-links li a:hover {
  color: #000 !important;
  text-decoration: underline;
}

.theme-light footer .footer-heading,
footer .footer-heading {
  color: #111111 !important;
}

.theme-light footer .footer-tagline,
.theme-light footer .footer-line-label,
.theme-light footer .footer-brand-name {
  color: #2a2a2a !important;
}

/* ════ Footer text BLACK + BOLD + bigger (clear) 2026-06-14 ════ */
.theme-light footer .footer-links li,
.theme-light footer .footer-links li a,
.theme-light footer .footer-links li a:visited,
.theme-light footer .footer-links li span,
.theme-light footer .footer-links li strong {
  color: #000000 !important;
  font-weight: 500 !important;
  font-size: .93rem !important;
  opacity: 1 !important;
}

.theme-light footer .footer-links li a:hover {
  color: #000 !important;
  text-decoration: underline;
}

.theme-light footer .footer-heading,
footer .footer-heading {
  color: #000000 !important;
  font-weight: 700 !important;
}

.theme-light footer .footer-tagline,
.theme-light footer .footer-line-label,
.theme-light footer .footer-brand-name {
  color: #111111 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

/* ════ Dark text on room-rate / meeting-room / facilities (primary #000, secondary #272626) 2026-06-14 ════ */
.pg-dark-text {
  --text: #000000;
  --text-dark: #000000;
  --text-mid: #272626;
  --text-light: #272626;
}

.pg-dark-text main {
  color: #272626;
}

.pg-dark-text main h1,
.pg-dark-text main h2,
.pg-dark-text main h3,
.pg-dark-text main h4,
.pg-dark-text main h5,
.pg-dark-text main .section-title,
.pg-dark-text main .page-header h1,
.pg-dark-text main .rcard-name,
.pg-dark-text main .rcard-name a,
.pg-dark-text main .mcard-name,
.pg-dark-text main .mcard-name a,
.pg-dark-text main .fac-card-title,
.pg-dark-text main .fac-stat-num,
.pg-dark-text main strong,
.pg-dark-text main b {
  color: #000000 !important;
}

.pg-dark-text main p,
.pg-dark-text main li,
.pg-dark-text main .rcard-desc,
.pg-dark-text main .mcard-desc,
.pg-dark-text main .fac-card-desc,
.pg-dark-text main .fac-stat-label,
.pg-dark-text main .rcard-meta-item {
  color: #272626 !important;
}

/* ════ Mobile header: visible hamburger + social bar + tighter spacing 2026-06-14 ════ */
.mobile-social-bar {
  display: none;
}

@media (max-width: 991px) {

  .mnav-hamburger span,
  .navbar.scrolled .mnav-hamburger span {
    background: #2d2d2d !important;
  }

  .mnav-hamburger {
    background: #ffffff !important;
    border: 1px solid #dcdcdc !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08) !important;
  }

  .mobile-social-bar {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: .35rem 0 .9rem;
    background: #fff;
  }

  .page-header,
  .page-hero {
    padding: 22px 0 16px !important;
  }
}

/* ════ Mobile sticky header — white + social icons (match theme) 2026-06-14 ════ */
.theme-light .mnav-sticky {
  background: rgba(255, 255, 255, .97) !important;
  border-bottom: 1px solid #e8e8e8 !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .10) !important;
}

.mnav-sticky {
  padding: .5rem 1rem .6rem !important;
  gap: .45rem !important;
}

.mnav-sticky-brand img {
  height: 46px !important;
  filter: none !important;
}

.mnav-sticky-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.mnav-sticky-social .fsoc {
  width: 32px;
  height: 32px;
  font-size: .95rem;
}

/* ════ Mobile sub-page header: kill the big top padding (navbar is in-flow on mobile) 2026-06-14 ════ */
@media (max-width: 991px) {

  body.theme-light .page-header,
  body.theme-light .page-hero {
    padding-top: 18px !important;
    padding-bottom: 14px !important;
  }
}

/* ════ Responsive spacing — tighter sections & headings (tablet + phone) 2026-06-14 ════ */
@media (max-width: 991px) {
  .section-pad {
    padding: 52px 0 !important;
  }

  .section-pad-sm {
    padding: 38px 0 !important;
  }

  .section-title {
    margin-bottom: .7rem !important;
  }

  body.theme-light .page-header,
  body.theme-light .page-hero {
    padding-top: 16px !important;
    padding-bottom: 10px !important;
  }
}

@media (max-width: 575px) {
  .section-pad {
    padding: 38px 0 !important;
  }

  .section-pad-sm {
    padding: 26px 0 !important;
  }
}

/* ════ Contact cards UI/UX refresh (CTA sections) 2026-06-14 ════ */
.contact-card,
.theme-light .contact-card {
  background: #ffffff !important;
  border: 1px solid #eaeded !important;
  border-radius: 16px !important;
  padding: 1.6rem 1rem 1.4rem !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
  height: 100%;
}

.contact-card:hover,
.theme-light .contact-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .13) !important;
  border-color: #dfe6e6 !important;
}

.contact-card i,
.theme-light .contact-card i {
  font-size: 1.45rem !important;
  width: 56px;
  height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem !important;
  border-radius: 50%;
  background: #f1f4f4 !important;
  color: #2d2d2d !important;
}

.contact-card .bi-line {
  background: #e6f8ee !important;
  color: #06C755 !important;
}

.contact-card .label,
.theme-light .contact-card .label {
  font-size: .7rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #99a0a0 !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  margin-bottom: .45rem !important;
}

.contact-card .value,
.theme-light .contact-card .value {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: #1f1f1f !important;
  word-break: break-word;
  line-height: 1.45;
}

/* Phone: stack contact cards 1-per-row (cleaner than 2+1) */
@media (max-width: 575px) {
  .cta-section .row.justify-content-center>[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* LINE icon badge → brand green (beat .theme-light .contact-card i specificity) */
.theme-light .contact-card .bi-line,
.contact-card i.bi-line {
  background: #e6f8ee !important;
  color: #06C755 !important;
}

/* ════ About carousel: Ken Burns + zoom cursor + lightbox 2026-06-14 ════ */
.about-carousel .carousel-inner {
  overflow: hidden;
}

.about-carousel .carousel-item img {
  cursor: zoom-in;
  animation: aboutKenBurns 16s ease-in-out infinite alternate;
}

@keyframes aboutKenBurns {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

.about-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.about-carousel:hover .about-zoom-hint {
  opacity: 1;
}

.about-lb {
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
}

.about-lb.open {
  display: flex;
}

.about-lb img#aboutLbImg {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity .25s ease;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .5);
}

.about-lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .2s;
}

.about-lb-close:hover {
  background: rgba(255, 255, 255, .3);
}

.about-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.about-lb-nav:hover {
  background: rgba(255, 255, 255, .32);
}

.about-lb-prev {
  left: 18px;
}

.about-lb-next {
  right: 18px;
}

.about-lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  letter-spacing: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel .carousel-item img {
    animation: none;
  }
}

/* ===== Tighten gap between page-header and first content section (sub & detail pages) ===== */
.page-header+section {
  padding-top: 12px !important;
}

@media (max-width: 991px) {
  .page-header+section {
    padding-top: 10px !important;
  }
}

@media (max-width: 575px) {
  .page-header+section {
    padding-top: 8px !important;
  }
}

/* Hide the near-invisible breadcrumb in sub-page headers — it only added empty-looking gap */
.page-header nav[aria-label="breadcrumb"] {
  display: none !important;
}

/* ===== About carousel — calm crossfade, NO zoom (2026-06-15) ===== */
.about-carousel.carousel-fade .carousel-item {
  transition: opacity var(--about-speed, .9s) ease-in-out;
}

.about-carousel:not(.carousel-fade) .carousel-item {
  transition: transform var(--about-speed, .6s) ease-in-out;
}

/* no Ken Burns / zoom / blur — image stays perfectly still to avoid stutter on mobile */
.about-carousel .carousel-item img {
  animation: none;
  transform: none;
  filter: none;
  -webkit-user-drag: none;
  user-select: none;
}

.about-carousel .carousel-item.active img {
  animation: none;
  transform: none;
  filter: none;
}

.about-carousel {
  touch-action: pan-y;
}

/* ── Selectable transition effects (admin: about_transition) — applied to the active image ── */
.about-carousel[data-about-fx="zoom"] .carousel-item.active img {
  animation: aboutFxZoomIn var(--about-speed, .9s) ease-out;
}

.about-carousel[data-about-fx="zoomout"] .carousel-item.active img {
  animation: aboutFxZoomOut var(--about-speed, .9s) ease-out;
}

.about-carousel[data-about-fx="kenburns"] .carousel-item.active img {
  animation: aboutFxKenBurns 9s ease-in-out infinite alternate;
}

.about-carousel[data-about-fx="blur"] .carousel-item.active img {
  animation: aboutFxBlur var(--about-speed, .9s) ease-out;
}

.about-carousel[data-about-fx="slideup"] .carousel-item.active img {
  animation: aboutFxSlideUp var(--about-speed, .9s) cubic-bezier(.22, .61, .36, 1);
}

@keyframes aboutFxZoomIn {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

@keyframes aboutFxZoomOut {
  from {
    transform: scale(.9);
  }

  to {
    transform: scale(1);
  }
}

@keyframes aboutFxKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes aboutFxBlur {
  from {
    filter: blur(14px);
    opacity: .35;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes aboutFxSlideUp {
  from {
    transform: translateY(36px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel .carousel-item.active img {
    animation: none !important;
  }
}

/* ===== Readability: numeric / stat / price displays use the clear sans (Sarabun) 2026-06-14 ===== */
.fac-stat-num,
.specs-strip-value,
.price-main,
.room-price,
.activity-num,
.stat-card-value {
  font-family: 'Sarabun', sans-serif !important;
}

.fac-stat-num {
  font-weight: 800 !important;
  letter-spacing: .3px;
}

.price-main,
.room-price {
  font-weight: 800 !important;
}

.specs-strip-value {
  font-weight: 700 !important;
}

/* Rack/normal price shown as struck-through (looks like a discount) */
del.rack-strike {
  text-decoration: line-through;
  text-decoration-color: #c0392b;
  opacity: .85;
}

/* ===== A11y: footer-bottom text contrast (>= 4.5:1) 2026-06-14 ===== */
/* kill the parent opacity that fades the whole bar, then darken text (match .theme-light specificity) */
.theme-light .footer-bottom,
footer .footer-bottom {
  opacity: 1 !important;
}

.theme-light .footer-bottom-copy,
.theme-light .footer-bottom-brand,
footer .footer-bottom-copy,
footer .footer-bottom-brand {
  color: #585858 !important;
  opacity: 1 !important;
}

.theme-light .footer-legal-links a,
footer .footer-legal-links a {
  color: #3a3a3a !important;
  opacity: 1 !important;
}

.theme-light .footer-legal-dot,
footer .footer-legal-dot {
  color: #6a6a6a !important;
  opacity: 1 !important;
}

/* ===== Room detail layout — mobile: gallery → price → details; desktop: price sidebar (unchanged) ===== */
.rd-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width:992px) {
  .rd-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    grid-template-areas: "gallery price" "details price";
    column-gap: 3rem;
    row-gap: 2rem;
    align-items: start;
  }

  .rd-gallery {
    grid-area: gallery;
    min-width: 0;
  }

  .rd-price {
    grid-area: price;
  }

  .rd-details {
    grid-area: details;
    min-width: 0;
  }
}

/* ════ Logo polish 2026-06-15 — no gray shadow + bigger on desktop (front-end & admin) ════ */
/* Front-end navbar logo: remove the gray drop-shadow halo on every state */
.navbar .navbar-brand img,
.navbar-home .navbar-brand img,
.navbar-home:not(.scrolled) .navbar-brand img,
.navbar-home.scrolled .navbar-brand img,
.theme-light .navbar-home:not(.scrolled) .navbar-brand img,
.mnav-sticky-brand img,
.mnav-bottom-logo img {
  filter: none !important;
}

/* Front-end navbar logo: bigger on desktop (shrinks on scroll) */
@media (min-width: 992px) {

  .navbar .navbar-brand img,
  .navbar-home:not(.scrolled) .navbar-brand img {
    height: 132px !important;
  }

  .navbar.scrolled .navbar-brand img,
  .navbar-home.scrolled .navbar-brand img {
    height: 80px !important;
  }
}

/* Admin sidebar logo: no gray background/shadow + larger on desktop */
.admin-logo {
  background: transparent !important;
}

.admin-logo img {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (min-width: 992px) {
  .admin-logo img {
    height: 92px !important;
    max-width: 230px !important;
  }
}

/* ════ Active nav indicator 2026-06-15 — gold underline instead of dark pill ════ */
.navbar .nav-link {
  position: relative;
}

.navbar .nav-link.active,
.theme-light .navbar .nav-link.active,
.theme-light .navbar:not(.scrolled) .nav-link.active,
.navbar.scrolled .nav-link.active {
  background: transparent !important;
  color: var(--gold-dark) !important;
  border-radius: 0 !important;
}

/* Underline style: line grows from center on hover & active */
body[data-nav-active="underline"] .navbar .nav-link::after {
  display: block !important;
  content: '' !important;
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: .25rem;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .28s ease;
  pointer-events: none;
}

/* Hover any item → faint line zooms in ("about to select this menu") */
body[data-nav-active="underline"] .navbar .nav-link:hover::after {
  transform: scaleX(1);
  opacity: .5;
}

/* Active item → full solid line (stays, even while hovering) */
body[data-nav-active="underline"] .navbar .nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Admin-selectable variants (data-nav-active on <body>): default = underline above */
/* PILL — solid dark box (the old style) */
body[data-nav-active="pill"] .navbar .nav-link.active,
body[data-nav-active="pill"].theme-light .navbar .nav-link.active,
body[data-nav-active="pill"].theme-light .navbar:not(.scrolled) .nav-link.active,
body[data-nav-active="pill"] .navbar.scrolled .nav-link.active {
  background: #2d2d2d !important;
  color: #ffffff !important;
  border-radius: 6px !important;
}

body[data-nav-active="pill"] .navbar .nav-link.active::after {
  display: none !important;
}

/* SOFT — light gold highlight */
body[data-nav-active="soft"] .navbar .nav-link.active,
body[data-nav-active="soft"].theme-light .navbar .nav-link.active,
body[data-nav-active="soft"].theme-light .navbar:not(.scrolled) .nav-link.active,
body[data-nav-active="soft"] .navbar.scrolled .nav-link.active {
  background: rgba(201, 169, 110, .18) !important;
  color: var(--gold-dark) !important;
  border-radius: 6px !important;
}

body[data-nav-active="soft"] .navbar .nav-link.active::after {
  display: none !important;
}

/* Faint hover preview for pill / soft styles too ("about to select") */
.navbar .nav-link {
  transition: background-color .25s ease, color .25s ease;
}

body[data-nav-active="pill"] .navbar .nav-link:not(.active):hover {
  background: rgba(45, 45, 45, .10) !important;
  border-radius: 6px !important;
}

body[data-nav-active="soft"] .navbar .nav-link:not(.active):hover {
  background: rgba(201, 169, 110, .12) !important;
  border-radius: 6px !important;
}

/* ════ Meeting room — capacity-by-setup cards 2026-06-16 ════ */
.setup-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

@media (max-width: 575px) {
  .setup-cap-grid {
    grid-template-columns: 1fr;
  }
}

.setup-cap-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .85rem 1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.setup-cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
  border-color: transparent;
}

.setup-cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #f4f5f7;
  /* fallback if color-mix unsupported */
}

.setup-cap-info {
  flex: 1;
  min-width: 0;
}

.setup-cap-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.setup-cap-use {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.35;
}

.setup-cap-num {
  text-align: right;
  flex-shrink: 0;
  line-height: 1.05;
}

.setup-cap-num b {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocean);
  font-family: 'Sarabun', sans-serif;
}

.setup-cap-num small {
  font-size: .72rem;
  color: var(--text-light);
}