*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #154734;
  --navy-deep: #144734;
  --navy-mid: #243258;
  --sky: #4a7fc1;
  --sky-light: #6a9fd8;
  --gold: #ed8c06;
  --gold-light: #e2c46e;
  --cream: #faf8f3;
  --off-white: #f4f1eb;
  --gray-warm: #8a857c;
  --gray-light: #ede9e1;
  --white: #ffffff;
  --ink: #141414;
  --ff-display: "DM Serif Display", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;  
  letter-spacing: 1.5px;
  
}
p
{

}
img {
  display: block;
}
a {
  color: inherit;
  
}

/* ==================================================================== TOP BAR CSS START ===== */
#menu-top-header
{
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

#menu-top-header .current-menu-item a
{
  color: var(--white) !important;
}
.topbar {
  background: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 48px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  
}
.topbar a {
  text-decoration: none;
  color: rgba(255, 255, 255, 255);
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--gold-light);
}
.topbar-left {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #fff;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 7px;
  
}
.topbar-left svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  gap: 22px;
  align-items: center;
}
.tdiv {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* ==================================================================== TOP BAR CSS END ===== */


/* ==================================================================== HEADER CSS START ===== */


/* Main navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav.open
{
  display: block;
}
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

/* Hover underline effect */
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--sky);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--navy);
}



/* Menu toggle button */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Submenu styling - hidden by default */
.menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

/* Submenu items styling */
.sub-menu li {
  width: 100%;
  margin: 0;
}

.sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sub-menu li a:hover {
  background-color: #f5f5f5;
}

/* Parent menu items with submenus */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
  } 

/* Down arrow for parent menu items */
.menu-item-has-children > a {
  padding-right: 20px;
}

.menu-item-has-children > a::after {
  content: '▼';
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}

.current-menu-item a {
  color: var(--navy) !important;
  font-weight: 500 !important;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(26, 39, 68, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  gap: 32px;
}
.header-inner .site-logo img
{
  height: 72px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}
.logo-name {
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}
.logo-sub {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--sky);
  display: block;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold, #c9a84c);
  color: #fff;
  padding: 11px 24px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.book-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==================================================================== HEADER CSS END ===== */

/* ==================================================================== HERO CSS START ===== */

.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 1.1s var(--ease);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 8s linear;
}
.hero-slide.active {
  animation: heroKenBurns 8s ease-out forwards;
}
@keyframes heroKenBurns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}



.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 26, 48, 0.8) 0%,
    rgba(15, 26, 48, 0.35) 55%,
    rgba(15, 26, 48, 0.1) 100%
  );
}
.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 148px;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.35s forwards;
  
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 38px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  padding: 14px 30px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  
  transition: background 0.25s, border-color 0.25s;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.rooms-view-all
{
  margin-top: 15px;
  text-align: center;
}

.hero-controls {
  position: absolute;
  bottom: 148px;
  right: 52px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.hero-dots {
  display: flex;
  gap: 7px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.on {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
}
.stat-item {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  
  text-transform: uppercase;
  color: var(--gray-warm);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================================== HERO CSS END ===== */

/* ==================================================================== ROOMS CSS START ===== */

.rooms-section {
  padding: 20px 0;
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--sky);
}

.view-all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sky);
  text-decoration: none;
  
  transition: gap 0.3s;
}
.view-all:hover {
  gap: 14px;
}
.view-all svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 39, 68, 0.13);
}

.room-slider-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/3;
}
.room-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.room-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.room-card:hover .room-slider-btn {
  opacity: 1;
}
.room-slider-btn.prev {
  left: 10px;
}
.room-slider-btn.next {
  right: 10px;
}
.room-slider-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--navy);
}

.room-badge-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
}
.room-badge {
  font-size: 10px;
  font-weight: 600;
  
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
}

.room-badge.standard {
  background: var(--navy);
  color: var(--white);
}

.room-body {
  padding: 22px 22px 20px;
}
.room-name {
  font-family: var(--ff-display);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 10px;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.room-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--gray-warm);
}
.room-tag svg {
  width: 13px;
  height: 13px;
  fill: var(--sky);
}
.room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.room-price-val {
  font-family: var(--ff-display);
  font-size: 27px;
  color: var(--navy);
  line-height: 1;
}
.room-price-unit {
  font-size: 11px;
  color: var(--gray-warm);
  
  margin-top: 2px;
}
.room-foot-btns {
  display: flex;
  gap: 8px;
}
.btn-details {
  font-size: 12px;
  font-weight: 500;
  color: var(--sky);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--sky);
  
  transition: background 0.2s, color 0.2s;
}
.btn-details:hover {
  background: var(--sky);
  color: var(--white);
}
.btn-book-sm {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 8px 16px;
  text-decoration: none;
  
  transition: background 0.2s;
}
.btn-book-sm:hover {
  background: var(--sky);
}

/* ==================================================================== ROOMS CSS END ===== */

/* ==================================================================== ABOUT BAND CSS START ===== */


.about-band {

  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: stretch;
}
.about-band-div {
  background: var(--gray-light);
}
.about-item {
  padding: 12px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.about-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}
.about-title {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.about-text {
  font-size: 13.5px;
  color: var(--gray-warm);
  line-height: 1.65;
}

/* ==================================================================== ABOUT BAND CSS END ===== */
/* ==================================================================== AMENITIES CSS START ===== */


.amenities-section {
  background: var(--navy);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.amenities-left .section-eyebrow {
  color: var(--gold-light);
}
.amenities-left .section-eyebrow::before {
  background: var(--gold);
}
.amenities-left .section-title {
  color: var(--white);
  margin-bottom: 44px;
}
.amenities-left .section-title em {
  color: var(--gold-light);
}

.amen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.amen-item {
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
}
.amen-item:nth-child(even) {
  padding-left: 28px;
  padding-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.amen-item:nth-last-child(1),
.amen-item:nth-last-child(2) {
  border-bottom: none;
}
.amen-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.amen-icon i {
  color: var(--gold-light);
}
.amen-title {
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 5px;
}
.amen-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.amenities-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 4px;
}
.mosaic-cell {
  overflow: hidden;
  position: relative;
}
.mosaic-cell:first-child {
  grid-column: 1 / -1;
}
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.85);
}
.mosaic-cell:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.mosaic-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  font-size: 11px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ==================================================================== AMENITIES CSS END ===== */


/* ==================================================================== TESTIMONIALS CSS START ===== */

.testimonials-section {
  padding: 20px 0;
  background: var(--cream);
}
.testi-head {
  text-align: center;
  margin-bottom: 60px;
}
.testi-head .section-eyebrow {
  justify-content: center;
}
.testi-head .section-eyebrow::before {
  display: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  padding: 36px 30px;
  border-bottom: 3px solid var(--gray-light);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.testi-card:hover {
  border-color: var(--sky);
  transform: translateY(-5px);
}
.testi-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 100px;
  line-height: 0.6;
  color: var(--sky);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  right: 24px;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.ts {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}
.ts.e {
  fill: var(--gray-light);
}
.testi-text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.75;
  font-style: italic;
  font-family: var(--ff-display);
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testi-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  flex-shrink: 0;
}
.testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.testi-role {
  font-size: 12px;
  color: var(--gray-warm);
  margin-top: 2px;
}

/* ==================================================================== TESTIMONIALS CSS END ===== */

/* ==================================================================== CTA CSS START ===== */

.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-left {
  background: var(--navy);
  padding: 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-left .section-eyebrow {
  color: var(--gold-light);
}
.cta-left .section-eyebrow::before {
  background: var(--gold);
}
.cta-left .section-title {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-left .section-title em {
  color: var(--gold-light);
}
.cta-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 17px;
  height: 17px;
  fill: var(--gold-light);
}
.contact-label {
  font-size: 12px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
}
.contact-val {
  font-size: 16px;
  color: rgba(255, 255, 255, 255);
}
.contact-val a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.contact-val a:hover {
  color: var(--gold-light);
}
.contact-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  
}

.cta-btns {
  display: flex;
  gap: 14px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.cta-right {
  position: relative;
  min-height: 520px;
  
}
.cta-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 48, 0.15);
}
.cta-tag {
  position: absolute;
  bottom: 32px;
  left: -28px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 600;
  
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ==================================================================== CTA CSS END ===== */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — with background image
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ─── CONTACT US FIXED BUTTON ─── */

.contact-fab {
  position: fixed;
  bottom: 36px;
  right: 36px;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  font-family: var(--ff-body);
  z-index: 9999;
  text-decoration: none;
}

/* Circle icon */
.contact-fab .fab-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
  border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-fab .fab-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--navy-deep);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Sliding label */
.contact-fab .fab-label {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 600;
  
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 0 22px 22px 0;
  margin-left: -6px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
  opacity 0.35s ease,
  padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
  background 0.3s ease;
}

/* Pulse ring */
.contact-fab .fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.5);
  pointer-events: none;
  animation: fab-pulse-ring 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes fab-pulse-ring {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}

/* ─── HOVER STATES ─── */

.contact-fab:hover .fab-icon {
  background: var(--gold-light);
  border-radius: 50% 0 0 50%;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(226, 196, 110, 0.45);
}

.contact-fab:hover .fab-icon svg {
  transform: rotate(-10deg) scale(1.1);
}

.contact-fab:hover .fab-label {
  max-width: 180px;
  opacity: 1;
  padding: 0 20px 0 14px;
  background: var(--gold-light);
}

/* ─── ACTIVE / PRESS STATE ─── */

.contact-fab:active .fab-icon {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.25);
}


.site-footer {
  position: relative;
  overflow: hidden;
}

/* ── Background image layer ── */
.footer-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(1.5);
  transition: filter 6s ease;
}

/* Dark overlay gradient on top of image */
.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 28, 0.82) 0%,
    rgba(10, 16, 28, 0.9) 50%,
    rgba(10, 16, 28, 0.97) 100%
  );
  z-index: 1;
}

/* ── Gold top border ── */
.footer-top-border {
  position: relative;
  z-index: 2;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold, #c9a84c) 30%,
    var(--gold-light, #e2c46e) 50%,
    var(--gold, #c9a84c) 70%,
    transparent 100%
  );
}

/* ── CTA band ── */
.footer-cta-band {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer-cta-text {
}
.footer-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--gold-light, #e2c46e);
  margin-bottom: 10px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.footer-cta-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
}
.footer-cta-heading {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.12;
}
.footer-cta-heading em {
  font-style: italic;
  color: var(--gold-light, #e2c46e);
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold, #c9a84c);
  color: #fff;
  padding: 15px 32px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.2s;
}
.footer-cta-btn:hover {
  background: var(--gold-light, #e2c46e);
  transform: translateY(-2px);
}
.footer-cta-btn i {
  font-size: 13px;
}

/* ── Main footer grid ── */
.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Col 1: Brand */
.footer-brand {
}

.footer-logo-block {
  margin-bottom: 20px;
}
.footer-logo-block img
{
  background: white;
  border-radius: 10px;
  height: 75px;
  padding: 10px;
}
.footer-logo-name {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 3px;
}
.footer-logo-sub {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gold-light, #e2c46e);
  font-weight: 500;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

/* Gold rule under logo */
.footer-logo-rule {
  width: 40px;
  height: 2px;
  background: var(--gold, #c9a84c);
  margin: 18px 0;
}

.footer-about {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

/* Social row */
.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.social-icon-btn:hover {
  border-color: var(--gold, #c9a84c);
  color: var(--gold-light, #e2c46e);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* Col 2: Links */
.footer-h {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-h::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold, #c9a84c);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.footer-links li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: color 0.2s, padding-left 0.3s, gap 0.3s;
  position: relative;
  padding-left: 0;
}
.footer-links li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
  transition: width 0.3s;
  margin-right: 0;
}
.footer-links li a:hover {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 10px;
}
.footer-links li a:hover::before {
  width: 14px;
  margin-right: 0;
}

/* Col 3: Contact */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fcontact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding-left 0.25s;
}
.fcontact:first-child {
  padding-top: 0;
}
.fcontact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}


.fcontact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.fcontact:hover .fcontact-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.6);
}
.fcontact-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-light, #e2c46e);
  transition: fill 0.2s;
}
.fcontact-lbl {
  font-size: 10px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 3px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.fcontact-val {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  line-height: 1.5;
  
}
.fcontact-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.fcontact-val a:hover {
  color: var(--gold-light, #e2c46e);
}

/* ── Footer bottom bar ── */
.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-copy {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 255);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  
}
.footer-bottom-copy a {
  color: rgba(255, 255, 255, 255);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-copy a:hover {
  color: var(--gold-light, #e2c46e);
}

/* Bottom nav links */
.footer-bottom-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-bottom-nav a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  
}
.footer-bottom-nav a:hover {
  color: var(--gold-light, #e2c46e);
}
.footer-bottom-nav-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
}



/* ===== REVEAL ===== */
/*.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}*/



/*ROOMS PAGE CSS START*/

/* ── PAGE HERO (inner page) ── */
.page-hero {
  position: relative;
  height: 340px;
  
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 26, 48, 0.82) 0%,
    rgba(15, 26, 48, 0.45) 60%,
    rgba(15, 26, 48, 0.2) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 52px;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  
  margin-bottom: 12px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold-light);
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, 0.35);
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.page-hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── ROOMS SECTION ── */
.hotel-rooms-section {
  padding: 50px 0;
  background: var(--cream);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section header */
.rooms-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
/*.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}*/
/*.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky);
}*/
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--sky);
}

/* ── FILTER CONTROLS ── */
.filter-controls {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--gold);
}
.filter-controls-label {
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.filter-controls-label svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}
.filter-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-light);
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-group label {
  font-size: 13px;
  color: var(--gray-warm);
  font-weight: 400;
  white-space: nowrap;
}
.price-filter {
  appearance: none;
  -webkit-appearance: none;
  background: var(--off-white)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a7fc1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
  no-repeat right 14px center;
  border: 1px solid var(--gray-light);
  padding: 9px 38px 9px 14px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 160px;
}
.price-filter:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.15);
}
.filter-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-warm);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-count strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

