:root {
  --ink: #0d0d1a;
  --rose: #e30079;
  --yellow: #ffec00;
  --sand: #e8d5a3;
  --mist: #faf7f0;
  --gold: #e30079;
  --text: rgba(13, 13, 26, 0.92);
  --text-soft: rgba(13, 13, 26, 0.72);
  --text-faint: rgba(13, 13, 26, 0.54);
  --line: rgba(13, 13, 26, 0.1);
  --line-strong: rgba(13, 13, 26, 0.18);
  --surface: rgba(250, 247, 240, 0.96);
  --surface-warm: rgba(232, 213, 163, 0.44);
  --shadow: 0 20px 60px rgba(13, 13, 26, 0.08);
  --shadow-soft: 0 10px 30px rgba(13, 13, 26, 0.06);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --font-elegant: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-soft);
  background: linear-gradient(
    180deg,
    var(--mist) 0%,
    rgba(232, 213, 163, 0.34) 100%
  );
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

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

a {
  color: inherit;
}

main section {
  padding: 2rem 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--yellow));
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(160deg, var(--mist), rgba(232, 213, 163, 0.42));
}

.loader-logo {
  width: min(180px, 44vw);
}

.loader-bar {
  width: 120px;
  height: 5px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(13, 13, 26, 0.08);
}

.loader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--yellow));
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(250%);
  }
}

.site-header {
  position: relative;
  z-index: 1050;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 26, 0.96);
  border-bottom-color: rgba(250, 247, 240, 0.1);
  box-shadow: 0 14px 34px rgba(13, 13, 26, 0.28);
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.navbar-brand img {
  width: 120px;
  height: auto;
}

.navbar-collapse {
  margin-left: auto;
  min-width: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar .nav-link {
  position: relative;
  color: var(--mist) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.72rem 0.9rem !important;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

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

.navbar.scrolled .nav-link {
  color: rgba(250, 247, 240, 0.84) !important;
}

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

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 54%;
}

.nav-cta {
  background: var(--rose) !important;
  color: #faf7f0 !important;
  border-radius: var(--radius-pill) !important;
  padding-inline: 1.4rem !important;
}

.nav-cta::after {
  display: none;
}

.navbar-toggler {
  border: 1px solid var(--line-strong);
  background: rgba(250, 247, 240, 0.98);
  color: var(--ink);
  box-shadow: none !important;
}

.hero {
  padding: 0;
  aspect-ratio: 16 / 9;
  min-height: clamp(460px, 78svh, 920px);
  width: 100%;
  max-height: 100dvh;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  height: 100%;
  min-height: inherit;
  max-height: inherit;
}

.hero .swiper-slide {
  overflow: hidden;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.42);
  border: 1px solid rgba(250, 247, 240, 0.78);
  backdrop-filter: blur(8px);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mist);
}

.hero-swiper .swiper-pagination {
  bottom: 1.4rem !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background: rgba(250, 247, 240, 0.82);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
}

