body.hotel-page {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f6f2ea;
  color: #111;
}

img {
  width: 100%;
  display: block;
}

/* HERO */
.hotel-hero img {
  height: 90vh;
  object-fit: cover;
}

/* INTRO */
.hotel-intro {
  max-width: 760px;
  margin: 120px auto;
  text-align: center;
  padding: 0 24px;
}

.hotel-location {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #777;
}

.hotel-intro h1 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  margin: 16px 0 28px;
}

.hotel-tagline {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.hotel-description {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* IMAGE STRIP */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 80px 140px;
}

.hotel-gallery img {
  height: 260px;
  object-fit: cover;
}

/* FEATURE IMAGE */
.hotel-feature img {
  height: 75vh;
  object-fit: cover;
  margin-bottom: 140px;
}

/* CONTENT */
.hotel-content {
  max-width: 720px;
  margin: 0 auto 160px;
  text-align: center;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #777;
}

.hotel-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  margin: 18px 0 28px;
}

.hotel-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* EDITORIAL GRID */
.hotel-editorial {
  max-width: 1400px;
  margin: 0 auto 180px;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.editorial-item img {
  height: 260px;
  object-fit: cover;
  margin-bottom: 18px;
}

.editorial-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.editorial-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* GETTING HERE */
.hotel-location-info {
  max-width: 760px;
  margin: 0 auto 180px;
  text-align: center;
  padding: 0 24px;
}

.hotel-location-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
}

.map-placeholder {
  height: 260px;
  background: #e5e5e5;
  margin-top: 40px;
}

/* NEARBY */
.nearby-hotels {
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 80px;
}

.nearby-hotels h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.nearby-item img {
  height: 260px;
  object-fit: cover;
}

.nearby-item span {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hotel-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotel-editorial {
    grid-template-columns: 1fr;
  }

  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .hotel-feature img {
    height: 60vh;
  }
}

@media (max-width: 640px) {
  .hotel-hero img {
    height: 70vh;
  }

  .hotel-gallery {
    grid-template-columns: 1fr;
    padding: 0 24px 100px;
  }

  .hotel-editorial,
  .nearby-hotels {
    padding: 0 24px;
  }

  .hotel-intro h1 {
    font-size: 36px;
  }
}

/* -----------------------------------------
   HERO IMAGE (CONSTRAINED LIKE AMAN)
----------------------------------------- */
.hotel-hero {
  background: var(--aman-bg);
  padding: 80px 0 0;
}

.hotel-hero img {
  max-width: 1400px;
  margin: 0 auto;
  height: 70vh;
  object-fit: cover;
}
.hotel-intro {
  max-width: 720px;
  margin: 90px auto 120px;
  text-align: center;
  padding: 0 24px;
}

/* ===============================
   AMAN STYLE SUB NAV
================================ */

.hotel-subnav {
  background: #f6f1e9; /* Aman paper tone */
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ======================================
   AMAN SUB NAV – FINAL & CLEAN
====================================== */

.hotel-subnav {
  background: #f6f1e9;
  border-top: 1px solid rgba(0,0,0,0.18);   /* TOP LINE */
  border-bottom: 1px solid rgba(0,0,0,0.18);/* BOTTOM LINE */
}

.subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT BREADCRUMB */
.subnav-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1c1c1c;
}

.breadcrumb-separator {
  font-size: 14px;
  opacity: 0.6;
  position: relative;
  top: -1px;
}

/* NAV LINKS */
.subnav-links {
  display: flex;
  gap: 28px;
}

.subnav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1c1c1c;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

/* SINGLE UNDERLINE (AMAN STYLE) */
.subnav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #1c1c1c;
  transition: width 0.35s ease;
}