/* ── ROOM LISTING GRID ── */
.room-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── ROOM CARD ── */
.room-listing-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 350px 1fr;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
  position: relative;
}
.room-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74, 127, 193, 0.25);
}

/* Card accent line on hover */
.room-listing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 2;
}
.room-listing-card:hover::before {
  transform: scaleX(1);
}

/* ── SLIDER ── */
.room-listing-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: unset;
  height: 100%;
  min-height: 280px;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.slider-track > div {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.slider-track > div img {
  width: 350px;
  height: 450px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.room-listing-card:hover .slider-track > div img {
  transform: scale(1.04);
}

/* Slider arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 3;
}
.room-listing-card:hover .slide-arrow {
  opacity: 1;
}
.slide-arrow:hover {
  background: var(--gold);
}
.slide-arrow:hover svg {
  fill: var(--navy-deep);
}
.slide-arrow.prev {
  left: 12px;
}
.slide-arrow.next {
  right: 12px;
}
.slide-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--navy);
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}
.slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Room badge */
.room-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}
.room-badge {
  font-size: 10px;
  font-weight: 600;
  
  text-transform: uppercase;
  padding: 5px 13px;
  display: inline-block;
}
.room-badge.executive {
  background: var(--navy);
  color: var(--white);
}
.room-badge.standard {
  background: var(--navy);
  color: var(--white);
}

/* ── CARD RIGHT CONTENT ── */
.room-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}

.room-header {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.room-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.room-type-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-warm);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}
.room-type-tag svg {
  width: 13px;
  height: 13px;
  fill: var(--sky);
}

.room-description {
  font-size: 13.5px;
  color: #666;
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Amenities */
.listing-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 22px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-warm);
  font-weight: 400;
}
.amenity-item svg {
  width: 13px;
  height: 13px;
  fill: var(--sky);
  flex-shrink: 0;
}
.amenity-item .amenity-sep {
  width: 1px;
  height: 12px;
  background: var(--gray-light);
}

/* Price + CTA */
.listing-room-price-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
  gap: 12px;
  margin-top: auto;
}
.listing-room-price {
  display: flex;
  flex-direction: column;
}
.price-val {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
  font-weight: 400;
}
.price-meta {
  font-size: 11px;
  color: var(--gray-warm);
  
  margin-top: 2px;
}

.card-cta-group {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}
.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--sky);
  color: var(--sky);
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 500;
  
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-details:hover {
  background: var(--sky);
  color: var(--white);
}
.btn-details svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.btn-book-room {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 600;
  
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-book-room:hover {
  background: var(--sky);
  transform: translateY(-1px);
}
.btn-book-room svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ── NO RESULTS ── */
.no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  color: var(--gray-warm);
}
.no-results svg {
  width: 48px;
  height: 48px;
  fill: var(--gray-light);
  margin: 0 auto 16px;
}
.no-results p {
  font-size: 15px;
}

/* ── REVEAL ANIMATION ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.26s;
}
.d4 {
  transition-delay: 0.34s;
}*/



/*ROOMS PAGE CSS END*/

/* ── CTA SECTION ── */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left panel */
.cta-left {
  background: var(--navy, #1a2744);
  padding: 88px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Decorative corner line accent */
.cta-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold, #c9a84c), transparent 70%);
}

/* Eyebrow */
.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--gold-light, #e2c46e);
  margin-bottom: 14px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.cta-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
}

/* Title */
.cta-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-light, #e2c46e);
}


/* Contact items */
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.cta-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cta-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cta-contact-item:hover .cta-contact-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
}
.cta-contact-icon i {
  font-size: 15px;
  color: var(--gold-light, #e2c46e);
}
.cta-contact-body {
}
.cta-contact-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-weight: 500;
}
.cta-contact-value {
  font-size: 16px;
  color: rgba(255, 255, 255, 255);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  
}
.cta-contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.cta-contact-value a:hover {
  color: var(--gold-light, #e2c46e);
}
.cta-contact-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  
  margin-top: 2px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

/* Divider between contacts */
.cta-contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* CTA buttons */
.cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: var(--navy, #1a2744);
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.cta-btn-primary:hover {
  background: var(--gold, #c9a84c);
  color: #fff;
  transform: translateY(-2px);
}
.cta-btn-primary i {
  font-size: 13px;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  
  text-decoration: none;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}
.cta-btn-secondary:hover {
  border-color: var(--gold, #c9a84c);
  color: var(--gold-light, #e2c46e);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}
.cta-btn-secondary i {
  font-size: 13px;
}

/* Right image panel */
.cta-image-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.cta-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 48, 0.12);
  z-index: 1;
}

/* Floating tag on image */
.cta-image-tag {
  position: absolute;
  bottom: 36px;
  left: -4px;
  z-index: 3;
  background: var(--gold, #c9a84c);
  color: #fff;
  padding: 13px 24px;
  font-size: 11.5px;
  font-weight: 700;
  
  text-transform: uppercase;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-image-tag i {
  font-size: 12px;
}

/* Gold top-border accent */
.cta-image-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold, #c9a84c);
  z-index: 3;
}

/* Hover zoom on image */
.cta-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 6s ease;
  z-index: 0;
}
.cta-section:hover .cta-image-bg {
  transform: scale(1.04);
}



/* ━━━━━━━━━━━━━━━━━━━━
   SECTION 1 — AMENITIES CARDS
━━━━━━━━━━━━━━━━━━━━ */
.page-amenities-section {
  padding: 50px 0;
  background: var(--cream);
}
.page-amenities-section .container,
.premium .container {
  max-width: 1400px;
  margin: 0 auto;
}

.amenities-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
/*.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}*/
/*.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky);
  flex-shrink: 0;
}*/
.section-title-styled {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.1;
}
.section-title-styled em {
  font-style: italic;
  color: var(--sky);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.amenity-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
  position: relative;
  cursor: pointer;
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26, 39, 68, 0.14);
  border-color: rgba(74, 127, 193, 0.25);
}
.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 2;
}
.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.amenity-card:hover .amenity-img img {
  transform: scale(1.06);
}
.amenity-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 48, 0.45) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.amenity-card:hover .amenity-img::after {
  opacity: 1;
}

.amenity-content {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
}
.amenity-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  margin-bottom: 16px;
  transition: background 0.25s, border-color 0.25s;
}
.amenity-icon-wrap i {
  font-size: 20px;
  color: var(--sky);
  transition: color 0.25s;
}
.amenity-card:hover .amenity-icon-wrap {
  background: var(--navy);
  border-color: var(--navy);
}
.amenity-card:hover .amenity-icon-wrap i {
  color: var(--gold-light);
}
.amenity-content h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.amenity-content p {
  font-size: 13.5px;
  color: var(--gray-warm);
  line-height: 1.72;
  font-weight: 300;
}

/* ━━━━━━━━━━━━━━━━━━━━
   SECTION 2 — PREMIUM FEATURES
━━━━━━━━━━━━━━━━━━━━ */
.premium {
  background: var(--navy);
  padding: 20px 60px;
  position: relative;
  overflow: hidden;
}
.premium::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.premium::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 127, 193, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.premium .container {
  position: relative;
  z-index: 1;
}

.premium-head {
  text-align: center;
  margin-bottom: 60px;
}
.premium-head .section-eyebrow {
  justify-content: center;
  color: var(--gold-light);
}
.premium-head .section-eyebrow::before {
  display: none;
}
.premium-head .section-title-styled {
  color: #ffffff;
}
.premium-head .section-title-styled em {
  color: var(--gold-light);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.premium-feature {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.premium-feature::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.premium-feature:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}
.premium-feature:hover::before {
  transform: scaleX(1);
}

.premium-icon-wrap {
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.premium-feature:hover .premium-icon-wrap {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}
.premium-icon-wrap i {
  font-size: 24px;
  color: var(--gold-light);
  transition: color 0.25s;
}
.premium-feature h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  transition: color 0.25s;
}
.premium-feature:hover h3 {
  color: var(--gold-light);
}


/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}
.d6 {
  transition-delay: 0.48s;
}*/



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ATTRACTIONS SECTION
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.attractions-main {
  padding: 50px 0;
  background: var(--cream, #faf8f3);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background texture */
.attractions-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 39, 68, 0.045) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.attractions-main .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.attractions-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 20px;
}

.attractions-head-left {
}

.attractions-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 12px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.attractions-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}