.arrival-strip {
  margin-top: -3.5rem;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.arrival-card {
  background: rgba(250, 247, 240, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.arrival-copy {
  display: grid;
  gap: 0.8rem;
}

.arrival-copy h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.arrival-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.arrival-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.arrival-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.arrival-notes span,
.room-perk,
.amenity-park-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(232, 213, 163, 0.42);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-book-now,
.btn-secondary-soft,
.btn-submit-reservation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.btn-book-now,
.btn-submit-reservation {
  background: var(--rose);
  color: #faf7f0;
  padding: 0.92rem 1.3rem;
  font-weight: 700;
}

.btn-book-now:hover,
.btn-submit-reservation:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-secondary-soft {
  padding: 0.92rem 1.3rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  font-weight: 600;
}

.btn-secondary-soft:hover {
  background: rgba(232, 213, 163, 0.34);
  color: var(--ink);
}

.about-section,
.gallery-section,
.map-section {
  background: transparent;
}

.rooms-section,
.contact-section {
  background: rgba(232, 213, 163, 0.4);
}

.facilities-section,
.gallery-section {
  background: rgba(13, 13, 26, 0.96);
}

.gallery-section .section-label,
.gallery-section .section-title {
  color: var(--mist) !important;
}

#amenities {
  background: rgba(13, 13, 26, 0.04);
}

.facilities-section {
  background: rgba(13, 13, 26, 0.96);
}

footer {
  background: var(--ink);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--font-elegant);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label .line {
  width: 34px;
  height: 1px;
  background: var(--ink);
  opacity: 0.55;
}

.section-title {
  margin: 0.7rem 0 1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-subtitle {
  max-width: 640px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.98rem;
}

.section-subtitle.centre {
  margin: 0 auto;
}

.about-img-col {
  position: relative;
}

.about-img-main {
  padding: 0 20px;
}

.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-accent-card {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  min-width: 170px;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--rose);
  color: var(--mist);
  box-shadow: var(--shadow-soft);
}

.accent-number {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.accent-text {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-body {
  padding-left: 1.7rem;
}

.about-eyebrow {
  margin: 0.55rem 0 0;
  color: var(--rose);
  font-family: var(--font-elegant);
  font-size: 1.25rem;
}

.about-body h3 {
  margin: 0.6rem 0 1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.about-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.about-body p + p {
  margin-top: 0.95rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.about-feature,
.amenity-col,
.reservation-form-card,
.contact-card-info,
.room-card,
.gallery-slide,
.map-wrapper,
.stat-item-new {
  background: rgba(250, 247, 240, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
}

.about-feature i,
.room-perk i,
.stat-icon-new,
.ci-icon,
.amenity-group-title i,
.amenity-park-item i {
  color: var(--rose);
}

.about-feature span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.quote-divider {
  padding: 2rem 1rem 3rem;
  text-align: center;
}

.why {
  background: rgba(13, 13, 26, 0.96);
}

.quote-divider cite {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: normal;
  line-height: 1.28;
}

.quote-attr {
  margin-top: 0.85rem;
  color: var(--mist);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stats-bar {
  padding-bottom: 1rem;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item-new {
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1.7rem 1rem;
}

.stat-number-new {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 1;
}
.stat-icon-new {
  font-size: 2rem;
}

.stat-label-new {
  margin-top: 0.5rem;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-card,
.gallery-slide,
.map-wrapper,
.contact-card-info,
.amenity-col,
.reservation-form-card {
  border-radius: var(--radius-md);
}

.room-card {
  overflow: hidden;
  height: 100%;
}

.room-card-top {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.room-card-top img,
.gallery-slide img,
.facility-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-swiper,
.gallery-swiper .swiper-wrapper,
.gallery-swiper .swiper-slide,
.form-row-2 > * {
  min-width: 0;
}

.room-card:hover img,
.gallery-slide:hover img,
.facility-tile:hover img {
  transform: scale(1.05);
}

.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 236, 0, 0.86);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-body {
  padding: 1.7rem;
}

.room-eyebrow {
  color: var(--text-faint);
  font-family: var(--font-elegant);
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-body h4 {
  margin: 0.4rem 0 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.room-desc {
  color: var(--text-soft);
  line-height: 1.72;
}

.room-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 1.4rem;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.room-capacity {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.room-total-count {
  margin-top: 2rem;
  text-align: center;
  color: var(--text);
  font-size: 0.98rem;
}

.facility-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 1rem;
}

.facility-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.facility-tile:first-child {
  grid-row: span 2;
}

.facility-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 75%;
  background: linear-gradient(180deg, transparent, rgba(13, 13, 26, 0.8));
  pointer-events: none;
}

.facility-tile-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.2rem;
  color: var(--mist);
}

.facility-tile-overlay h5 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.16rem;
}

.facility-tile-overlay p {
  margin: 0;
  color: rgba(250, 247, 240, 0.84);
  font-size: 0.88rem;
}

.facilities-section .section-label,
.facilities-section .section-title,
.facilities-section .section-subtitle {
  color: rgba(250, 247, 240, 0.92);
}

.facilities-section .section-label .line {
  background: rgba(250, 247, 240, 0.75);
}

.amenity-col {
  height: 100%;
  padding: 1.7rem;
}

.amenity-group-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 0;
  color: var(--text-soft);
}

.amenity-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.amenity-park-wrap {
  margin-top: 2rem;
}

.amenity-park {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.gallery-slide {
  aspect-ratio: 1.2/1;
  overflow: hidden;
}

.gallery-swiper .swiper-pagination-bullet {
  background: rgba(13, 13, 26, 0.18);
  opacity: 1;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--rose);
}

.reservation-form-card {
  padding: 1.85rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group label sup {
  color: var(--yellow);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.88rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(232, 213, 163, 0.18);
  color: var(--text);
  font: inherit;
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
  background: rgba(250, 247, 240, 0.98);
  box-shadow: 0 0 0 3px rgba(227, 0, 121, 0.06);
}

.btn-submit-reservation {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-stack {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 20px;
}

.contact-card-info {
  position: relative;
  padding: 1.3rem;
  text-decoration: none;
}

.ci-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 213, 163, 0.4);
  font-size: 1.08rem;
}

.contact-card-info h6 {
  margin: 0.85rem 0 0.35rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.06rem;
}

.contact-card-info p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.contact-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--rose);
}

.map-section-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.map-wrapper {
  height: 420px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  padding: 0;
  border-top: 1px solid var(--line);
}

footer h5 {
  margin-bottom: 1rem;
  color: #faf7f0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

footer p,
footer li,
footer a,
footer address {
  color: rgba(250, 247, 240, 0.78);
  text-decoration: none;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

footer a:hover {
  color: var(--yellow);
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(250, 247, 240, 0.12);
  text-align: center;
  color: rgba(250, 247, 240, 0.56);
}

#backToTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--rose);
  color: var(--mist);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--yellow);
  color: var(--rose);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.stagger-children .reveal,
.stagger-children > [class*="reveal"] {
  transition-delay: calc(var(--delay, 0) * 0.08s);
}

.no-swiper .hero .swiper-button-next,
.no-swiper .hero .swiper-button-prev,
.no-swiper .hero .swiper-pagination,
.no-swiper .gallery-swiper .swiper-pagination {
  display: none !important;
}

.no-swiper .hero .swiper-wrapper {
  display: block;
  height: 100%;
}

.no-swiper .hero .swiper-slide:not(:first-child) {
  display: none;
}

.no-swiper .gallery-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

address {
  font-style: normal;
}

.parallax-img {
  will-change: transform;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.8rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(13, 13, 26, 0.98);
    border: 1px solid rgba(250, 247, 240, 0.1);
    box-shadow: 0 18px 36px rgba(13, 13, 26, 0.28);
  }

  .navbar-nav {
    align-items: flex-start;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    width: 100%;
    overflow: hidden;
  }

  .navbar-collapse .nav-link {
    color: rgba(250, 247, 240, 0.84) !important;
  }

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

  .hero,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    min-height: 72svh;
    max-height: 78svh;
  }

  .arrival-strip {
    margin-top: -2rem;
  }

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

  .about-body {
    padding-left: 0;
  }

  .about-accent-card {
    right: 1rem;
  }

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

  .facility-tile:first-child {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}

@media (max-width: 767.98px) {
  main section {
    padding: 3rem 0;
  }

  .container,
  .container-fluid {
    padding-inline: 1rem;
  }

  .hero,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    min-height: 62svh;
    max-height: 68svh;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }

  .arrival-card,
  .reservation-form-card,
  .amenity-col,
  .contact-card-info,
  .room-body {
    padding: 1.35rem;
  }

  .about-features-grid,
  .stats-bar-inner,
  .facility-mosaic,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .about-img-main img {
    height: 360px;
  }

  .about-img-col {
    padding-inline: 0.2rem;
  }

  .about-accent-card {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 0;
    max-width: calc(100% - 1.5rem);
  }

  .room-card-top {
    height: 240px;
  }

  .room-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-book-now,
  .btn-secondary-soft {
    width: 100%;
  }

  .gallery-slide,
  .gallery-swiper .swiper-slide {
    height: 240px;
  }

  .gallery-section,
  .facilities-section,
  .map-section,
  footer {
    overflow-x: clip;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }
  .contact-info-stack {
    flex-direction: column;
  }
  .map-wrapper {
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .hero,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    min-height: 56dvh;
    max-height: 62dvh;
  }

  .hero-swiper .swiper-pagination {
    bottom: 0.8rem !important;
  }

  .arrival-strip {
    margin-top: -1.2rem;
  }

  .arrival-copy h1 {
    font-size: 1.95rem;
  }

  .quote-divider cite {
    font-size: 1.5rem;
  }

  .navbar-brand img {
    width: 102px;
  }

  .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .about-img-main img {
    height: 280px;
  }

  .about-accent-card {
    display: none;
  }
}

.float-book-now {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--rose);
  color: var(--mist);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.float-book-now:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .float-book-now {
    right: 0.75rem;
    bottom: 4.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
  }

  #backToTop {
    width: 42px;
    height: 42px;
  }
}