.subnav-links a:hover::after {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .subnav-inner {
    flex-direction: column;
    gap: 14px;
  }

  .subnav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ======================================
   HIDE SUB NAV ON MOBILE
====================================== */
@media (max-width: 900px) {
  .hotel-subnav {
    display: none;
  }
}
/* ======================================
   STICKY SUB NAV (DESKTOP)
====================================== */
.hotel-subnav {
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* Active section underline */
.subnav-links a.active::after {
  width: 100%;
}
/* =========================================
   AMAN HORIZONTAL GALLERY
========================================= */

.aman-gallery-wrap {
  padding: 120px 0 80px;
  background: #f6f2ea;
}

/* Scroll container */
.aman-gallery {
  display: flex;
  gap: 80px;
  overflow-x: auto;
  padding: 0 80px 40px;
  scroll-behavior: smooth;

  scrollbar-width: none; /* Firefox */
}

.aman-gallery::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* Base image styles */
.aman-gallery figure {
  flex: 0 0 auto;
  margin: 0;
}

.aman-gallery img {
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Aspect ratios (AMAN STYLE) */
.img-vertical img {
  width: 320px;
}

.img-square img {
  width: 420px;
}

.img-horizontal img {
  width: 620px;
}

/* Progress bar */
.gallery-progress {
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.2);
  margin: 0 auto;
  position: relative;
}

.gallery-progress-bar {
  height: 1px;
  width: 0%;
  background: #111;
  display: block;
  transition: width 0.2s linear;
}

/* Desktop only */
@media (max-width: 900px) {
  .aman-gallery-wrap {
    display: none;
  }
}
/* =========================================
   AMAN EDITORIAL GALLERY (LOCKED)
========================================= */

.aman-gallery-section {
  background: #f6f2ea;
  padding: 140px 0 100px;
}

/* BASE ITEM */
.gallery-item {
  flex: 0 0 auto;
  background: transparent;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SHAPES (AMAN ACCURATE) */
.gallery-item.vertical {
  width: 320px;
  height: 460px;
}

.gallery-item.square {
  width: 420px;
  height: 420px;
}

.gallery-item.horizontal {
  width: 620px;
  height: 360px;
}

/* SLIDER */
.aman-gallery-slider {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.slider-track {
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.25);
  position: relative;
}

.slider-handle {
  position: absolute;
  top: -4px;
  left: 0;
  width: 18px;
  height: 9px;
  background: #111;
  cursor: pointer;
}
/* =========================================
   AMAN MINIMAL SLIDER
========================================= */

.aman-gallery-slider {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.slider-track {
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.18);
  position: relative;
  cursor: pointer;
}

/* moving indicator */
.slider-indicator {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 42px;              /* THIS is the Aman magic */
  height: 2px;
  background: #111;
  transition: left 0.12s linear;
}
/* =========================================
   AMAN INTERACTIVE SLIDER
========================================= */

.aman-gallery-slider {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.slider-track {
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.18);
  position: relative;
  cursor: pointer;
}

/* Light hover overlay */
.slider-hover {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider-track:hover .slider-hover {
  opacity: 1;
}

/* Moving dark indicator */
.slider-indicator {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 42px;
  height: 2px;
  background: #111;
  transition: left 0.15s linear;
}
/* =========================================
   AMAN INTERACTIVE SLIDER
========================================= */

.aman-gallery-slider {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.slider-track {
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.18);
  position: relative;
  cursor: pointer;
}

/* Light hover overlay */
.slider-hover {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider-track:hover .slider-hover {
  opacity: 1;
}

/* Moving dark indicator */
.slider-indicator {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 42px;
  height: 2px;
  background: #111;
  transition: left 0.15s linear;
}
/* =========================================
   AMAN INTERACTIVE SLIDER
========================================= */

.aman-gallery-slider {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.slider-track {
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.18);
  position: relative;
  cursor: pointer;
}

/* Light hover overlay */
.slider-hover {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider-track:hover .slider-hover {
  opacity: 1;
}

/* Moving dark indicator */
.slider-indicator {
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 42px;
  height: 2px;
  background: #111;
  transition: left 0.15s linear;
}
/* ===============================
   AMAN STYLE GALLERY SLIDER
================================ */

/* Desktop only */
@media (max-width: 768px) {
  .aman-slider-wrapper {
    display: none;
  }
}

.aman-slider-wrapper {
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
}

/* MAIN LINE */
.aman-slider-track {
  position: relative;
  width: 280px;
  height: 1px;
  background: rgba(0, 0, 0, 0.25); /* 👈 BASE LINE (VISIBLE) */
  display: flex;
  cursor: pointer;
}

/* SEGMENTS */
.aman-segment {
  flex: 1;
  height: 3px;
  background: transparent;
  position: relative;
}

/* hover reveal (Aman feel) */
.aman-slider-track:hover .aman-segment {
  background: rgba(0, 0, 0, 0.08);
}

.aman-segment:hover {
  background: rgba(0, 0, 0, 0.14);
}

/* ACTIVE INDICATOR */
.aman-indicator {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 3px;
  background: #111;
  pointer-events: none;
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.aman-gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.aman-gallery-track {
  display: flex;
  gap: 80px;
  will-change: transform;
}
/* =========================================
   AMAN LOOPED SEGMENTED SLIDER
========================================= */

.aman-slider-wrapper {
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
}

/* BASE LINE */
.aman-slider-track {
  width: 280px;
  height: 1px;
  background: rgba(0,0,0,0.22);
  display: flex;
  position: relative;
  cursor: pointer;
}

/* MAIN SEGMENT */
.aman-segment {
  flex: 1;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* SUB SEGMENTS */
.aman-segment i {
  flex: 1;
  height: 3px;
  background: rgba(0,0,0,0.08);
}

/* SHOW STRUCTURE ON HOVER */
.aman-slider-track:hover .aman-segment {
  opacity: 1;
}

.aman-segment:hover i {
  background: rgba(0,0,0,0.14);
}

/* INDICATOR */
.aman-indicator {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 3px;
  background: #111;
  pointer-events: none;
  transition: left 0.28s cubic-bezier(0.4,0,0.2,1);
}
/* =========================================
   AMAN EDGE CONTINUITY EFFECT
========================================= */

.aman-gallery-viewport {
  overflow: hidden;
  padding-left: 140px;
  padding-right: 140px;
}

/* allow peeking images */
.aman-gallery-track {
  margin-left: -140px;
  margin-right: -140px;
}
/* =========================================
   FEATURE IMAGE (AMAN CONSTRAINED)
========================================= */

.hotel-feature {
  background: var(--aman-bg, #f6f1e9);
  padding: 0 0 160px;
}

.hotel-feature img {
  max-width: 1400px;
  margin: 0 auto;
  height: 70vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hotel-feature img {
    height: 55vh;
  }
}
html, body {
  overflow-x: hidden;
}
/* =========================================
   AMAN GALLERY – NO HORIZONTAL SCROLL
========================================= */

.aman-gallery-section {
  overflow: hidden;
}

.aman-gallery-viewport {
  overflow: hidden;
}

.aman-gallery-track {
  display: flex;
  gap: 80px;
  padding: 0 140px;
  box-sizing: border-box;
}
body {
  max-width: 100vw;
}
/* =========================================
   AMAN GALLERY – MOBILE BEHAVIOUR
========================================= */

@media (max-width: 768px) {

  /* Hide slider on mobile */
  .aman-slider-wrapper {
    display: none;
  }

  /* Mobile swipe gallery */
  .aman-gallery-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .aman-gallery-track {
    padding: 0 24px;
    gap: 24px;
  }

  .gallery-item {
    scroll-snap-align: center;
    flex: 0 0 auto;
  }

  /* Image sizes simplified */
  .gallery-item.vertical {
    width: 70vw;
    height: 80vw;
  }

  .gallery-item.square {
    width: 70vw;
    height: 70vw;
  }

  .gallery-item.horizontal {
    width: 80vw;
    height: 55vw;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .hotel-subnav {
    display: none;
  }
}
@media (max-width: 768px) {
  .hotel-subnav {
    display: none;
  }
}
@media (max-width: 768px) {

  .aman-gallery-viewport::before,
  .aman-gallery-viewport::after {
    width: 60px;
  }

}
/* ===============================
   AMAN MAP STYLE
================================ */
.aman-map-wrapper {
  max-width: 1200px;
  margin: 0 auto 160px;
  padding: 0 24px;
}

#amanMap {
  height: 420px;
  border-radius: 2px;
  background: #eee;
  margin-bottom: 40px;
}

/* Remove Leaflet default look */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: none !important;
}

.leaflet-control-zoom a {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  border-radius: 2px !important;
}

.leaflet-container {
  font-family: "Inter", sans-serif;
}

/* Info row */
.aman-map-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  font-size: 13px;
  line-height: 1.7;
  color: #444;
}

.aman-map-info strong {
  font-weight: 500;
  color: #111;
}

.aman-directions {
  align-self: start;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  border-bottom: 1px solid #111;
  width: fit-content;
}

/* Mobile */
@media (max-width: 900px) {
  .aman-map-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #amanMap {
    height: 300px;
  }
}
/* Aman-style map label */
.aman-map-label {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #1c1c1c;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  padding: 0;
}
/* ======================================
   AMAN NEARBY RESORTS
====================================== */

.aman-nearby-resorts {
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 80px;
  text-align: center;
}

.aman-nearby-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 80px;
}

/* GRID */
.aman-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: start;
}

/* ITEM */
.nearby-resort {
  text-decoration: none;
  color: inherit;
  display: block;
}

.nearby-resort img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 24px;
}

/* TEXT */
.resort-location {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}

.resort-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
}

/* ACTIVE */
.nearby-resort.active img {
  opacity: 1;
}

/* INACTIVE (AMAN FADE) */
.nearby-resort.inactive {
  pointer-events: none;
}

.nearby-resort.inactive img {
  opacity: 0.35;
}

.nearby-resort.inactive .resort-location,
.nearby-resort.inactive .resort-name {
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .aman-nearby-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .aman-nearby-resorts {
    padding: 0 24px;
    margin-bottom: 140px;
  }
}
/* ======================================
   AMAN NEARBY RESORTS
====================================== */

.aman-nearby-resorts {
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 80px;
  text-align: center;
  overflow: hidden; /* kills horizontal bar */
}

.aman-nearby-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 80px;
}

/* TRACK */
.aman-nearby-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* ITEM */
.nearby-resort {
  text-decoration: none;
  color: inherit;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.nearby-resort img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 24px;
}

/* TEXT */
.resort-location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
  display: block;
}