.attractions-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.1;
}
.attractions-title em {
  font-style: italic;
  color: var(--sky, #4a7fc1);
}

.attractions-head-right {
}
.attractions-desc {
  font-size: 15px;
  color: var(--navy, #1a2744);
  line-height: 1.78;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  padding-top: 8px;
  border-left: 2px solid var(--gold, #c9a84c);
  padding-left: 20px;
}

/* ── Cards Grid ── */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Attraction Card ── */
.attraction-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--gray-light, #ede9e1);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
  border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26, 39, 68, 0.13);
  border-color: rgba(74, 127, 193, 0.22);
}

/* Gold top sweep on hover */
.attraction-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.attraction-card:hover::before {
  transform: scaleX(1);
}

/* ── Card Header ── */
.card-header {
  padding: 30px 28px 22px;
  background: var(--navy, #1a2744);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow inside header */
.card-header::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.card-icon-wrapper {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s, border-color 0.3s;
}
.attraction-card:hover .card-icon-wrapper {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold, #c9a84c);
}
.card-icon-wrapper svg,
.card-icon-wrapper i {
  width: 24px;
  height: 24px;
  font-size: 22px;
  color: var(--gold-light, #e2c46e);
  fill: var(--gold-light, #e2c46e);
}

.card-header h3 {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 21px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
  position: relative;
}

.card-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.62;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  position: relative;
}

/* ── Card Body (list) ── */
.card-body {
  padding: 0 0 4px;
  flex-grow: 1;
}

.attraction-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.attraction-list li {
  border-bottom: 1px solid var(--gray-light, #ede9e1);
}
.attraction-list li:last-child {
  border-bottom: none;
}

.attraction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 28px;
  gap: 12px;
  transition: background 0.2s;
  cursor: default;
}
.attraction-item:hover {
  background: var(--off-white, #f4f1eb);
}

/* Left dot marker */
.attraction-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.attraction-name {
  font-size: 13.5px;
  color: var(--navy, #1a2744);
  font-weight: 400;
  
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;

}

/* Dot before name */
.attraction-name::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.2s;
}
.attraction-item:hover .attraction-name::before {
  opacity: 1;
  background: var(--gold, #c9a84c);
}

.attraction-distance {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sky, #4a7fc1);
  background: rgba(74, 127, 193, 0.08);
  padding: 3px 10px;
  border: 1px solid rgba(74, 127, 193, 0.18);
  
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.attraction-item:hover .attraction-distance {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold, #c9a84c);
}

/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.28s;
}
.d4 {
  transition-delay: 0.38s;
}*/



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCESSIBILITY SECTION
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.accessibility-section {
  padding: 50px 0;
  
  position: relative;
  overflow: hidden;
}

/* Decorative radial glows */
.accessibility-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.accessibility-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 127, 193, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.accessibility-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.accessibility-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 20px;
}

.accessibility-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 12px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.accessibility-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}

.accessibility-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.1;
}
.accessibility-title em {
  font-style: italic;
  color: var(--sky, #4a7fc1);
}

.accessibility-desc {
  font-size: 15px;
  color: var(--navy, #1a2744);
  line-height: 1.78;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  padding-top: 8px;
  border-left: 2px solid var(--gold, #c9a84c);
  padding-left: 20px;
}

/* ── Cards Grid ── */
.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* ── Accessibility Card ── */
.accessibility-card {
  background: rgba(255, 255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.2);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s,
  transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom gold sweep on hover */
.accessibility-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold, #c9a84c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.accessibility-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}
.accessibility-card:hover::before {
  transform: scaleX(1);
}

/* Inner glow on hover */
.accessibility-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.accessibility-card:hover::after {
  opacity: 1;
}

/* ── Card Icon ── */
.card-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}
.accessibility-card:hover .card-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold, #c9a84c);
}
.card-icon svg,
.card-icon i {
  width: 26px;
  height: 26px;
  font-size: 24px;
  color: var(--gold-light, #e2c46e);
  fill: var(--gold-light, #e2c46e);
  transition: color 0.25s, fill 0.25s;
}

/* ── Card Content ── */
.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.card-content h3 {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.25s;
}
.accessibility-card:hover .card-content h3 {
  color: var(--navy, #1a2744);
}

.card-content > p {
  font-size: 13.5px;
  color: var(--navy, #1a2744);
  line-height: 1.72;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Feature List ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: var(--gray-warm, #8a857c);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-weight: 300;
  line-height: 1.55;
  transition: color 0.2s;
}


/* Check icon */
.feature-list li .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: var(--sky, #4a7fc1);
  transition: fill 0.25s;
}


/* Legacy FontAwesome icon support */
.feature-list li .fa-check-circle {
  font-size: 14px;
  color: var(--sky, #4a7fc1);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.25s;
}
.accessibility-card:hover .feature-list li .fa-check-circle {
  color: var(--gold-light, #e2c46e);
}

/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.28s;
}
.d4 {
  transition-delay: 0.38s;
}*/




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE SECTION
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Page Layout ── */
.contact-page-layout {
  background: var(--cream, #faf8f3);
  padding: 20px 0;
}

/* ── Two-column wrapper ── */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   LEFT COLUMN — navy info panel
━━━━━━━━━━━━━━━━━━━━ */
.contact-info-wrapper {
  background: var(--navy, #1a2744);
  padding: 64px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.contact-info-wrapper::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.contact-info-wrapper::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 127, 193, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Gold left accent bar */
.contact-info-wrapper > * {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.contact-header {
  margin-bottom: 5px;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--gold-light, #e2c46e);
  margin-bottom: 14px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.contact-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
}

.contact-header h1 {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.contact-header h1 em {
  font-style: italic;
  color: var(--gold-light, #e2c46e);
}

.contact-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

/* ── Contact Cards ── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 10px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding-left 0.25s;
  
}
.contact-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}


.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.contact-card:hover .contact-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold, #c9a84c);
}
.contact-icon i {
  font-size: 15px;
  color: var(--gold-light, #e2c46e);
}

.contact-card-body {
}
.contact-card-body h3 {
  font-size: 12px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  
}
.contact-card-body address,
.contact-card-body p {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 255);
  line-height: 1.65;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-weight: 300;
  margin-bottom: 0.5rem;
  
}
.contact-link {
  color: rgba(255, 255, 255, 255);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.contact-link:hover {
  color: var(--gold-light, #e2c46e);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4aa5ff;
  text-decoration: none;
  
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: color 0.2s;
}
.map-link:hover {
  color: #4aa5ff;
}
.map-link i {
  font-size: 11px;
}

/* ── Contact image ── */
.contact-card-image {
  margin-top: 8px;
  overflow: hidden;
  position: relative;
}
.contact-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.85);
}
.contact-card-image:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.contact-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
  z-index: 1;
}

/* ── Social icons ── */
.contact-social {
  margin-top: auto;
  padding-top: 0;
}
.contact-social h3 {
  font-size: 12px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  
}
.social-icons-row {
  display: flex;
  gap: 10px;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light, #e2c46e);
  background: rgba(255, 255, 255, 0.05);  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-icon-btn:hover {
  border-color: var(--gold-light, #e2c46e);
  color: var(--gold-light, #e2c46e);
  background: rgba(201, 168, 76, 0.1);
}

/* ━━━━━━━━━━━━━━━━━━━━
   RIGHT COLUMN — form panel
━━━━━━━━━━━━━━━━━━━━ */
.contact-form-wrapper {
  background: var(--white, #ffffff);
  padding: 64px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid var(--gray-light, #ede9e1);
}

.form-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 12px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.form-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}

.contact-form-wrapper h2 {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.15;
  margin-bottom: 10px;
}
.contact-form-wrapper h2 em {
  font-style: italic;
  color: var(--sky, #4a7fc1);
}

.form-intro {
  font-size: 14px;
  color: var(--gray-warm, #8a857c);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
}

/* ── CF7 form overrides ── */
.contact-form-wrapper .wpcf7 {
  width: 100%;
}
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-wrapper .wpcf7-form p {
  margin-bottom: 18px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
  width: 100%;
  padding: 13px 16px;
  background: var(--off-white, #f4f1eb);
  border: 1px solid var(--gray-light, #ede9e1);
  border-radius: 0;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy, #1a2744);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
  border-color: var(--sky, #4a7fc1);
  background: var(--white, #ffffff);
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.1);
}
.contact-form-wrapper textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(138, 133, 124, 0.6);
}

.contact-form-wrapper .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy, #1a2744);
  color: var(--white, #ffffff) !important;
  padding: 14px 32px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 600;
  
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: auto;
  transition: background 0.25s, transform 0.2s;
  margin-top: 6px;
}
.contact-form-wrapper .wpcf7-submit:hover {
  background: var(--sky, #4a7fc1);
  transform: translateY(-2px);
}
.contact-form-wrapper .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #d9534f;
  margin-top: 4px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.contact-form-wrapper .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  border-left: 3px solid var(--gold, #c9a84c);
  background: rgba(201, 168, 76, 0.06);
  color: var(--navy, #1a2744);
}

/* ━━━━━━━━━━━━━━━━━━━━
   MAP SECTION
━━━━━━━━━━━━━━━━━━━━ */
.fullwidth-map {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold, #c9a84c);
}
.fullwidth-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}
.fullwidth-map:hover iframe {
  filter: none;
}

/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.28s;
}*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY SECTION
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.gallery-section {
  padding: 50px 0;
  background: var(--cream, #faf8f3);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 39, 68, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.gallery-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.gallery-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 20px;
}
.gallery-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 12px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.gallery-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}
.gallery-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.1;
}
.gallery-title em {
  font-style: italic;
  color: var(--sky, #4a7fc1);
}
.gallery-desc {
  font-size: 15px;
  color: var(--gray-warm, #8a857c);
  line-height: 1.78;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  padding-top: 8px;
  border-left: 2px solid var(--gold, #c9a84c);
  padding-left: 20px;
}

/* ── Category Tabs ── */
.gallery-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex-shrink: 0;
  padding: 14px 26px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 400;
  
  color: var(--gray-warm, #8a857c);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  position: relative;
}
.tab-btn:hover {
  color: var(--navy, #1a2744);
}
.tab-btn.active {
  color: var(--navy, #1a2744);
  font-weight: 500;
  border-bottom-color: var(--gold, #c9a84c);
}

/* Tab count badge */
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gray-light, #ede9e1);
  color: var(--gray-warm, #8a857c);
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  margin-left: 7px;
  transition: background 0.25s, color 0.25s;
}
.tab-btn.active .tab-count {
  background: var(--gold, #c9a84c);
  color: var(--navy, #1a2744);
}

/* ── Tab Content ── */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

/* ── Gallery Item ── */
.gallery-item {
  position: relative;
  aspect-ratio: 3/3.4;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy, #1a2744);
}
.gallery-item.image-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
  filter: brightness(0.92);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.72);
}

/* Overlay */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 48, 0.72) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .image-overlay {
  opacity: 1;
}

.label-image-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

/* Expand icon */
.expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.gallery-item:hover .expand-btn {
  opacity: 1;
  transform: scale(1);
}
.expand-btn:hover {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
}
.expand-btn i {
  font-size: 13px;
  color: #ffffff;
}

/* Featured first item (larger) */
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── Load More ── */
.load-more-container {
  text-align: center;
  margin-top: 36px;
}
.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy, #1a2744);
  border: 1.5px solid var(--navy, #1a2744);
  padding: 13px 32px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 500;
  
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.load-more-btn:hover {
  background: var(--navy, #1a2744);
  color: #ffffff;
  transform: translateY(-2px);
}
.load-more-btn i {
  font-size: 13px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   LIGHTBOX MODAL
━━━━━━━━━━━━━━━━━━━━ */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(10, 16, 28, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: modalFadeIn 0.25s ease;
}
.gallery-modal.open {
  display: flex;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-inner {
  position: relative;
  max-width: 1100px;
  width: calc(100vw - 48px);
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-image-wrap {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 160px);
  overflow: hidden;
}
.modal-image-wrap img {
  width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  display: block;
  border-top: 3px solid var(--gold, #c9a84c);
}

/* Modal caption */
.modal-caption {
  width: 100%;
  background: var(--navy, #1a2744);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.modal-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}
.modal-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  
  white-space: nowrap;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

/* Close button */
.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
}

/* Nav arrows */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.modal-nav-btn:hover {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
}
.modal-nav-btn.prev {
  left: -64px;
}
.modal-nav-btn.next {
  right: -64px;
}
.modal-nav-btn i {
  font-size: 14px;
}

/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}*/




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG LISTING PAGE
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Page wrapper ── */
.blog-page {
  background: var(--cream, #faf8f3);
  min-height: 60vh;
}

/* ── Blog section ── */
.blog-section {
  padding: 50px 0;
  background: var(--cream, #faf8f3);
  position: relative;
  overflow: hidden;
}
.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 39, 68, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.blog-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.blog-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 20px;
}
.blog-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 12px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.blog-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}
.blog-heading {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.1;
}
.blog-heading em {
  font-style: italic;
  color: var(--sky, #4a7fc1);
}
.blog-head-desc {
  font-size: 15px;
  color: var(--gray-warm, #8a857c);
  line-height: 1.78;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  padding-top: 8px;
  border-left: 2px solid var(--gold, #c9a84c);
  padding-left: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   FEATURED POST (page 1 only)
━━━━━━━━━━━━━━━━━━━━ */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
  border: 1px solid var(--gray-light, #ede9e1);
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s;
  background: var(--white, #fff);
  position: relative;
}
.blog-featured:hover {
  box-shadow: 0 20px 56px rgba(26, 39, 68, 0.13);
  transform: translateY(-4px);
}
.blog-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
  z-index: 2;
}

.featured-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-featured:hover .featured-img-wrap img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold, #c9a84c);
  color: var(--navy, #1a2744);
  font-size: 10px;
  font-weight: 700;
  
  text-transform: uppercase;
  padding: 5px 13px;
  z-index: 2;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

.featured-body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 16px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.featured-category::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}

.featured-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.2;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.featured-title:hover {
  color: var(--sky, #4a7fc1);
}

.featured-excerpt {
  font-size: 14.5px;
  color: var(--gray-warm, #8a857c);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--gray-light, #ede9e1);
  gap: 16px;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-light, #ede9e1);
  flex-shrink: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy, #1a2744);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.blog-date {
  font-size: 12px;
  color: var(--gray-warm, #8a857c);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.blog-date i {
  font-size: 11px;
  color: var(--gold, #c9a84c);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky, #4a7fc1);
  text-decoration: none;
  
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: gap 0.3s, color 0.2s;
  margin-top: 20px;
  align-self: flex-start;
}
.read-more-link:hover {
  gap: 14px;
  color: var(--navy, #1a2744);
}
.read-more-link i {
  font-size: 11px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   BLOG GRID
━━━━━━━━━━━━━━━━━━━━ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Blog Card ── */
.blog-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s,
  border-color 0.3s;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26, 39, 68, 0.13);
  border-color: rgba(74, 127, 193, 0.22);
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.blog-card:hover::before {
  transform: scaleX(1);
}

/* Card image */
.blog-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-image {
  transform: scale(1.06);
}

/* Category badge */
.blog-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--navy, #1a2744);
  color: var(--white, #fff);
  font-size: 10px;
  font-weight: 600;
  
  text-transform: uppercase;
  padding: 4px 12px;
  z-index: 2;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.2s;
}
.blog-card:hover .blog-category {
  background: var(--gold, #c9a84c);
  color: var(--navy, #1a2744);
}

/* Card body */
.blog-content {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-title-link {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.25;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.blog-title-link:hover {
  color: var(--sky, #4a7fc1);
}

.blog-excerpt {
  font-size: 13.5px;
  color: var(--gray-warm, #8a857c);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 18px;
  flex-grow: 1;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card footer */
.blog-card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--gray-light, #ede9e1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.blog-card-footer .author-name {
  font-size: 12.5px;
}
.blog-card-footer .blog-date {
  font-size: 11.5px;
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sky, #4a7fc1);
  text-decoration: none;
  
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: gap 0.3s, color 0.2s;
  margin-top: 12px;
  align-self: flex-start;
}
.card-read-more:hover {
  gap: 12px;
  color: var(--navy, #1a2744);
}
.card-read-more i {
  font-size: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   PAGINATION
━━━━━━━━━━━━━━━━━━━━ */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
  gap: 0;
}
.page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-numbers li {
}
.page-numbers li a,
.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-warm, #8a857c);
  text-decoration: none;
  border: 1px solid var(--gray-light, #ede9e1);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: var(--white, #fff);
}
.page-numbers li a:hover {
  border-color: var(--sky, #4a7fc1);
  color: var(--sky, #4a7fc1);
  background: rgba(74, 127, 193, 0.05);
}
.page-numbers li a.current {
  background: var(--navy, #1a2744);
  color: var(--white, #fff);
  border-color: var(--navy, #1a2744);
  font-weight: 600;
}
.page-numbers li span {
  color: var(--gray-light, #ede9e1);
  border-color: transparent;
  background: none;
  cursor: default;
  
}
/* Prev / Next arrows */
.page-numbers li:first-child a,
.page-numbers li:last-child a {
  background: var(--navy, #1a2744);
  color: var(--white, #fff);
  border-color: var(--navy, #1a2744);
}
.page-numbers li:first-child a:hover,
.page-numbers li:last-child a:hover {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
  color: var(--navy, #1a2744);
}

/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}
.d6 {
  transition-delay: 0.48s;
}*/




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ROOM DETAIL PAGE
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.room-detail-section {
  padding: 72px 48px 100px;
  background: var(--cream, #faf8f3);
  position: relative;
  overflow: hidden;
}
.room-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 39, 68, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.room-detail-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Two-column layout ── */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* ━━━━━━━━━━━━━━━━━━━━
   LEFT COLUMN
━━━━━━━━━━━━━━━━━━━━ */

/* ── Gallery ── */
.room-detail-gallery {
  margin-bottom: 32px;
}

.room-detail-slider-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy, #1a2744);
}
.detail-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.detail-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.detail-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Gallery arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s, border-color 0.2s;
  font-size: 14px;
}
.gallery-arrow:hover {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
}
.gallery-arrow i {
  font-size: 13px;
}
.gallery-arrow.prev {
  left: 16px;
}
.gallery-arrow.next {
  right: 16px;
}

/* Slide counter */
.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 26, 48, 0.7);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  
  padding: 5px 12px;
  z-index: 3;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

/* Thumbnail strip */
.thumb-strip {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.thumb-strip::-webkit-scrollbar {
  display: none;
}
.thumb-item {
  flex-shrink: 0;
  width: 88px;
  height: 60px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s;
}
.thumb-item.active {
  border-color: var(--gold, #c9a84c);
  opacity: 1;
}
.thumb-item:hover {
  opacity: 1;
}
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Room info card ── */
.room-info-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 40px 40px 36px;
  position: relative;
}
.room-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
}

/* Room title area */
.room-detail-header {
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
}
.room-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  margin-bottom: 12px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.room-detail-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
}
.room-detail-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Meta specs strip */
.room-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.meta-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white, #f4f1eb);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 9px 16px;
  font-size: 13px;
  color: var(--navy, #1a2744);
  font-weight: 400;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.2s, border-color 0.2s;
}
.meta-spec:hover {
  background: var(--white, #fff);
  border-color: rgba(74, 127, 193, 0.25);
}
.meta-spec i,
.meta-spec svg {
  font-size: 14px;
  color: var(--sky, #4a7fc1);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: var(--sky, #4a7fc1);
}

/* Room description */
.room-description-block {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
  margin-bottom: 10px;
}
.room-description-block p {
  margin-bottom: 14px;
}
.room-description-block p:last-child {
  margin-bottom: 0;
}

/* Amenities section */
.amenities-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin-bottom: 24px;
}


.detail-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.detail-amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--off-white, #f4f1eb);
  font-size: 13px;
  color: var(--navy, #1a2744);
  font-weight: 400;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.2s;
  cursor: default;
}
.detail-amenity-item:hover {
  background: var(--white, #fff);
}
.detail-amenity-item i,
.detail-amenity-item svg {
  font-size: 14px;
  color: var(--sky, #4a7fc1);
  flex-shrink: 0;
  fill: var(--sky, #4a7fc1);
  width: 16px;
  height: 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   RIGHT SIDEBAR
━━━━━━━━━━━━━━━━━━━━ */
.booking-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Booking card ── */
.booking-card {
  background: var(--navy, #1a2744);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
}
.booking-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.booking-card > * {
  position: relative;
  z-index: 1;
}

.price-box {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  display: block;
}
.price-value {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 46px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.price-unit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.price-fees {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

.check-avail-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--gold, #c9a84c);
  color: #fff;
  padding: 15px 22px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  margin-bottom: 20px;
}
.check-avail-btn:hover {
  background: var(--gold-light, #e2c46e);
  transform: translateY(-2px);
}
.check-avail-btn i {
  font-size: 12px;
}

/* ── Reviews card ── */
.reviews-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 28px;
  position: relative;
}
.reviews-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sky, #4a7fc1);
}
.sidebar-section-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  display: block;
}
.sidebar-section-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin-bottom: 18px;
}

.rating-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
}
.rating-big-number {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1;
}
.rating-out-of {
  font-size: 14px;
  color: var(--gray-warm, #8a857c);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.rating-detail {
}
.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 6px;
}
.star-row i {
  font-size: 14px;
  color: var(--gold, #c9a84c);
}
.star-row i.empty {
  color: var(--gray-light, #ede9e1);
}
.rating-text {
  font-size: 12.5px;
  color: var(--gray-warm, #8a857c);
  font-family: var(--ff-body, "DM Sans", sans-serif);
  line-height: 1.55;
}
.recommend-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #2a9d3e;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.recommend-text i {
  font-size: 12px;
}

/* ── Contact card ── */
.detail-contact-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 28px;
  position: relative;
}
.detail-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
}
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
}
.sidebar-contact-item:first-of-type {
  padding-top: 0;
}
.sidebar-contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.sc-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--off-white, #f4f1eb);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.sidebar-contact-item:hover .sc-icon {
  background: var(--navy, #1a2744);
  border-color: var(--navy, #1a2744);
}
.sidebar-contact-item:hover .sc-icon i {
  color: var(--gold-light, #e2c46e);
}
.sc-icon i {
  font-size: 13px;
  color: var(--sky, #4a7fc1);
  transition: color 0.2s;
}
.sc-body {
}
.sc-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  font-weight: 500;
  margin-bottom: 3px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.sc-value {
  font-size: 13px;
  color: var(--navy, #1a2744);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.sc-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.sc-value a:hover {
  color: var(--sky, #4a7fc1);
}

/* ── Policy card ── */
.policy-card {
  background: var(--off-white, #f4f1eb);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 28px;
}
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding: 0;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--navy, #1a2744);
  font-weight: 400;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  line-height: 1.55;
}
.policy-list li i,
.policy-list li svg {
  font-size: 13px;
  color: var(--sky, #4a7fc1);
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--sky, #4a7fc1);
  width: 14px;
  height: 14px;
}

/* ── REVEAL ── */
/*.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}*/




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG DETAIL PAGE
   Matches navy / gold / cream design system
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Wrapper ── */
.blog-detail-page {
  background: var(--cream, #faf8f3);
}

/* ━━━━━━━━━━━━━━━━━━━━
   HERO HEADER
━━━━━━━━━━━━━━━━━━━━ */
.blog-detail-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy, #1a2744);
}
.blog-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  animation: heroKB 10s ease forwards;
}
@keyframes heroKB {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
.blog-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 16, 28, 0.9) 0%,
    rgba(10, 16, 28, 0.55) 40%,
    rgba(10, 16, 28, 0.12) 100%
  );
  z-index: 1;
}
.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 72px;
  max-width: 1000px;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Breadcrumb */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: var(--gold-light, #e2c46e);
}
.hero-breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
}

/* Category */
.detail-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--gold-light, #e2c46e);
  margin-bottom: 18px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.detail-category::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
}

/* Title */
.blog-detail-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 820px;
}

/* Author + date bar */
.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.blog-hero-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}
.hero-author-name {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.hero-author-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-date {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.hero-date i {
  color: var(--gold, #c9a84c);
  font-size: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━
   MAIN CONTENT AREA
━━━━━━━━━━━━━━━━━━━━ */
.blog-detail-body {
  padding: 72px 80px 100px;
  background: var(--cream, #faf8f3);
  position: relative;
  overflow: hidden;
}
.blog-detail-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 39, 68, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.blog-detail-body .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

/* ━━━━━━━━━━━━━━━━━━━━
   ARTICLE CONTENT
━━━━━━━━━━━━━━━━━━━━ */
.blog-article {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 48px 48px 44px;
  position: relative;
}
.blog-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
}

/* Rich text typography */
.blog-content-body {
  font-family: var(--ff-body, "DM Sans", sans-serif);
  font-size: 15.5px;
  color: #444;
  line-height: 1.82;
  font-weight: 300;
}
.blog-content-body h2 {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.blog-content-body h3 {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin: 28px 0 10px;
  line-height: 1.2;
}
.blog-content-body p {
  margin-bottom: 20px;
}
.blog-content-body p:last-child {
  margin-bottom: 0;
}
.blog-content-body a {
  color: var(--sky, #4a7fc1);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.blog-content-body a:hover {
  color: var(--navy, #1a2744);
}
.blog-content-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 28px 0;
  border-top: 3px solid var(--gold, #c9a84c);
}
.blog-content-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--off-white, #f4f1eb);
  border-left: 4px solid var(--gold, #c9a84c);
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 19px;
  font-style: italic;
  color: var(--navy, #1a2744);
  line-height: 1.55;
}
.blog-content-body blockquote p {
  margin: 0;
}
.blog-content-body ul,
.blog-content-body ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.blog-content-body ul li,
.blog-content-body ol li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.blog-content-body ul {
  list-style: none;
  padding-left: 0;
}
.blog-content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}
.blog-content-body ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky, #4a7fc1);
  flex-shrink: 0;
  margin-top: 8px;
}
.blog-content-body strong {
  font-weight: 600;
  color: var(--navy, #1a2744);
}
.blog-content-body hr {
  border: none;
  border-top: 1px solid var(--gray-light, #ede9e1);
}

/* ── Article footer: share + tags ── */
.blog-article-footer {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-light, #ede9e1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.share-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.share-label {
  font-size: 11px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.share-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray-light, #ede9e1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-warm, #8a857c);
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.share-btn:hover {
  border-color: var(--navy, #1a2744);
  color: var(--navy, #1a2744);
  background: var(--off-white, #f4f1eb);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 22px;
  background: var(--off-white, #f4f1eb);
  border-left: 3px solid var(--gold, #c9a84c);
}
.article-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}
.article-author-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  font-weight: 500;
  margin-bottom: 3px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.article-author-name {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy, #1a2744);
}

/* ━━━━━━━━━━━━━━━━━━━━
   PREV / NEXT NAV
━━━━━━━━━━━━━━━━━━━━ */
.blog-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 28px;
}
.blog-nav-item {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 20px 22px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.blog-nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold, #c9a84c);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-nav-item:hover {
  background: var(--off-white, #f4f1eb);
  border-color: rgba(74, 127, 193, 0.2);
  transform: translateY(-3px);
}
.blog-nav-item:hover::before {
  transform: scaleX(1);
}
.blog-nav-item.next {
  flex-direction: row-reverse;
  text-align: right;
}
.nav-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-light, #ede9e1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sky, #4a7fc1);
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.blog-nav-item:hover .nav-arrow {
  background: var(--navy, #1a2744);
  border-color: var(--navy, #1a2744);
  color: #fff;
}
.nav-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  margin-bottom: 5px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.nav-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-nav-single {
  grid-column: 1 / -1;
}

/* ━━━━━━━━━━━━━━━━━━━━
   SIDEBAR
━━━━━━━━━━━━━━━━━━━━ */
.blog-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sidebar card base */
.sb-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-light, #ede9e1);
  padding: 28px;
  position: relative;
}
.sb-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
}
.sb-card.sky::before {
  background: var(--sky, #4a7fc1);
}

.sb-eyebrow {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.sb-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin-bottom: 16px;
}

/* Author card */
.sb-author {
  text-align: center;
}
.sb-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold, #c9a84c);
  margin: 0 auto 14px;
  display: block;
}
.sb-author-name {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  margin-bottom: 4px;
}
.sb-author-role {
  font-size: 12px;
  color: var(--gray-warm, #8a857c);
}
.sb-author-divider {
  width: 40px;
  height: 1px;
  background: var(--gold, #c9a84c);
  margin: 14px auto;
}

/* Related posts */
.related-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
  text-decoration: none;
  transition: padding-left 0.25s;
}
.related-item:first-of-type {
  padding-top: 0;
}
.related-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.related-item:hover {
  padding-left: 6px;
}
.related-thumb {
  width: 72px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.related-item:hover .related-thumb img {
  transform: scale(1.08);
}
.related-info {
}
.related-cat {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--sky, #4a7fc1);
  font-weight: 600;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  margin-bottom: 4px;
}
.related-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--navy, #1a2744);
  line-height: 1.3;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-item:hover .related-title {
  color: var(--sky, #4a7fc1);
}

/* Contact card */
.sb-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-light, #ede9e1);
}
.sb-contact-item:first-of-type {
  padding-top: 0;
}
.sb-contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.sb-ci-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--off-white, #f4f1eb);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.sb-contact-item:hover .sb-ci-icon {
  background: var(--navy, #1a2744);
  border-color: var(--navy, #1a2744);
}
.sb-contact-item:hover .sb-ci-icon i {
  color: var(--gold-light, #e2c46e);
}
.sb-ci-icon i {
  font-size: 12px;
  color: var(--sky, #4a7fc1);
  transition: color 0.2s;
}
.sb-ci-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--gray-warm, #8a857c);
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.sb-ci-value {
  font-size: 13px;
  color: var(--navy, #1a2744);
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.sb-ci-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.sb-ci-value a:hover {
  color: var(--sky, #4a7fc1);
}

/* Book CTA */
.sb-book-card {
  background: var(--navy, #1a2744);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.sb-book-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold, #c9a84c);
}
.sb-book-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.sb-book-card > * {
  position: relative;
  z-index: 1;
}
.sb-book-eyebrow {
  font-size: 10px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}
.sb-book-title {
  font-family: var(--ff-display, "DM Serif Display", Georgia, serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.sb-book-title em {
  font-style: italic;
  color: var(--gold-light, #e2c46e);
}
.sb-book-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold, #c9a84c);
  color: var(--navy, #1a2744);
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  transition: background 0.25s, transform 0.2s;
}
.sb-book-btn:hover {
  background: var(--gold-light, #e2c46e);
  transform: translateY(-2px);
}
.sb-book-btn i {
  font-size: 12px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

/* ======================================================================== HOME PAGE 3 CSS START*/

.h3-page {
  --h3-navy: #1a2744;
  --h3-navy-deep: #0f1a30;
  --h3-sky: #4a7fc1;
  --h3-gold: #e4b946;
  --h3-gold-lt: #e2c46e;
  --h3-gold-pale: #fdf5e0;
  --h3-white: #ffffff;
  --h3-snow: #fafbfc;
  --h3-cream: #faf8f3;
  --h3-warm: #f5f0e8;
  --h3-ink: #1c1c1e;
  --h3-slate: #4a5568;
  --h3-mist: #e8ecf0;
  --h3-rule: #e2e6ea;
  --h3-ff-display: "Playfair Display", Georgia, serif;
  --h3-ff-body: "Jost", sans-serif;
  --h3-ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--h3-ff-body);
  color: var(--h3-ink);
  background: var(--h3-white);
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── Scroll reveal ── */
.h3-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--h3-ease), transform 0.85s var(--h3-ease);
}
.h3-reveal.h3-vis {
  opacity: 1;
  transform: none;
}
.h3-d1 {
  transition-delay: 0.06s;
}
.h3-d2 {
  transition-delay: 0.14s;
}
.h3-d3 {
  transition-delay: 0.22s;
}
.h3-d4 {
  transition-delay: 0.3s;
}
.h3-d5 {
  transition-delay: 0.38s;
}

/* ══════════ HERO ══════════ */
.h3-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 87vh;
  position: relative;
}

.h3-hero-left {
  background: var(--h3-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  position: relative;
  z-index: 2;
}
.h3-hero-left::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--h3-gold),
    transparent
  );
}

.h3-hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--h3-gold);
  margin-bottom: 32px;
}
.h3-hero-location::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--h3-gold);
  flex-shrink: 0;
}

.h3-hero-title {
  font-family: var(--h3-ff-display);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  color: var(--h3-navy);
  line-height: 1.15;
  
  margin-bottom: 28px;
  animation: h3FadeUp 1s var(--h3-ease) 0.1s both;
}
.h3-hero-title em {
  font-style: italic;
  color: var(--h3-gold);
  font-weight: 400;
}
@keyframes h3FadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.h3-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--h3-slate);
  line-height: 1.8;
  margin-bottom: 44px;
  animation: h3FadeUp 1s var(--h3-ease) 0.25s both;
}

.h3-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: h3FadeUp 0.9s var(--h3-ease) 0.4s both;
}
.h3-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--h3-navy);
  color: var(--h3-white);
  padding: 15px 34px;
  font-family: var(--h3-ff-body);
  font-size: 12.5px;
  font-weight: 600;
  
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.h3-btn-primary:hover {
  background: var(--h3-gold);
  color: var(--h3-navy);
  transform: translateY(-2px);
}
.h3-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--h3-gold);
  color: var(--h3-navy);
  padding: 15px 34px;
  font-family: var(--h3-ff-body);
  font-size: 12.5px;
  font-weight: 500;
  
  transition: background 0.25s, color 0.25s;
}
.h3-btn-outline:hover {
  background: var(--h3-gold);
  color: var(--h3-navy);
}

.h3-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--h3-rule);
  width: 100%;
  /*max-width: 480px;*/
  animation: h3FadeUp 0.8s var(--h3-ease) 0.55s both;
}
.h3-hero-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--h3-rule);
}
.h3-hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.h3-hero-stat-num {
  font-family: var(--h3-ff-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--h3-navy);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.h3-hero-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  
  text-transform: uppercase;
  color: var(--h3-slate);
  opacity: 0.65;
}

.h3-hero-right {
  position: relative;
  overflow: hidden;
}
.h3-hero-slides {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 100%;
}
.h3-hero-slide {
  grid-area: 1/1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.h3-hero-slide.h3-on {
  opacity: 1;
  animation: h3KenBurns 10s ease forwards;
}
@keyframes h3KenBurns {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.h3-slide-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.h3-slide-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.35s;
}
.h3-slide-dot.h3-on {
  background: var(--h3-gold);
  width: 44px;
}

.h3-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
}
.h3-slide-arrow:hover {
  background: var(--h3-gold);
}
.h3-slide-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--h3-navy);
}
.h3-slide-arrow.h3-prev {
  left: 20px;
}
.h3-slide-arrow.h3-next {
  right: 20px;
}

.h3-avail-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--h3-white);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
  min-width: 220px;
}
.h3-avail-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--h3-gold);
}
.h3-avail-icon {
  width: 40px;
  height: 40px;
  background: var(--h3-gold-pale);
  border: 1px solid var(--h3-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h3-avail-icon i {
  font-size: 16px;
  color: var(--h3-gold);
}
.h3-avail-label {
  font-size: 10px;
  
  text-transform: uppercase;
  color: var(--h3-slate);
  margin-bottom: 3px;
}
.h3-avail-val {
  font-family: var(--h3-ff-display);
  font-size: 16px;
  color: var(--h3-navy);
}
.h3-avail-link {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  
  color: var(--h3-gold);
  margin-top: 2px;
  transition: letter-spacing 0.25s;
}
.h3-avail-tag:hover .h3-avail-link {

}

/* ══════════ ROOMS ══════════ */
.h3-rooms {
  background: var(--h3-snow);
  padding: 20px 155px 96px;
  position: relative;
  overflow: hidden;
}
.h3-rooms-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /*padding: 0 80px;*/
  margin-bottom: 56px;
  gap: 32px;
}
.h3-rooms-top-left {
  position: relative;
}
.h3-section-num {
  font-family: var(--h3-ff-display);
  font-size: 100px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 185, 70, 0.22);
  position: absolute;
  top: -44px;
  left: -16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.h3-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--h3-gold);
  margin-bottom: 12px;
}
.h3-section-tag::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--h3-gold);
  flex-shrink: 0;
}
.h3-section-title {
  font-family: var(--h3-ff-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--h3-navy);
  line-height: 1.15;
}
.h3-section-title em {
  font-style: italic;
  color: var(--h3-sky);
}

.h3-rooms-nav {
  display: flex;
  gap: 8px;
}
.h3-rooms-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--h3-navy);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.h3-rooms-arrow:hover {
  background: var(--h3-navy);
}
.h3-rooms-arrow:hover svg {
  fill: var(--h3-white);
}
.h3-rooms-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--h3-navy);
  transition: fill 0.2s;
}

.h3-rooms-track-wrap {
  /*padding-left: 80px;*/
  overflow: hidden;
}
.h3-rooms-track {
  display: flex;
  gap: 20px;
  transition: transform 0.65s var(--h3-ease);
}

.h3-room-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--h3-white);
  border: 1px solid var(--h3-rule);
  overflow: hidden;
  transition: transform 0.35s var(--h3-ease), box-shadow 0.35s,
  border-color 0.3s;
  position: relative;
}
.h3-room-card:hover {  
  box-shadow: 0 28px 64px rgba(26, 39, 68, 0.1);
  border-color: var(--h3-gold);
}

.h3-room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.h3-room-img-slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--h3-ease);
}
.h3-room-img-slider > div {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.h3-room-img-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--h3-ease);
}
.h3-room-card:hover .h3-room-img-slider img {
  transform: scale(1.05);
}

.h3-room-type-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--h3-navy);
  color: var(--h3-white);
  font-size: 9.5px;
  font-weight: 600;
  
  text-transform: uppercase;
  padding: 6px 14px;
  font-family: var(--h3-ff-body);
  z-index: 2;
}
.h3-room-type-badge.h3-gold {
  background: var(--h3-gold);
  color: var(--h3-navy);
}

.h3-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}
.h3-room-card:hover .h3-card-arrow {
  opacity: 1;
}
.h3-card-arrow.h3-l {
  left: 8px;
}
.h3-card-arrow.h3-r {
  right: 8px;
}
.h3-card-arrow svg {
  width: 12px;
  height: 12px;
  fill: var(--h3-navy);
}

.h3-room-body {
  padding: 22px 22px 18px;
}
.h3-room-name {
  font-family: var(--h3-ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--h3-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.h3-room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 18px;
}
.h3-room-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--h3-slate);
  font-weight: 300;
}
.h3-room-spec i {
  font-size: 11px;
  color: var(--h3-gold);
}
.h3-room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--h3-rule);
}
.h3-room-price {
  font-family: var(--h3-ff-display);
  font-size: 28px;
  color: var(--h3-navy);
  line-height: 1;
}
.h3-room-night {
  font-size: 11px;
  color: var(--h3-slate);
  font-weight: 300;
  margin-top: 2px;
}
.h3-room-actions {
  display: flex;
  gap: 6px;
}
.h3-btn-sm-outline {
  font-size: 11.5px;
  font-weight: 600;
  
  color: var(--h3-navy);
  border: 1px solid var(--h3-mist);
  padding: 8px 14px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.h3-btn-sm-outline:hover {
  background: var(--h3-navy);
  color: var(--h3-white);
  border-color: var(--h3-navy);
}
.h3-btn-sm-gold {
  font-size: 11.5px;
  font-weight: 600;
  
  background: var(--h3-gold);
  color: var(--h3-navy);
  padding: 8px 16px;
  transition: background 0.2s;
}
.h3-btn-sm-gold:hover {
  background: var(--h3-gold-lt);
}

/* ═══════════════════════════════════════════════════════
   HOME-3 — Bug fixes
   Add these rules AFTER your existing h3- styles
   or paste into your theme's style.css / custom CSS
═══════════════════════════════════════════════════════ */

/* ── FIX 1: Room card image container ──────────────────
   Force the image wrapper to always have a real height
   and prevent cropping during slide transitions         */

   .h3-room-img {
    position: relative;
    /* Reliable 4:3 aspect ratio cross-browser */
    aspect-ratio: 4 / 3;
    height: 0;
    padding-top: 75%;          /* 3/4 = 75% — fallback for older Safari */
    overflow: hidden;
    background: var(--h3-navy, #1a2744);
  }

/* When aspect-ratio is supported, drop the padding hack */
@supports (aspect-ratio: 4/3) {
  .h3-room-img {
    height: auto;
    padding-top: 0;
    aspect-ratio: 4 / 3;
  }
}

/* First bento card spans 2 rows — override to fill height */
.h3-room-card:first-child .h3-room-img {
  aspect-ratio: unset !important;
  height: 270px !important;
  padding-top: 0 !important;
  min-height: 360px;
}


/* ── FIX 2: Slider track & slides ──────────────────────
   Track must be absolutely positioned inside the
   aspect-ratio wrapper, and every slide must
   fill 100% without cropping                            */

   .h3-room-img-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    /* Smooth GPU-composited slide */
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
  }

  .h3-room-img-slider > div {
    /* Each slide panel */
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

  .h3-room-img-slider > div img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  }

/* Zoom on card hover — only the visible slide */
.h3-room-card:hover .h3-room-img-slider > div img {
  transform: scale(1.05);
}

/* ── FIX 3: Arrow buttons stay inside the image ────── */
.h3-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* Sit above the slider track */
  z-index: 4;
}


/* ── FIX 4: Rooms horizontal track on all breakpoints ─
   Ensure the track never clips mid-slide               */

   .h3-rooms-track-wrap {
    overflow: hidden;
    /* Prevent vertical scroll leak on touch devices */
    -webkit-overflow-scrolling: touch;
  }

  .h3-rooms-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
    /* Prevent vertical collapse */
    align-items: stretch;
  }

  .h3-room-card {
    /* Ensure card never collapses its height */
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

/* Card body grows to fill remaining space */
.h3-room-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.h3-room-foot {
  margin-top: auto;
}





/* ── FIX 6: Rooms responsive ─────────────────────────
   Stack vertically on mobile                          */











/* ── FIX 11: General touch-device improvements ──────
   Prevent text selection during swipe-like taps      */

   .h3-room-card,
   .h3-rooms-track,
   .h3-hero-right {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

/* Re-enable text selection inside card body text */
.h3-room-body,
.h3-testi-text,
.h3-amen-item-desc {
  user-select: text;
}

/* ══════════ AMENITIES ══════════ */
.h3-amenities {
  background: var(--h3-white);
  padding: 20px 96px;
  position: relative;
}
.h3-amenities-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: end;
  margin-bottom: 72px;
}
.h3-amen-head-left {
  position: relative;
}
.h3-amen-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--h3-slate);
  line-height: 1.78;
  padding-top: 10px;
  border-left: 2px solid var(--h3-gold);
  padding-left: 22px;
}

.h3-amen-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 64px;
  height: 280px;
}
.h3-amen-photo {
  overflow: hidden;
  position: relative;
}
.h3-amen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.7s var(--h3-ease), filter 0.4s;
}
.h3-amen-photo:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.h3-amen-photo-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(10, 16, 28, 0.6));
  font-size: 10px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-family: var(--h3-ff-body);
}

.h3-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.h3-feature-item {
  padding: 32px 28px;
  background: var(--h3-snow);
  border: 1px solid var(--h3-rule);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.h3-feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--h3-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--h3-ease);
}
.h3-feature-item:hover {
  background: var(--h3-white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.08);
}
.h3-feature-item:hover::after {
  transform: scaleX(1);
}
.h3-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--h3-gold-pale);
  border: 1px solid rgba(228, 185, 70, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.h3-feature-item:hover .h3-feature-icon {
  background: var(--h3-gold);
}
.h3-feature-item:hover .h3-feature-icon i {
  color: var(--h3-white);
}
.h3-feature-icon i {
  color: var(--h3-gold);
  transition: fill 0.25s;
}
.h3-feature-name {
  font-family: var(--h3-ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--h3-navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.h3-feature-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--h3-slate);
  line-height: 1.65;
}

/* ══════════ TESTIMONIALS ══════════ */
.h3-testimonials {
  background: var(--h3-warm);
  padding: 20px 96px;
  position: relative;
  overflow: hidden;
}
.h3-testi-deco {
  position: absolute;
  top: 48px;
  right: 80px;
  font-family: var(--h3-ff-display);
  font-size: 240px;
  line-height: 1;
  color: rgba(228, 185, 70, 0.1);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}
.h3-testi-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.h3-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  align-items: start;
}
.h3-testi-grid .h3-testi-card:nth-child(2) {
  transform: translateY(-24px);
}

.h3-testi-card {
  background: var(--h3-white);
  padding: 36px 32px 30px;
  border: 1px solid var(--h3-rule);
  position: relative;
  transition: transform 0.35s var(--h3-ease), box-shadow 0.3s;
}
.h3-testi-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 56px rgba(26, 39, 68, 0.1);
}
.h3-testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--h3-gold), var(--h3-gold-lt));
}

.h3-testi-open {
  font-family: var(--h3-ff-display);
  font-size: 56px;
  line-height: 0.7;
  color: var(--h3-gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}
.h3-testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.h3-tstar {
  width: 14px;
  height: 14px;
  fill: var(--h3-gold);
}
.h3-tstar.h3-e {
  fill: var(--h3-mist);
}
.h3-testi-text {
  font-family: var(--h3-ff-display);
  font-size: 15px;
  font-style: italic;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}
.h3-testi-sep {
  width: 32px;
  height: 1.5px;
  background: var(--h3-gold);
  margin-bottom: 20px;
}
.h3-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h3-testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--h3-gold);
}
.h3-testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h3-testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--h3-navy);
}
.h3-testi-role {
  font-size: 12px;
  font-weight: 300;
  color: var(--h3-slate);
  margin-top: 2px;
}

/* ══════════ CTA ══════════ */
.h3-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.h3-cta-left {
  background: var(--h3-navy);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.h3-cta-watermark {
  position: absolute;
  bottom: -24px;
  right: -12px;
  font-family: var(--h3-ff-display);
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 185, 70, 0.1);
  pointer-events: none;
  user-select: none;
}
.h3-cta-left > * {
  position: relative;
  z-index: 1;
}
.h3-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--h3-gold-lt);
  margin-bottom: 16px;
}
.h3-cta-tag::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--h3-gold);
  flex-shrink: 0;
}
.h3-cta-title {
  font-family: var(--h3-ff-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  color: var(--h3-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.h3-cta-title em {
  font-style: italic;
  color: var(--h3-gold-lt);
}
.h3-cta-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.78;
  margin-bottom: 20px;
  max-width: 380px;
}

.h3-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.h3-cta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding-left 0.25s;
}
.h3-cta-item:last-child {
  border-bottom: none;
}

.h3-cta-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(228, 185, 70, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.h3-cta-item:hover .h3-cta-ico {
  background: rgba(228, 185, 70, 0.15);
  border-color: var(--h3-gold);
}
.h3-cta-ico i {
  font-size: 13px;
  color: var(--h3-gold-lt);
}
.h3-cta-lbl {
  font-size: 10px;
  
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}
.h3-cta-val {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.h3-cta-val a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  font-size: 16px;
}
.h3-cta-val a:hover {
  color: var(--h3-gold-lt);
}

.h3-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.h3-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--h3-white);
  color: var(--h3-navy);
  padding: 13px 28px;
  font-size: 12.5px;
  font-weight: 700;
  
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.h3-btn-white:hover {
  background: var(--h3-gold);
}
.h3-btn-ghost-wh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.75);
  padding: 13px 28px;
  font-size: 12.5px;
  font-weight: 500;
  
  transition: border-color 0.25s, color 0.25s;
}
.h3-btn-ghost-wh:hover {
  border-color: var(--h3-gold-lt);
  color: var(--h3-gold-lt);
}

.h3-cta-right {
  position: relative;
  min-height: 560px;
}
.h3-cta-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 48, 0.1);
}
.h3-cta-float {
  position: absolute;
  bottom: 36px;
  left: -3px;
  z-index: 2;
  background: var(--h3-gold);
  color: var(--h3-navy);
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 700;
  
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  font-family: var(--h3-ff-body);
}

/* ══════════ ABOUT BAND ══════════ */
.h3-about {
  background: var(--h3-white);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--h3-rule);
  border-bottom: 1px solid var(--h3-rule);
}
.h3-about-item {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--h3-rule);
  transition: background 0.3s;
}
.h3-about-item:last-child {
  border-right: none;
}
.h3-about-item:hover {
  background: var(--h3-gold-pale);
}
.h3-about-num {
  font-family: var(--h3-ff-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--h3-gold);
  margin-bottom: 16px;
  
}
.h3-about-title {
  font-family: var(--h3-ff-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--h3-navy);
  margin-bottom: 8px;
}
.h3-about-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--h3-slate);
  line-height: 1.65;
}


/* ======================================================================== HOME PAGE 3 CSS END*/
/* ======================================================================== HOME PAGE 2 CSS START*/

/* ---- Google Fonts ---- */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&amp;family=DM+Sans:wght@300;400;500;600&amp;family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300;1,600&amp;display=swap");

/* ---- CSS Variables (same palette as home-1) ---- */
.h2-page {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --navy-mid: #243258;
  --sky: #4a7fc1;
  --sky-light: #6a9fd8;
  --gold: #e4b946;
  --gold-light: #e2c46e;
  --cream: #faf8f3;
  --off-white: #f4f1eb;
  --gray-warm: #8a857c;
  --gray-light: #ede9e1;
  --white: #ffffff;
  --ink: #141414;
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Base Reset for h2 sections ---- */
.h2-page {
  font-family: var(--ff-body);
  color: var(--ink);
}

/* ==============================================================
   HERO — Split screen: text left / full-bleed image right
   ============================================================== */
   .h2-hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--navy-deep);
  }

/* Left panel */
.h2-hero__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 72px;
  background: var(--navy-deep);
}

.h2-hero__panel::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 120px;
  background: var(--navy-deep);
  clip-path: polygon(0 0, 30% 0, 100% 50%, 30% 100%, 0 100%);
  z-index: 3;
}

/* Location tag */
.h2-hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-body);
  font-weight: 500;
  margin-bottom: 28px;
}

.h2-hero__loc::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Big heading */
.h2-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.h2-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.h2-hero__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  
  margin-bottom: 48px;
  font-weight: 300;
}

/* CTA row */
.h2-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.h2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 50%,
    calc(100% - 10px) 100%,
    0 100%
  );
  padding-right: 44px;
}

.h2-btn-primary:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.h2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.h2-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Right image */
.h2-hero__media {
  position: relative;
  overflow: hidden;
}

.h2-hero__slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s var(--ease);
}

.h2-hero__slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Diagonal overlay on image */
.h2-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 46, 0.45) 0%,
    transparent 60%
  );
}

/* Stats strip inside hero at bottom */
.h2-hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  display: flex;
  background: rgba(10, 20, 46, 0.96);
  border-top: 1px solid rgba(228, 185, 70, 0.3);
  z-index: 4;
}

