:root {
  --navy: #0b1324;
  --navy-soft: #111d33;
  --ink: #182033;
  --muted: #667085;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --white: #ffffff;
  --gold: #D31C37;
  --gold-deep: #a98240;
  --line: rgba(24, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(13, 24, 44, 0.14);
  --shadow-soft: 0 16px 40px rgba(13, 24, 44, 0.09);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
  --transition: 300ms cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #f4c97a;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}
.white, .white a { color:#fff;}
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 16px; font-family: "Cormorant Garamond", serif;
  color: #fff; 
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow.dark {
  color: var(--gold-deep);
}
.ct {text-align:center;}
h1,
h2,
h3, h4,
p {
  margin-top: 0; margin-bottom: 0;
}

h1,
h2,
h3, h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

.t2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 3.0rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.t3 {
  font-size: 1.8rem; font-family: "Cormorant Garamond", serif;
}
.t4, .t4 a {
  font-size: 2.8rem; font-family: "Cormorant Garamond", serif; color:#000; padding-bottom:20px;
}
.t6, .t6 a {
  font-size: 1.8rem; font-family: "Cormorant Garamond", serif; color:#000; padding:8px 0;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: #D31C37;
  box-shadow: 0 12px 28px rgba(199, 164, 102, 0.28);
}

.btn-primary:hover {
  background: #00205B;
  box-shadow: 0 18px 36px rgba(199, 164, 102, 0.36);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.58);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(1240px, calc(100% - 32px));
  transform: translateX(-50%);
  transition: top var(--transition), width var(--transition);
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1280px, calc(100% - 20px));
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
  padding: 15px 28px;
  color: var(--white);
  background: rgba(4, 31, 79, 0.57);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(145%);
}

.site-header.is-scrolled .header-shell {
  background: rgba(11, 19, 36, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(145deg, #f5d89d, var(--gold));
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  letter-spacing: 0.07em;
}

.brand img {
    height: 52px;
    width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.header-book {
  min-height: 46px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.menu-toggle span {
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero-slide.is-active img {
  transform: scale(1.12);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 26, 0.83) 0%, rgba(6, 13, 26, 0.55) 44%, rgba(6, 13, 26, 0.18) 75%),
    linear-gradient(0deg, rgba(6, 13, 26, 0.64) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 100svh;
  justify-content: center;
  flex-direction: column;
  padding-top: 550px;
  padding-bottom: 50px;
}

.hero-content h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 7.8vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-contact-card {
  position: absolute;
  right: max(30px, calc((100vw - 1180px) / 2));
  bottom: 40px;
  z-index: 5;
  display: flex;
  width: 285px;
  flex-direction: column;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.hero-contact-card strong {
  margin: 5px 0 2px;
  color: var(--white);
}

.contact-label {
  color: #f0d095;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 2rem;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.06);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 42px;
  left: 50%;
  z-index: 7;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 26px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  transition: width var(--transition), background var(--transition);
}

.slider-dot.is-active {
  width: 46px;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: max(24px, calc((100vw - 1180px) / 2));
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.scroll-line::after {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--gold);
  content: "";
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% { transform: translateX(-30px); }
  100% { transform: translateX(80px); }
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.about-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(199, 164, 102, 0.13), transparent 28%),
    var(--paper);
}

.about-visual {
  position: relative;
  padding: 0 26px 28px 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 190px 190px 26px 26px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.05);
  content: "";
  pointer-events: none;
}

.image-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms ease;
}

.about-visual:hover .image-frame img {
  transform: scale(1.04);
}

.about-visual::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 82%;
  border: 1px solid rgba(169, 130, 64, 0.35);
  border-radius: 190px 190px 26px 26px;
  content: "";
}

.experience-card {
  position: absolute;
  right: -20px;
  bottom: 70px;
  display: flex;
  width: 190px;
  flex-direction: column;
  padding: 23px;
  color: var(--white);
  background: rgba(11, 19, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.experience-number {
  margin-bottom: 3px;
  color: #f0d095;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.section-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.feature-list > div {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(199, 164, 102, 0.13);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.feature-list strong {
  color: var(--ink);
}

.text-link,
.room-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span,
.room-link span {
  transition: transform var(--transition);
}

.text-link:hover span,
.room-link:hover span {
  transform: translateX(5px);
}

.rooms-section {
  background: #f1ece3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

.room-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(24, 32, 51, 0.08);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.room-image {
  position: relative;
  overflow: hidden;
}

.room-image img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.room-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.room-content {
  padding: 28px;
}

.room-kicker {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.t3 {
  margin-bottom: 16px;
  font-size: 2.3rem;
}

.room-content > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.room-features li {
  padding: 7px 10px;
  color: #4f5b70;
  background: rgba(24, 32, 51, 0.05);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.amenities-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 164, 102, 0.23), transparent 24%),
    linear-gradient(135deg, #0b1324, #14233d);
  overflow: hidden;
}

.amenities-section::after {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.02);
  content: "";
}

.amenities-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.amenities-intro h2 {
  margin-bottom: 0;
}

.amenities-intro > p {
  color: rgba(255, 255, 255, 0.66);
}

.amenities-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.amenity-card {
  min-height: 235px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 211, 148, 0.45);
  transform: translateY(-7px);
}

.amenity-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 26px;
  color: #333;
  background: #fff;
  border-radius: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.amenity-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.amenity-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.attractions-section {
  background:
    linear-gradient(rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(199, 164, 102, 0.2), transparent 32%);
}

.attractions-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.attractions-heading-row .section-heading {
  margin-bottom: 0;
}

.attractions-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-bottom: 8px;
}

.attraction-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0 0 4px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(24, 32, 51, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(24, 32, 51, 0.08);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.attraction-arrow:hover {
  color: var(--navy);
  background: linear-gradient(145deg, #f5d89d, var(--gold));
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(199, 164, 102, 0.24);
  transform: translateY(-3px);
}

.attractions-slider {
  width: 100%;
  padding: 8px 2px 20px;
  overflow: hidden;
}

.attractions-layout {
  display: flex;
  gap: 18px;
  transition: transform 550ms cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.attraction-feature {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - 18px) / 2);
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(24, 32, 51, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.attraction-feature:hover {
  border-color: rgba(169, 130, 64, 0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px);
}

.attraction-image {
  position: relative;
  overflow: hidden;
}

.attraction-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 19, 36, 0.16));
  content: "";
  pointer-events: none;
}

.attraction-image img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  transition: transform 700ms ease;
}

.attraction-feature:hover .attraction-image img {
  transform: scale(1.06);
}

.attraction-body {
  display: grid;
  grid-template-columns: auto 1fr;
  flex: 1;
  gap: 24px;
  min-height: 285px;
  padding: 32px 36px 36px;
}

.attraction-number {
  color: rgba(169, 130, 64, 0.38);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.attraction-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.attraction-type {
  margin-bottom: 15px;
  color: var(--gold-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.attraction-content h3 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.attraction-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.attraction-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-contact {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 32, 51, 0.1);
  border-radius: 18px;
}

.faq-contact span {
  color: var(--muted);
  font-size: 0.8rem;
}

.faq-contact a {
  margin-top: 5px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid rgba(24, 32, 51, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(24, 32, 51, 0.16);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(24, 32, 51, 0.22);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  max-width: 680px;
  margin-bottom: 26px;
  padding-right: 54px;
  color: var(--muted);
}

.faq-item p a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.booking-banner {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 12, 25, 0.70), rgba(5, 12, 25, 0.82)),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=2000&q=88") center/cover no-repeat;
  transform: scale(1.03);
}

.booking-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 90px 20px;
  text-align: center;
}

.booking-content h2 {
  margin-bottom: 36px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  text-wrap: balance;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #08101f;
}

.footer-grid {
  display: grid; font-size: 0.9rem;
  grid-template-columns: 1.35fr 0.65fr 0.8fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 60px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 10px;
}

.footer-logo .brand-copy strong {
  color: var(--white);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.t5, .t5 a {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: #f1d293;
}

.footer-column address {
  margin-bottom: 4px; line-height:30px;
  font-style: normal;
}

.footer-cta p {
  font-size: 0.88rem;
}

.footer-cta .btn {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: #ccc;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav,
  .phone-link span:last-child {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    position: fixed;
    top: 92px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    gap: 2px;
    padding: 0 18px;
    background: rgba(11, 19, 36, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    backdrop-filter: blur(20px);
    transition: max-height 450ms ease, opacity var(--transition), transform var(--transition), padding var(--transition);
  }

  .mobile-nav.is-open {
    max-height: 520px;
    padding: 18px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
  }

  .mobile-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav .mobile-book {
    margin-top: 4px;
    color: var(--navy);
    background: linear-gradient(145deg, #f5d89d, var(--gold));
    font-weight: 800;
    text-align: center;
  }

  .hero-contact-card {
    display: none;
  }

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

  .room-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .room-card:last-child .room-image img {
    height: 100%;
  }

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

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .header-book {
    display: none;
  }

  .hero-content {
    padding-top: 145px;
    padding-bottom: 120px;
  }

  .hero-content h1 {
    font-size: clamp(3.3rem, 12vw, 5.5rem);
  }

  .slider-arrow {
    top: auto;
    bottom: 28px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .slider-arrow:hover {
    transform: scale(1.06);
  }

  .slider-prev {
    right: 78px;
    left: auto;
  }

  .slider-next {
    right: 24px;
  }

  .slider-dots,
  .scroll-cue {
    display: none;
  }

  .split-layout,
  .amenities-intro,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 570px;
    margin-inline: auto;
  }

  .section-copy {
    max-width: 650px;
  }

  .experience-card {
    right: 0;
  }

  .amenities-intro {
    gap: 18px;
  }

  .amenities-grid,
  .attractions-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 16px);
  }

  .header-shell {
    min-height: 68px;
    padding: 9px 10px 9px 12px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy small {
    font-size: 0.45rem;
  }

  .phone-link,
  .header-book {
    display: none;
  }

  .mobile-nav {
    top: 78px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.65rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 13, 26, 0.84) 0%, rgba(6, 13, 26, 0.57) 72%, rgba(6, 13, 26, 0.36) 100%),
      linear-gradient(0deg, rgba(6, 13, 26, 0.7), transparent 58%);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .about-visual {
    padding-right: 14px;
  }

  .experience-card {
    bottom: 32px;
    width: 158px;
    padding: 17px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .room-grid,
  .amenities-grid,
  .attractions-layout {
    grid-template-columns: 1fr;
  }

  .room-card:last-child {
    display: block;
    grid-column: auto;
  }

  .room-content {
    padding: 24px;
  }

  .amenity-card {
    min-height: auto;
  }

  .attraction-feature {
    min-height: auto;
    padding: 28px;
  }

  .faq-item summary {
    font-size: 0.92rem;
  }

  .booking-banner {
    min-height: 520px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-actions .btn {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .attractions-heading-row {
    align-items: center;
  }

  .attraction-body {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .attractions-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .attractions-controls {
    align-self: flex-end;
    padding-bottom: 0;
  }

  .attraction-arrow {
    width: 46px;
    height: 46px;
  }

  .attraction-feature {
    flex-basis: 100%;
    padding: 0;
  }

  .attraction-body {
    min-height: auto;
    padding: 25px 24px 28px;
  }

  .attraction-content h3 {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.smo{ width:90%; float:left; padding:10px 0;}
.social-icons {
            display: flex;
            gap: 12px; margin-top:10px;
        }
        .social-icons a {
            text-decoration: none;
            color: white;
            width: 34px;
            height: 34px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }
        .social-icons a.facebook { background-color: #3b5998; }
        .social-icons a.twitter { background-color: #1da1f2; }
        .social-icons a.instagram { background-color: #e4405f; }
        .social-icons a.blog { background-color: #F57C00; }
        .social-icons a.youtube { background-color: #ff0000; }
	
.amenitypg {
      width:40%; float:left; 
      margin: 10px 10px 0 60px;
      padding: 20px; font-family:"Manrope", sans-serif;
      
    }
  
    .amenitypg ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenitypg li {
      font-size: 17px;
      color: #182033; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenitypg li i {
       color: #182033;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenitypg-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenitypg-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #182033; /* Blue checkmark */
  font-size: 17px;
}
.col1 {width:40%; float:left; text-align:left; padding: 20px;  font-size: 17px;  color: #182033; margin-left:30px; font-family:"Manrope", sans-serif; }
.col1 ul li {list-style:circle; line-height:36px;}
.col1 ul li a {color: #333; text-decoration:none; list-style:none;}	
.top { margin-top:6%;}	

.fq{text-align:left; text-decoration: none; color:#031C1A; font-weight:bold;  font-size:21px;  line-height:34px; margin-top:6px; list-style:none; font-family:"Manrope", sans-serif; }
.fqa{font-size:16px; color:#182033; font-weight:normal; line-height:28px; text-align:left; font-family:"Manrope", sans-serif; }
.fqa a{font-size:16px; color:#1A6B9A; text-decoration:none;}

.feature-box { font-family:"Manrope", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;

    margin-bottom: 15px;
}

.feature-box.reverse {
    flex-direction: row-reverse;
}

.img-side img {
    width: 100%;
    max-width: 550px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.text-side {
    max-width: 620px;
}

.text-side-title {
    font-size: 32px; color: #002D72;
    margin-bottom: 10px;
}

.text-side p {
        font-size: 0.98rem; color:#182033;
    margin-bottom: 20px;     line-height: 1.8;
}

.title2, .title2 a {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #002D72;

/* ----- MOBILE RESPONSIVE ----- */

@media (max-width: 768px) {
    .feature-box,
    .feature-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .img-side img {
        height: 250px;
    }
}