.resort-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
}

/* FADED STATE */
.nearby-resort.is-muted {
  pointer-events: none;
}

.nearby-resort.is-muted img {
  opacity: 0.35;
}

.nearby-resort.is-muted .resort-location,
.nearby-resort.is-muted .resort-name {
  opacity: 0.4;
}

/* REVEALED */
.nearby-resort.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   MOBILE – HORIZONTAL SCROLL (AMAN)
====================================== */
@media (max-width: 1024px) {

  .aman-nearby-resorts {
    padding: 0 24px;
  }

  .aman-nearby-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .nearby-resort {
    min-width: 75%;
    scroll-snap-align: center;
  }

  .aman-nearby-track::-webkit-scrollbar {
    display: none;
  }
}
/* ======================================
   NEARBY RESORTS – AMAN SLIDER
====================================== */

.aman-nearby-resorts {
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 80px;
  text-align: center;
  overflow: hidden;
}

.aman-nearby-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 80px;
}

/* VIEWPORT */
.nearby-viewport {
  overflow: hidden;
}

/* TRACK */
.nearby-track {
  display: flex;
  gap: 80px;
  transition: transform 0.8s ease;
}

/* ITEM */
.nearby-item {
  min-width: 420px;
  text-decoration: none;
  color: inherit;
}