.h2-stat {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.h2-stat:last-child {
  border-right: none;
}

.h2-stat__num {
  display: block;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.h2-stat__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
}

/* Hero controls */
.h2-hero__controls {
  position: absolute;
  right: 32px;
  bottom: 48px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.h2-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.h2-hero__dot.on {
  background: var(--gold);
  transform: scale(1.5);
}

.h2-hero__arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.h2-hero__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.h2-hero__arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


/* ==============================================================
   ROOMS — Alternating horizontal cards
   ============================================================== */
   .h2-rooms {
    background: var(--cream);
    padding: 40px 0;
  }

  .h2-rooms__header {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }

  .h2-rooms__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .h2-rooms__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--sky);
    display: block;
  }

  .h2-rooms__title {
    font-family: var(--ff-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--navy-deep);
  }

  .h2-rooms__title em {
    font-style: italic;
    color: var(--sky);
  }

  .h2-rooms__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--navy);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
    white-space: nowrap;
    align-self: end;
  }

  .h2-rooms__view-all:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

/* Grid: 3 columns on desktop */
.h2-rooms__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Card */
.h2-room-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}

.h2-room-card:hover {
  transform: translateY(-6px);
  z-index: 2;
}

/* Image area */
.h2-room-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.h2-room-card__slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.h2-room-card__slide {
  min-width: 100%;
  height: 100%;
}