.nearby-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 24px;
}

.resort-location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.resort-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
}

/* MUTED */
.nearby-item.is-muted {
  pointer-events: none;
  opacity: 0.4;
}

/* ======================================
   SLIDER
====================================== */

.nearby-slider {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.slider-track {
  position: relative;
  width: 260px;
  height: 1px;
  background: rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.slider-segment {
  width: 40px;
  height: 1px;
  background: transparent;
  position: relative;
}

.slider-segment::after {
  content: "";
  position: absolute;
  inset: -6px;
}

.slider-segment:hover {
  background: rgba(0,0,0,0.4);
}

/* INDICATOR */
.slider-indicator {
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #111;
  transition: left 0.6s ease;
}

/* ======================================
   MOBILE
====================================== */
@media (max-width: 1024px) {

  .aman-nearby-resorts {
    padding: 0 24px;
  }

  .nearby-track {
    gap: 40px;
  }

  .nearby-item {
    min-width: 80%;
  }
}
/* ======================================
   NEARBY RESORTS – AMAN SIMPLE
====================================== */

.aman-nearby-resorts {
  max-width: 1400px;
  margin: 0 auto 200px;
  padding: 0 80px;
  text-align: center;
}

.aman-nearby-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 80px;
}

.nearby-viewport {
  overflow: hidden;
}

.nearby-track {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.nearby-item {
  max-width: 420px;
  text-decoration: none;
  color: inherit;
}

.nearby-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 24px;
  transition: transform 0.6s ease;
}

.nearby-item:hover img {
  transform: scale(1.02);
}

.resort-location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.resort-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
}

/* MOBILE */
@media (max-width: 1024px) {
  .aman-nearby-resorts {
    padding: 0 24px;
  }

  .nearby-track {
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .nearby-item {
    min-width: 80%;
    scroll-snap-align: center;
  }
}
/* ======================================
   AMAN-STYLE STACKED STICKY SUBNAV
====================================== */

.hotel-subnav {
  position: sticky;
  top: 76px; /* 👈 SAME AS HEADER HEIGHT */
  z-index: 1100;

  background: #f6f1e9;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.hotel-hero {
  margin-top: 0;
  padding-top: 0;
}