.h2-room-card__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge */
.h2-room-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
}

/* Slider arrows */
.h2-room-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  background: rgba(10, 20, 46, 0.6);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.h2-room-card__img-wrap:hover .h2-room-card__arrow {
  opacity: 1;
}
.h2-room-card__arrow.prev {
  left: 10px;
}
.h2-room-card__arrow.next {
  right: 10px;
}
.h2-room-card__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Card body */
.h2-room-card__body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}

.h2-room-card:hover .h2-room-card__body {
  border-left-color: var(--gold);
}

.h2-room-card__name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

/* Tags */
.h2-room-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.h2-room-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gray-warm);
  background: var(--off-white);
  padding: 4px 10px;
}

.h2-room-card__tag svg {
  width: 13px;
  height: 13px;
  fill: var(--sky);
}

/* Footer */
.h2-room-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.h2-room-card__price-val {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
}

.h2-room-card__price-unit {
  font-size: 11px;
  color: var(--gray-warm);
  letter-spacing: 0.06em;
}

.h2-room-card__btns {
  display: flex;
  gap: 8px;
}

.h2-btn-details {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.h2-btn-details:hover {
  background: var(--navy);
  color: var(--white);
}

.h2-btn-book {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s;
}

.h2-btn-book:hover {
  background: var(--gold-light);
}


/* ==============================================================
   AMENITIES — Dark navy, two-column with large number labels
   ============================================================== */
   .h2-amenities {
    background: var(--navy-deep);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }

/* Decorative circle */
.h2-amenities::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(228, 185, 70, 0.07);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.h2-amenities::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(74, 127, 193, 0.08);
  bottom: -100px;
  left: 80px;
  pointer-events: none;
}

.h2-amenities__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 50px;
  align-items: start;
}

.h2-amenities__left {
  position: sticky;
  top: 80px;
}

.h2-amenities__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.h2-amenities__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.h2-amenities__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.h2-amenities__title em {
  font-style: italic;
  color: var(--gold);
}

/* Mosaic (vertical stack of 3 images) */
.h2-amenities__mosaic {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}

.h2-amenities__mosaic-cell {
  position: relative;
  overflow: hidden;
  height: 120px;
}

.h2-amenities__mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.h2-amenities__mosaic-cell:hover img {
  transform: scale(1.05);
}

.h2-amenities__mosaic-label {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Right: amenities numbered list */
.h2-amenities__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.h2-amen-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
  position: relative;
}

.h2-amen-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.h2-amen-item:hover {
  background: rgba(228, 185, 70, 0.04);
}

.h2-amen-item__num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 600;
  color: rgba(228, 185, 70, 0.15);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
}

.h2-amen-item:hover .h2-amen-item__num {
  color: rgba(228, 185, 70, 0.4);
}

.h2-amen-item__icon {
  display: none;
}

.h2-amen-item__title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.h2-amen-item__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}


/* ==============================================================
   TESTIMONIALS — Magazine horizontal scroll cards
   ============================================================== */
   .h2-testimonials {
    background: var(--off-white);
    padding: 40px 0;
    overflow: hidden;
  }

  .h2-testimonials__header {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 48px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
  }

  .h2-testimonials__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .h2-testimonials__eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--sky);
  }

  .h2-testimonials__title {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: var(--navy-deep);
    line-height: 1.1;
  }

  .h2-testimonials__title em {
    font-style: italic;
    color: var(--sky);
  }

/* Horizontal scroll track */
.h2-testi-track-wrap {
  margin: 0 auto;
  max-width: 1400px;
}

.h2-testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  justify-content: center;
}

.h2-testi-track::-webkit-scrollbar {
  display: none;
}

/* Card */
.h2-testi-card {
  flex: 0 0 380px;
  background: var(--white);
  padding: 40px 36px 32px;
  position: relative;
  scroll-snap-align: start;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.h2-testi-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.08);
}

/* Big quote mark */
.h2-testi-card::before {
  content: "\201C";
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--ff-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(228, 185, 70, 0.18);
  font-style: italic;
}

.h2-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.h2-testi-star {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.h2-testi-star.empty {
  fill: var(--gray-light);
}

.h2-testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-weight: 300;
  margin-bottom: 28px;
  font-family: var(--ff-display);
  font-style: italic;
}

.h2-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
}

.h2-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.h2-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h2-testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.h2-testi-role {
  font-size: 12px;
  color: var(--gray-warm);
  letter-spacing: 0.04em;
}


/* ==============================================================
   CTA — Full-bleed gold band
   ============================================================== */
   .h2-cta-band {
    background: var(--gold);
    padding: 80px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .h2-cta-band::before {
    content: "BOOK";
    position: absolute;
    font-family: var(--ff-display);
    font-size: 220px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
  }

  .h2-cta-band__title {
    font-family: var(--ff-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    color: var(--navy-deep);
    line-height: 1.1;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
  }

  .h2-cta-band__sub {
    font-size: 16px;
    color: rgba(15, 26, 48, 0.65);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    font-weight: 300;
  }

  .h2-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background: var(--navy-deep);
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: background 0.25s, transform 0.25s;
  }

  .h2-btn-cta:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
  }

/* ==============================================================
   ABOUT BAND — Icon row, dark cards
   ============================================================== */
   .h2-about-band {
    background: var(--navy-mid);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .h2-about-item {
    padding: 56px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .h2-about-item:last-child {
    border-right: none;
  }
  .h2-about-item:hover {
    background: rgba(228, 185, 70, 0.05);
  }

/* Decorative corner accent */
.h2-about-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}

.h2-about-item:hover::after {
  height: 100%;
}

.h2-about-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 185, 70, 0.1);
  margin-bottom: 24px;
}

.h2-about-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.h2-about-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.h2-about-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}


/* ==============================================================
   REVEAL ANIMATIONS
   ============================================================== */
   .h2-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .h2-reveal.h2-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .h2-d1 {
    transition-delay: 0.05s;
  }
  .h2-d2 {
    transition-delay: 0.15s;
  }
  .h2-d3 {
    transition-delay: 0.25s;
  }
  .h2-d4 {
    transition-delay: 0.35s;
  }


/* ======================================================================== HOME PAGE 2 CSS END*/
/* ======================================================================== HOME PAGE 4 CSS START*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&amp;family=Jost:wght@300;400;500;600&amp;display=swap");

/* ---- Scoped variables ---- */
.h4-page {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --navy-mid: #243258;
  --sky: #4a7fc1;
  --sky-light: #6a9fd8;
  --gold: #e4b946;
  --gold-light: #e2c46e;
  --cream: #faf8f3;
  --off-white: #f4f1eb;
  --gray-warm: #8a857c;
  --gray-light: #ede9e1;
  --white: #ffffff;
  --ink: #141414;
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body: "Jost", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 8px 48px rgba(26, 39, 68, 0.07);
  --shadow-card: 0 4px 24px rgba(26, 39, 68, 0.06);
}

.h4-page {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
}

/* ==============================================================
   HERO — Full viewport, centered content, parallax-feel image
   with bottom curved crop + floating booking bar
   ============================================================== */
   .h4-hero {
    position: relative;
    height: 87vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--cream);
  }

/* BG image */
.h4-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease);
  transform-origin: center;
}

/* Gradient overlay — light at top, heavier at bottom */
.h4-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 46, 0.18) 0%,
    rgba(10, 20, 46, 0.75) 60%,
    rgba(10, 20, 46, 0.80) 100%
  );
  z-index: 1;
}

/* Bottom curve mask */
/*.h4-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}*/

/* Content */
.h4-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 820px;
}

.h4-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(228, 185, 70, 0.18);
  border: 1px solid rgba(228, 185, 70, 0.4);
  backdrop-filter: blur(6px);
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 28px;
}

.h4-hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: h4pulse 1.8s ease infinite;
}

@keyframes h4pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.h4-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.h4-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.h4-hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.h4-hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.h4-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease),
  box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(228, 185, 70, 0.35);
}

.h4-btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(228, 185, 70, 0.4);
}

.h4-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.h4-btn-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Slider controls */
.h4-hero__nav {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.h4-hero__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.h4-hero__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.h4-hero__arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.h4-hero__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.h4-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.h4-hero__dot.on {
  background: var(--gold);
  transform: scale(1.4);
}

/* Stats floating bar */
.h4-hero__stats {
  position: absolute;
  bottom: 64px;
  right: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 12px 48px rgba(10, 20, 46, 0.14);
}

.h4-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-light);
}

.h4-stat:last-child {
  border-bottom: none;
}

.h4-stat__num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  min-width: 48px;
}

.h4-stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-warm);
}

/* ======================================================================
   H4-ROOMS  —  Fixed Grid Layout
   Clean 2-column equal grid. Replace only the bento + card sizing rules.
   All other card styles (info panel, badge, buttons) stay from h4-rooms-clean.css
   ====================================================================== */

/* ── Section ── */
.h4-rooms {
  background: var(--off-white);
  padding: 40px 0;
}

/* ── Header ── */
.h4-section-head {
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.h4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 14px;
}
.h4-eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--sky);
}

.h4-section-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy-deep);
}
.h4-section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   BENTO GRID  —  strict 2-column
   Row 1: hero card spans both columns
   Rows 2–4: two equal cards per row
   ══════════════════════════════════════════════════════════════════ */
.h4-rooms__bento {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Card 1 — hero, full width */
.h4-room-card:nth-child(1) {
  grid-column: 1 / -1;
}

/* All other cards — one column each, auto-placed */
.h4-room-card:nth-child(n+2) {
  grid-column: span 1;
}

/* ══════════════════════════════════════════════════════════════════
   CARD BASE
   ══════════════════════════════════════════════════════════════════ */
.h4-room-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease),
              transform  0.4s var(--ease),
              border-color 0.3s;
}
.h4-room-card:hover {
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.12),
              0  2px 10px rgba(26, 39, 68, 0.06);
  transform: translateY(-4px);
  border-color: transparent;
}

/* ── IMAGE AREA ── */
.h4-room-card__track {
  display: flex;
  height: 240px;
  transition: transform 0.65s var(--ease);
  flex-shrink: 0;
}
/* Hero card: wider image */
.h4-room-card:nth-child(1) .h4-room-card__track {
  height: 340px;
}

.h4-room-card__slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.h4-room-card__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.h4-room-card:hover .h4-room-card__slide img {
  transform: scale(1.04);
}

/* Overlay hidden — info lives outside image */
.h4-room-card__overlay {
  display: none;
}

/* ── BADGE ── */
.h4-room-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 13px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.12);
}

/* ── SLIDE ARROWS ── */
.h4-room-card__arrow {
  position: absolute;
  top: 120px; /* half of 240px default image height */
  transform: translateY(-50%);
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: opacity 0.22s,
              background 0.2s,
              transform 0.2s var(--ease);
}
.h4-room-card:nth-child(1) .h4-room-card__arrow {
  top: 170px; /* half of 340px hero image */
}
.h4-room-card:hover .h4-room-card__arrow { opacity: 1; }
.h4-room-card__arrow.prev { left: 14px; }
.h4-room-card__arrow.next { right: 14px; }
.h4-room-card__arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.h4-room-card__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

/* ══════════════════════════════════════════════════════════════════
   INFO PANEL  —  white area below the image
   ══════════════════════════════════════════════════════════════════ */
.h4-room-card__info {
  position: static;
  transform: none !important;
  padding: 20px 22px 18px;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Room name */
.h4-room-card__name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 0;
}
.h4-room-card:nth-child(1) .h4-room-card__name {
  font-size: 24px;
}

/* Tags */
.h4-room-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 1;
  transform: none;
}

.h4-room-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-warm);
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 4px 11px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.h4-room-card:hover .h4-room-card__tag {
  border-color: rgba(74, 127, 193, 0.4);
  color: var(--navy);
}
.h4-room-card__tag svg {
  width: 11px;
  height: 11px;
  fill: var(--sky-light);
  flex-shrink: 0;
}

/* Footer: price + buttons */
.h4-room-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}

/* Price */
.h4-room-card__price {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.h4-room-card:nth-child(1) .h4-room-card__price {
  font-size: 28px;
}
.h4-room-card__price span {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--gray-warm);
  font-weight: 400;
}

/* Buttons */
.h4-room-card__btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.h4-btn-card-detail {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1.5px solid var(--gray-light);
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.h4-btn-card-detail:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.h4-btn-card-book {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.h4-btn-card-book:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 14px rgba(228, 185, 70, 0.4);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */




/* ==============================================================
   AMENITIES — Light cream, horizontal icon cards in a soft grid
   ============================================================== */
   .h4-amenities {
    background: var(--cream);
    padding: 40px 0;
    position: relative;
  }


  .h4-amenities__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .h4-amenities__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 72px;
  }

  .h4-amenities__title {
    font-family: var(--ff-display);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--navy-deep);
  }

  .h4-amenities__title em {
    font-style: italic;
    color: var(--gold);
  }

/* Mosaic — horizontal strip of 3 images */
.h4-amenities__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  border-radius: 4px;
  overflow: hidden;
  height: 200px;
}

.h4-amenities__mosaic-cell {
  position: relative;
  overflow: hidden;
}

.h4-amenities__mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.h4-amenities__mosaic-cell:hover img {
  transform: scale(1.06);
}

.h4-amenities__mosaic-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Amenity cards grid */
.h4-amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.h4-amen-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--gray-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}

.h4-amen-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(228, 185, 70, 0.12);
  transform: translateY(-3px);
}

.h4-amen-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.h4-amen-card:hover .h4-amen-card__icon {
  background: rgba(228, 185, 70, 0.15);
}

.h4-amen-card__icon i {
  color: var(--sky);
  transition: fill 0.3s;
}

.h4-amen-card:hover .h4-amen-card__icon i {
  color: var(--gold);
}

.h4-amen-card__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.h4-amen-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-warm);
  font-weight: 300;
}



/* ==============================================================
   TESTIMONIALS — Stacked card with large quote + side accent
   ============================================================== */
   .h4-testimonials {
    background: var(--white);
    padding: 40px 0;
  }

  .h4-testimonials__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .h4-testimonials__layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }

  .h4-testimonials__left {
    position: sticky;
    top: 80px;
  }

/* Large decorative quote */
.h4-testimonials__big-q {
  font-family: var(--ff-display);
  font-size: 160px;
  line-height: 0.8;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 0;
  display: block;
}

.h4-testimonials__title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.15;
}

.h4-testimonials__title em {
  font-style: italic;
  color: var(--gold);
}

/* Right: cards */
.h4-testi-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h4-testi-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 36px 36px 28px;
  border-left: 3px solid var(--gray-light);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.h4-testi-card:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.h4-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.h4-testi-star {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}
.h4-testi-star.empty {
  fill: var(--gray-light);
}

.h4-testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
}

.h4-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.h4-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.h4-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h4-testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.h4-testi-role {
  font-size: 12px;
  color: var(--gray-warm);
  letter-spacing: 0.04em;
  margin-top: 2px;
}


/* ==============================================================
   CTA — Centered with a warm background and decorative border
   ============================================================== */
   .h4-cta {
    background: var(--off-white);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

/* Decorative rings */
.h4-cta::before,
.h4-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(228, 185, 70, 0.15);
  pointer-events: none;
}

.h4-cta::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h4-cta::after {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h4-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.h4-cta__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 18px;
}

.h4-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}

.h4-cta__title em {
  font-style: italic;
  color: var(--gold);
}

.h4-cta__sub {
  font-size: 15px;
  color: var(--gray-warm);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}

.h4-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(15, 26, 48, 0.18);
}

.h4-btn-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15, 26, 48, 0.22);
}

/* ==============================================================
   ABOUT BAND — Light cards on cream, horizontal
   ============================================================== */
   .h4-about-band {
    background: var(--cream);
    border-top: 1px solid var(--gray-light);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .h4-about-item {
    padding: 52px 40px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    border-right: 1px solid var(--gray-light);
    transition: background 0.3s;
  }

  .h4-about-item:last-child {
    border-right: none;
  }
  .h4-about-item:hover {
    background: var(--off-white);
  }

  .h4-about-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(26, 39, 68, 0.07);
    border: 1px solid var(--gray-light);
    transition: background 0.3s, border-color 0.3s;
  }

  .h4-about-item:hover .h4-about-icon {
    background: rgba(228, 185, 70, 0.12);
    border-color: var(--gold);
  }

  .h4-about-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--navy);
    transition: fill 0.3s;
  }

  .h4-about-item:hover .h4-about-icon svg {
    fill: var(--gold);
  }

  .h4-about-title {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }

  .h4-about-text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray-warm);
    font-weight: 300;
  }


/* ==============================================================
   REVEAL ANIMATIONS
   ============================================================== */
   .h4-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  }

  .h4-reveal.h4-in {
    opacity: 1;
    transform: none;
  }
  .h4-d1 {
    transition-delay: 0.04s;
  }
  .h4-d2 {
    transition-delay: 0.12s;
  }
  .h4-d3 {
    transition-delay: 0.2s;
  }
  .h4-d4 {
    transition-delay: 0.28s;
  }
  .h4-d5 {
    transition-delay: 0.36s;
  }
  .h4-d6 {
    transition-delay: 0.44s;
  }


/* ======================================================================== HOME PAGE 4 CSS END*/

/* ======================================================================== Room Listing PAGE 2 CSS START*/

/* ─── Root tokens (scoped to .r2-wrapper) ─── */
.r2-wrapper {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --navy-mid: #243258;
  --sky: #4a7fc1;
  --sky-light: #6a9fd8;
  --gold: #e4b946;
  --gold-light: #e2c46e;
  --cream: #faf8f3;
  --off-white: #f4f1eb;
  --gray-warm: #8a857c;
  --gray-light: #ede9e1;
  --white: #ffffff;
  --ink: #141414;
  --ff-display: "DM Serif Display", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
}

/* ─── Google Fonts import ─── */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&amp;family=DM+Sans:wght@300;400;500;600&amp;display=swap");

/* ─── Reset & utilities ─── */
.r2-wrapper *,
.r2-wrapper *::before,
.r2-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.r2-wrapper img {
  display: block;
  max-width: 100%;
}
.r2-wrapper a {
  text-decoration: none;
}
.r2-wrapper button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO / PAGE BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r2-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.r2-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    160deg,
    rgba(15, 26, 48, 0.92) 35%,
    rgba(15, 26, 48, 0.6) 100%
  );
  z-index: 1;
}
.r2-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Decorative diagonal stripe */
.r2-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}
.r2-hero-inner {
  position: relative;
  z-index: 3;
  padding: 60px 40px 80px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.r2-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.r2-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.r2-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  font-weight: 400;
}
.r2-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION WRAPPER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r2-rooms-section {
  padding: 40px 0;
  background: var(--cream);
}
.r2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FILTER BAR — Horizontal pill strip
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r2-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 60px;
  padding: 14px 24px;
  margin-bottom: 10px;
  box-shadow: 0 2px 16px rgba(26, 39, 68, 0.06);
}
.r2-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}
.r2-filter-label svg {
  width: 16px;
  height: 16px;
  fill: var(--sky);
}
.r2-filter-sep {
  width: 1px;
  height: 22px;
  background: var(--gray-light);
}
.r2-filter-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.r2-filter-select-wrap label {
  font-size: 13px;
  color: var(--gray-warm);
  white-space: nowrap;
}
.r2-price-select {
  appearance: none;
  border: 1px solid var(--gray-light);
  border-radius: 30px;
  padding: 7px 34px 7px 14px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--navy);
  background: var(--off-white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a7fc1' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 8px center / 18px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.r2-price-select:focus {
  outline: 2px solid var(--sky);
  border-color: var(--sky);
}
.r2-room-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--gray-warm);
}
.r2-room-count strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ROOMS GRID — Alternating horizontal layout
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r2-room-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ─── Single Room Row ─── */
.r2-room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(26, 39, 68, 0.07);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.r2-room-row:hover {
  box-shadow: 0 12px 48px rgba(26, 39, 68, 0.14);
  transform: translateY(-4px);
}
/* Odd rows: image left, content right (default) */
/* Even rows: content left, image right */
.r2-room-row.r2-reverse {
  direction: rtl;
}
.r2-room-row.r2-reverse > * {
  direction: ltr;
}

/* ─── Image Side ─── */
.r2-room-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.r2-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s var(--ease);
}
.r2-slider-track > div {
  flex: 0 0 100%;
  height: 100%;
}
.r2-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
/* badge */
.r2-badge-wrap {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
}
.r2-room-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
}
.r2-room-badge.accessible {
  background: var(--sky);
  color: var(--white);
}
.r2-room-badge.suite {
  background: var(--navy);
  color: var(--gold);
}

/* slider arrows */
.r2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.r2-arrow svg {
  width: 18px;
  height: 18px;
  fill: var(--navy);
}
.r2-arrow.r2-prev {
  left: 14px;
}
.r2-arrow.r2-next {
  right: 14px;
}
.r2-room-media:hover .r2-arrow {
  opacity: 1;
}
.r2-arrow:hover {
  background: var(--white);
}

/* dots */
.r2-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.r2-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
  cursor: pointer;
}
.r2-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* image counter chip */
.r2-img-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 26, 48, 0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 4;
}

/* ─── Content Side ─── */
.r2-room-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.r2-room-top {
}
.r2-bed-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.r2-bed-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--sky);
}
.r2-room-title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.r2-room-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-warm);
  margin-bottom: 0;
}

/* ─── Amenities pills ─── */
.r2-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.r2-amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-mid);
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  transition: background 0.2s, border-color 0.2s;
}
.r2-amenity-pill:hover {
  background: var(--gray-light);
  border-color: var(--sky-light);
}
.r2-amenity-pill svg {
  width: 13px;
  height: 13px;
  fill: var(--sky);
  flex-shrink: 0;
}

/* ─── Price & CTAs ─── */
.r2-room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}
.r2-price-block {
}
.r2-price-amount {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.r2-price-unit {
  font-size: 11.5px;
  color: var(--gray-warm);
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.r2-cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Details btn — outlined navy */
.r2-btn-details {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--navy);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  letter-spacing: 0.02em;
}
.r2-btn-details svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.r2-btn-details:hover {
  background: var(--navy);
  color: var(--white);
}

/* Book btn — gold fill */
.r2-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--gold);
  border: 1.5px solid var(--gold);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  letter-spacing: 0.02em;
}
.r2-btn-book svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.r2-btn-book:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 18px rgba(228, 185, 70, 0.35);
}

/* ─── Vertical number accent ─── */
.r2-room-number {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-family: var(--ff-display);
  font-size: 7rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
  z-index: 0;
}
.r2-room-body {
  position: relative;
}

/* ─── No results ─── */
.r2-no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 20px;
  color: var(--gray-warm);
  text-align: center;
  font-size: 15px;
  grid-column: 1/-1;
}
.r2-no-results svg {
  width: 48px;
  height: 48px;
  fill: var(--gray-light);
}
.r2-no-results.visible {
  display: flex;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVEAL ANIMATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r2-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.r2-reveal.r2-d2 {
  transition-delay: 0.1s;
}
.r2-reveal.r2-d3 {
  transition-delay: 0.2s;
}
.r2-reveal.r2-d4 {
  transition-delay: 0.3s;
}
.r2-reveal.r2-visible {
  opacity: 1;
  transform: none;
}



/* ======================================================================== Room Listing PAGE 2 CSS END*/

/* ======================================================================== Room Listing PAGE 3 CSS START*/

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&amp;family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&amp;display=swap");

/* ─── Token scope ─── */
.r3-wrapper {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --navy-mid: #243258;
  --sky: #4a7fc1;
  --sky-light: #6a9fd8;
  --gold: #e4b946;
  --gold-light: #e2c46e;
  --gold-dim: rgba(228, 185, 70, 0.15);
  --cream: #faf8f3;
  --off-white: #f4f1eb;
  --gray-warm: #8a857c;
  --gray-light: #ede9e1;
  --white: #ffffff;
  --ink: #141414;
  --surface: #111d35;
  --surface-2: #172038;
  --border: rgba(255, 255, 255, 0.08);
  --ff-display: "DM Serif Display", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--ff-body);
  background: var(--navy-deep);
  color: var(--white);
}

.r3-wrapper img {
  display: block;
  max-width: 100%;
}
.r3-wrapper a {
  text-decoration: none;
}
.r3-wrapper button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FILTER STRIP — Dark glass bar
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r3-filter-strip {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 18, 40, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.r3-filter-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.r3-filter-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.r3-filter-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.r3-filter-vline {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.r3-filter-select-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.r3-filter-select-group label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.r3-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.06)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e4b946' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 8px center / 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 32px 8px 14px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.r3-select:focus {
  outline: none;
  border-color: var(--gold);
}
.r3-select option {
  background: var(--navy-deep);
  color: var(--white);
}
.r3-count-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.r3-count-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN GRID SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r3-section {
  padding: 80px 0 120px;
  background: var(--navy-deep);
  /* subtle noise texture overlay */
  position: relative;
}

.r3-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAGAZINE GRID  — asymmetric 3-col layout
   Row pattern: [big | stack-2] then [stack-2 | big]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r3-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Cards spanning different columns for magazine feel */
.r3-card:nth-child(1) {
  grid-column: span 7;
}
.r3-card:nth-child(2) {
  grid-column: span 5;
}
.r3-card:nth-child(3) {
  grid-column: span 5;
}
.r3-card:nth-child(4) {
  grid-column: span 7;
}
.r3-card:nth-child(5) {
  grid-column: span 7;
}
.r3-card:nth-child(6) {
  grid-column: span 5;
}
/* fallback for any extras */
.r3-card:nth-child(n + 7) {
  grid-column: span 6;
}

/* ─── Card base ─── */
.r3-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  min-height: 500px;
}
.r3-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(228, 185, 70, 0.2);
}

/* Full-bleed image fills the top portion */
.r3-card-media {
  position: relative;
  overflow: hidden;
  /* taller for span-7, shorter for span-5 */
  height: 300px;
  flex-shrink: 0;
}
.r3-card:nth-child(1) .r3-card-media,
.r3-card:nth-child(4) .r3-card-media,
.r3-card:nth-child(5) .r3-card-media {
  height: 360px;
}

.r3-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.r3-slider-track > div {
  flex: 0 0 100%;
  height: 100%;
}
.r3-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

/* Gradient scrim over image bottom */
.r3-card-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(10, 18, 40, 0.85) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Price tag — overlapping onto image bottom-left */
.r3-price-tag {
  position: absolute;
  bottom: -1px;
  left: 24px;
  z-index: 3;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 18px 14px;
  border-radius: 10px 10px 0 0;
  line-height: 1;
}
.r3-price-tag .r3-pt-amount {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
.r3-price-tag .r3-pt-unit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* Badge */
.r3-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.r3-badge.accessible {
  background: rgba(74, 127, 193, 0.3);
  border-color: var(--sky);
  color: var(--sky-light);
}
.r3-badge.suite {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* Slide arrows */
.r3-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 18, 40, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  border: 1px solid var(--border);
}
.r3-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}
.r3-arrow.r3-prev {
  left: 12px;
}
.r3-arrow.r3-next {
  right: 12px;
}
.r3-card-media:hover .r3-arrow {
  opacity: 1;
}
.r3-arrow:hover {
  background: rgba(228, 185, 70, 0.25);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

/* Dots */
.r3-dots {
  position: absolute;
  bottom: 20px;
  right: 16px;
  display: flex;
  gap: 5px;
  z-index: 4;
}
.r3-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s, width 0.25s var(--ease);
  border: none;
  padding: 0;
  cursor: pointer;
}
.r3-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* ─── Card Body ─── */
.r3-card-body {
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
/* indent content to align with price tag */
.r3-card-body {
  padding-left: 24px;
}

.r3-card-bed {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.r3-card-bed svg {
  width: 12px;
  height: 12px;
  fill: var(--sky-light);
}

.r3-card-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}

.r3-card-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Amenity tags */
.r3-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.r3-amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s, border-color 0.2s;
}
.r3-amenity-tag:hover {
  color: var(--gold-light);
  border-color: var(--gold-dim);
}
.r3-amenity-tag svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  flex-shrink: 0;
}

/* CTA row */
.r3-card-cta {
  display: flex;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.r3-btn-outline {
  flex: 1;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.r3-btn-outline svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.r3-btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.r3-btn-gold {
  flex: 1;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.r3-btn-gold svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.r3-btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(228, 185, 70, 0.3);
  transform: translateY(-1px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION DIVIDER — gold rule with text
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r3-section-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
}
.r3-section-header .r3-sh-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.r3-section-header .r3-sh-rule.r3-right {
  background: linear-gradient(to left, var(--gold), transparent);
}
.r3-section-header .r3-sh-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NO RESULTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r3-no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 15px;
  grid-column: 1 / -1;
}
.r3-no-results svg {
  width: 48px;
  height: 48px;
  fill: rgba(255, 255, 255, 0.12);
}
.r3-no-results.visible {
  display: flex;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVEAL ANIMATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.r3-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.r3-reveal.r3-d2 {
  transition-delay: 0.12s;
}
.r3-reveal.r3-d3 {
  transition-delay: 0.22s;
}
.r3-reveal.r3-d4 {
  transition-delay: 0.32s;
}
.r3-reveal.r3-visible {
  opacity: 1;
  transform: none;
}


/* ======================================================================== Room Listing PAGE 3 CSS END*/


/* ============================================================
   Custom Lightbox Overlay (gallery page)
============================================================ */
#gl-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#gl-overlay.active { display: flex; }
#gl-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 4px; }
#gl-caption { color: #ccc; margin-top: 10px; font-size: 14px; }
#gl-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; line-height:1; }
#gl-prev, #gl-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 22px; padding: 12px 16px; cursor: pointer; border-radius: 4px; }
#gl-prev { left: 16px; }
#gl-next { right: 16px; }
#gl-prev:hover, #gl-next:hover { background: rgba(255,255,255,.3); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .05s; }
.reveal.d2 { transition-delay: .15s; }
.reveal.d3 { transition-delay: .25s; }
.reveal.d4 { transition-delay: .35s; }
.reveal.d5 { transition-delay: .45s; }
.reveal.d6 { transition-delay: .55s; }

.form-group
{
  margin: 10px 0;
}
.testi-av, .room-type-tag
{
  display: none;
}