/* ------------------------------ */
/* Design tokens / Base variables */
/* ------------------------------ */
:root {
  --bg-ivory: #fffaf4;
  --dreamtel-02: #ece0c8;
  --accent-sage: #d5d6b6;
  --dreamtel-04: #301e1e;
  --dreamtel-beige: #eae9d1;
  --dreamtel-dark: #1a1a1a;
  --dreamtel-text: #5e5e4e;
  --dreamtel-brown: #6f625a;
  --color-card-bg: #f0f1e8;
  --color-gold: #c5a059;
  --color-badge-bg: #edefd7;
  --color-white: #ffffff;
  --color-dark-gray: #444444;
}

.bg-brown {
  background-color: var(--dreamtel-brown);
  color: var(--color-white);
  --section-title-color: var(--color-white);
  --section-title-line-color: rgba(255, 255, 255, 0.25);
}

.bg-brown .section-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.bg-brown .section-title,
.bg-brown p,
.bg-brown li,
.bg-brown strong {
  color: var(--color-white);
}

.bg-brown p,
.bg-brown li {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

/* Hours layout: first time inline with label, following lines indented */
.hours {
  display: block;
}
.hours .hours-label {
  display: inline-block;
  width: 45px; /* controls indent of following lines */
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  color: inherit;
}
.hours .hours-first {
  display: inline;
  font-style: italic;
}
.hours .hours-indent {
  margin-left: 45px;
}
.hours .hours-indent p {
  margin: 0 0 0.25rem 0;
}

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

.gradient-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    179.65deg,
    rgba(48, 30, 30, 0) 29.23%,
    rgba(0, 0, 0, 0.5) 67.34%
  );
  pointer-events: none;
  z-index: 1;
}

/* Darker variant for specific instances where a stronger overlay is desired */
.gradient-image--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 1;
}

/* Reusable flip-card back variant for spa/activity cards */
.flip-card__back--spa {
  background-image: url("../assets/images/花瓣素材_按摩石和spa合成蜡烛_139166421 1.jpg");
  background-size: cover;
  background-position: center;
}

.flip-card-back__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.flip-card-back__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.flip-card-back__grid-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0.25rem;
  color: var(--color-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.flip-card-back__grid-title::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--color-white);
  width: 100%;
  margin-top: 0.4rem;
}

.flip-card-back__grid ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
  margin-top: 0.6rem;
}

.flip-card-back__grid li {
  font-family: "Philosopher", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* Ensure section title on spa/activity back is white for contrast */
.flip-card__back--spa .section-title {
  font-size: 24px;
  color: var(--color-white);
}

.gradient-image__caption {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-white);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Ensure caption doesn't remain visible when the front face is flipped away */
.gradient-image__caption {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gradient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flip-card typography: use Philosopher for flip-card content across site */
.flip-card__face {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  color: inherit;
}

/* Keep headings/captions on flip fronts using Mulish */
.flip-card__face .section-title,
.flip-card__face .gradient-image__caption {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--color-white);
  color: var(--dreamtel-04);
  overflow-x: hidden;
}

/* ------------------------------ */
/* Header styles */
/* ------------------------------ */
/* Apply brand typography to header nav links (scoped) */
.header-nav-group .nav-link {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

/* Logo swap: keep both images loaded and toggle visibility via header.scrolled */
.header-logo__scrolled {
  display: none;
}

header.scrolled .header-logo__default {
  display: none;
}

header.scrolled .header-logo__scrolled {
  display: inline;
}

/* ------------------------------ */
/* Hero section styles */
/* ------------------------------ */
.hero-slide .section-title {
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 1%;
}

.kota-page .hero-slide .section-title,
.jakarta-page .hero-slide .section-title,
.london-page .hero-slide .section-title,
.sabandar-page .hero-slide .section-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}

.hero-slide .section-subtitle span {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  letter-spacing: 1%;
}

#heroCarousel .hero-slide .btn {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ------------------------------ */
/* Hero CTA styles */
/* ------------------------------ */
.hero-cta {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--color-white);
  background: transparent;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

#heroCarousel {
  position: relative;
  overflow: hidden;
}

.hero-cta .book-now-cta__icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* ------------------------------ */
/* Hero underline */
/* ------------------------------ */
.hero-line {
  width: 9.375rem;
  height: 1px;
  background: var(--color-white);
  opacity: 0.85;
  border-bottom: none !important;
}

.hero-line--invisible {
  width: 9.375rem;
  height: 1px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

/* ------------------------------ */

/* Collection scroll: show ~3.5 items on large screens */
@media (min-width: 992px) {
  .collection-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Make each card ~1/3.5 of the container so ~3.5 are visible */
  .collection-scroll > .col-12.col-md-6.col-lg-4 {
    flex: 0 0 calc(100% / 3.5);
    max-width: calc(100% / 3.5);
  }

  /* Keep a sensible min width so very large screens don't make cards tiny */
  .collection-scroll > .col-12.col-md-6.col-lg-4 .flip-card {
    min-width: 220px;
  }

  /* preserve snap alignment for children flagged as starts */
  .collection-scroll .scroll-snap-start {
    scroll-snap-align: start;
  }
}

/* Small tweak for medium screens: show two items as before */
@media (min-width: 768px) and (max-width: 991px) {
  .collection-scroll > .col-12.col-md-6.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Promise section */
/* ------------------------------ */
.promise-section {
  background: var(--bg-ivory);
  color: var(--dreamtel-04);
}

.promise-section .section-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  /* default section title color (can be overridden via CSS variables) */
  color: var(--section-title-color, var(--dreamtel-brown));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  width: calc(100% + 8rem);
  margin-right: -8rem;
}

.promise-section .section-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--section-title-line-color, var(--dreamtel-brown));
  opacity: 0.25;
}

.promise-section .promise-content p {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--dreamtel-brown);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.promise-section .btn-book {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--dreamtel-dark);
  border: 1px solid var(--dreamtel-dark);
  border-radius: 999px;
  padding: 0.9rem 2.25rem;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 220ms ease;
}

.promise-section .btn-book:hover,
.promise-section .btn-book:focus-visible {
  background: var(--dreamtel-dark);
  color: var(--color-white);
}

.promise-section .btn-book svg {
  transition: transform 220ms ease;
}

.promise-section .btn-book:hover svg,
.promise-section .btn-book:focus-visible svg {
  transform: translateX(5px);
}

.image-collage {
  position: relative;
  max-width: 100%;
}

.collage-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.img-1 {
  width: 72%;
  margin-left: 15%;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.img-2 {
  width: 100%;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.img-3 {
  width: 62%;
  margin-left: 22%;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .promise-section {
    padding: 4rem 0;
  }

  .promise-section .section-title {
    justify-content: center;
    width: 100%;
  }

  .promise-section .section-title::after {
    display: none;
  }

  .promise-section .promise-content,
  .image-collage {
    text-align: center;
  }

  .promise-section .promise-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .collage-img {
    position: static;
    width: 100%;
    margin: 0 0 1.5rem;
  }
}

@media (max-width: 767.98px) {
  /* Image collage: featured top + two thumbnails side-by-side */
  .image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
    text-align: left;
  }

  .collage-img {
    margin: 0;
    object-fit: cover;
    min-height: 140px;
    height: 140px;
  }

  .img-1 {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 210px;
    height: 210px;
  }

  .img-2 {
    grid-column: 1;
    width: 100%;
  }

  .img-3 {
    grid-column: 2;
    width: 100%;
    margin-left: 0;
  }

  /* Left-align content for editorial feel */
  .promise-section .promise-content,
  .promise-section .image-collage {
    text-align: left;
  }

  .promise-section .section-title {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }

  /* Short gold accent line beside the title */
  .promise-section .section-title::before {
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 2px;
    background: var(--dreamtel-brown);
    flex-shrink: 0;
  }

  .promise-section .promise-content p {
    margin-left: 0;
    margin-right: 0;
    line-height: 1.75;
  }

  /* Full-width tappable CTA with gold border */
  .promise-section .btn-book,
  #bookDirect {
    width: 100%;
    justify-content: center;
    border-color: var(--dreamtel-brown);
    color: var(--dreamtel-dark);
  }

  .promise-section {
    padding: 3rem 0;
  }
}

/* ------------------------------ */
/* Book direct CTA section */
/* ------------------------------ */
.section-decorated {
  color: var(--dreamtel-brown);
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.section-decorated .section-title:before {
  background: var(--dreamtel-brown);
}

.section-decorated__line {
  width: 100%;
  height: 1px;
  background: var(--dreamtel-brown);
}

.section-decorated__line--invisible {
  width: 9.375rem;
  height: 1px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.section-decorated__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section-decorated__content h5 {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--dreamtel-brown);
}

.section-decorated__content small {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--dreamtel-brown);
}

.section-decorated__action {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  padding: 0.75rem 2rem;
  min-height: 3rem;
  border: 1px solid var(--dreamtel-brown);
  border-radius: 999px;
  background: transparent;
  color: var(--dreamtel-brown);
  justify-self: start;
  align-self: center;
  display: inline-flex;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.section-decorated__action .book-now-cta__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0);
}

.section-decorated__action:hover .book-now-cta__icon,
.section-decorated__action:focus-visible .book-now-cta__icon {
  filter: brightness(0) invert(1);
}

.section-decorated__action:hover,
.section-decorated__action:focus-visible {
  background: var(--dreamtel-brown);
  color: var(--color-white);
  border-color: var(--dreamtel-brown);
}

.section-decorated__badge {
  display: block;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  pointer-events: none;
  margin: 0;
}

.section-decorated__actions {
  justify-self: start;
  width: 100%;
}

/* CTA wrapper placed beneath the collection scroll — aligns CTA to the right */
.collection-cta-wrapper {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.collection-cta {
  padding: 0.6rem 1.25rem;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid var(--dreamtel-brown);
  color: var(--dreamtel-brown);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 576px) {
  .collection-cta-wrapper {
    justify-content: center !important;
  }

  .collection-cta {
    width: 100%;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.collection-badge {
  position: absolute;
  top: -6rem;
  right: 6rem;
  width: 450px;
  max-width: 100%;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .collection-badge {
    display: none;
  }
}

/* ------------------------------ */
/* Experience gallery scroll reveal */
/* ------------------------------ */

.section-cream-bg .experience-gallery {
  position: relative;
  width: 100%;
  /* switch to a wrapping flex layout so we can place images side-by-side */
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  height: auto;
  max-height: none;
  overflow: visible;
}

.experience-gallery .experience-img {
  /* make images participate in the flow instead of absolute overlay */
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  transform: none;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  transition:
    opacity 300ms ease,
    transform 200ms ease;
  opacity: 1;
  will-change: transform;
}

/* Place 2nd and 3rd images side-by-side on wider viewports */
.section-cream-bg .experience-gallery .experience-img[data-idx="1"],
.section-cream-bg .experience-gallery .experience-img[data-idx="2"] {
  width: calc(50% - 0.5rem);
}

/* Keep the first and fourth images full width (stacked) */
.section-cream-bg .experience-gallery .experience-img[data-idx="0"],
.section-cream-bg .experience-gallery .experience-img[data-idx="3"] {
  width: 100%;
}

/* ------------------------------ */
/* Awards section */
/* ------------------------------ */

.awards-section {
  color: var(--dreamtel-brown);
}

.awards-gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

.award-item {
  flex: 1 1 16%;
  max-width: 16%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-item img {
  max-width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}

@media (max-width: 767.98px) {
  .award-item {
    flex: 1 1 45%;
    max-width: 45%;
    margin: 0 auto;
  }

  .awards-gallery {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .award-item {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

.section-cream-bg,
.gtk {
  background-color: var(--dreamtel-02);
  color: var(--dreamtel-brown);
}

.gtk .section-title {
  line-height: 32px;
}

.gtk-title-col {
  padding-top: 0.25rem;
}

/* ------------------------------ */
/* Nearby Attractions horizontal scroll */
/* ------------------------------ */
.nearby-attractions {
  padding-top: 5rem;
  padding-bottom: 0;
  overflow: hidden;
  color: var(--dreamtel-brown);
}

.nearby-attractions__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.section-title.nearby-attractions__title {
  margin: 0;
  font-size: 36px;
  line-height: 32px;
}

.nearby-attractions__line {
  flex: 0 0 15%;
  height: 1px;
  background: var(--dreamtel-brown);
  opacity: 1;
  display: block;
}

.nearby-attractions__outer {
  overflow: hidden;
  position: relative;
  height: 75vh;
}

.nearby-attractions__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  will-change: transform;
  min-width: max-content;
}

.na-card {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.na-card--tall {
  width: 28vw;
  height: 100%;
}

.na-card--short {
  width: 42vw;
  height: 65%;
}

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

.na-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.na-card__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: var(--color-white);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.na-card__name {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  line-height: 24px;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  letter-spacing: 0;
}

.na-card__distance {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  letter-spacing: 0;
}

@media (max-width: 767.98px) {
  .nearby-attractions__outer {
    height: 55vh;
  }

  .na-card--tall {
    width: 75vw;
  }

  .na-card--short {
    width: 60vw;
    height: 75%;
  }

  .na-card__name {
    font-size: 18px;
    line-height: 26px;
  }
}

.gtk-item {
  color: var(--dreamtel-brown);
}

.gtk-item__icon {
  width: 40px;
  height: 40px;
  display: block;
  color: var(--dreamtel-brown);
}

.gtk-item__divider {
  border-color: var(--dreamtel-brown);
  opacity: 1;
  margin: 0.75rem 0;
}

.gtk-item__title {
  font-family: "Philosopher", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  line-height: 32px;
}

.gtk-item__text {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
}

.section-image-grid .section-image-marquee img {
  aspect-ratio: 16 / 9;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.section-image-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-inline: 2rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.site-footer {
  background: var(--dreamtel-brown);
  color: var(--color-white);
  box-shadow: 0px -4px 8.4px 0px #00000026;
}

.footer-copy {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
}

.footer-link {
  color: var(--color-white);
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  position: relative;
}

.footer-link:not(:first-child)::before {
  content: "|";
  position: absolute;
  left: -0.85rem;
  color: var(--color-white);
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

.scroll-snap-start {
  scroll-snap-align: start;
}

.section-image-grid .marquee-item img {
  width: 100%;
  height: 404px;
  aspect-ratio: 59 / 40;
  object-fit: cover;
  display: block;
  /* border-radius: 1rem; */
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------ */
/* Our Story section */
/* ------------------------------ */
.story-section {
  background-color: var(--dreamtel-beige);
  color: var(--dreamtel-brown);
  min-height: 100vh;
}

.section-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.story-section .section-title {
  font-size: 56px;
}
.story-section .section-title::before {
  background: var(--dreamtel-brown);
}

/* Left-extending line for Kota Kinabalu page title
   - stretches to the viewport left edge, ignoring container padding
   - aligns with the first line of the multi-line title */
.kota-page {
  /* Override section title color and line color for Kota Kinabalu pages */
  --section-title-color: var(--dreamtel-brown);
  --section-title-line-color: var(--dreamtel-brown);
}

.title-line {
  width: 80px;
  height: 1px;
  background: var(--dreamtel-brown);
}

/* Wrapper-based left-extending 1px brown line up to the title text */
.title-with-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.title-with-line .title-line {
  display: block;
  flex: 0 0 80px;
  width: 80px;
  height: 1px;
  background: var(--dreamtel-brown);
  margin-top: 0.8rem; /* tweak to align with first line of heading */
}

.title-with-line .title-line.long-line {
  flex: 0 0 160px;
  width: 160px;
}

@media (max-width: 767.98px) {
  .title-with-line .title-line {
    flex: 0 0 48px;
    width: 48px;
  }
}

.title-with-line .title-copy {
  display: block;
}

.title-with-line .section-title {
  margin: 0 0 0.5rem 0;
  display: block;
}

.kk-keyhighlights {
  color: var(--color-white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kk-keyhighlights .section-title {
  font-size: 36px;
  line-height: 32px;
}

.kota-page .kk-keyhighlights {
  background-image: url("../assets/images/Mask group (1).jpg");
}

.jakarta-page .kk-keyhighlights {
  background-image: url("../assets/images/Mask group (10).jpg");
}

.london-page .kk-keyhighlights {
  background-image: url("../assets/images/Mask group (21).jpg");
}

.sabandar-page .kk-keyhighlights {
  background-image: url("../assets/images/Mask group (31).jpg");
}

/* Two-sided decorative rule for centered headings (Awards, etc.) */
.title-with-lines {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.title-with-lines .title-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--dreamtel-brown);
}

.title-with-lines .section-title {
  margin: 0;
  display: inline-block;
}

.story-text {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--dreamtel-brown) !important;
}

.border-right-only {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.story-grid {
  position: relative;
  min-height: 100vh;
  margin-top: 0;
  overflow: hidden;
}

.story-section .image-wrapper img {
  transform: translateY(40px);
  opacity: 0;
  transition:
    transform 800ms ease-out,
    opacity 800ms ease-out;
}

.story-section.visible .image-wrapper img {
  transform: translateY(0);
  opacity: 1;
}

.image-wrapper {
  position: absolute;
  overflow: hidden;
}

.collection-title-line {
  width: 80px;
  height: 1px;
  background-color: #333;
}

#bookDirect {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ready-section {
  color: var(--color-dark-gray);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 37rem;
  display: flex;
  align-items: center;
}

.ready-section .section-title {
  line-height: 36px;
}

.ready-section .section-title-line::before {
  top: 25%;
  background: var(--dreamtel-04);
}

.ready-section .btn-cta .book-now-cta__icon {
  filter: brightness(0) invert(0);
}

.ready-section .btn-cta:hover .book-now-cta__icon,
.ready-section .btn-cta:focus-visible .book-now-cta__icon {
  filter: brightness(0) invert(1);
}

.btn-cta {
  --bs-btn-color: var(--color-dark-gray);
  --bs-btn-border-color: var(--color-dark-gray);
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-dark-gray);
  --bs-btn-hover-border-color: var(--color-dark-gray);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--color-white);
  --bs-btn-active-bg: var(--color-dark-gray);
  --bs-btn-active-border-color: var(--color-dark-gray);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--color-dark-gray);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--color-dark-gray);
  --bs-gradient: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

/* Jakarta & London pages: ready-section uses white text, rule and button */
.jakarta-page .ready-section,
.london-page .ready-section {
  color: var(--color-white);
}
.jakarta-page .ready-section .section-title-line::before,
.london-page .ready-section .section-title-line::before {
  background: var(--color-white);
}

.jakarta-page .ready-section .btn-cta,
.london-page .ready-section .btn-cta {
  --bs-btn-color: var(--color-white);
  --bs-btn-border-color: var(--color-white);
  --bs-btn-hover-color: var(--color-dark-gray);
  --bs-btn-hover-bg: var(--color-white);
  --bs-btn-hover-border-color: var(--color-white);
  --bs-btn-active-color: var(--color-dark-gray);
  --bs-btn-active-bg: var(--color-white);
  --bs-btn-active-border-color: var(--color-white);
  --bs-btn-disabled-color: var(--color-white);
  --bs-btn-disabled-border-color: var(--color-white);
}
.jakarta-page .ready-section .btn-cta .book-now-cta__icon,
.london-page .ready-section .btn-cta .book-now-cta__icon {
  filter: brightness(0) invert(1);
}
.jakarta-page .ready-section .btn-cta:hover .book-now-cta__icon,
.jakarta-page .ready-section .btn-cta:focus-visible .book-now-cta__icon,
.london-page .ready-section .btn-cta:hover .book-now-cta__icon,
.london-page .ready-section .btn-cta:focus-visible .book-now-cta__icon {
  filter: brightness(0) invert(0);
}

.sabandar-page .ready-section .section-title-line::before {
  top: 50%;
}

.kota-page .ready-section {
  background-image: url("../assets/images/kota-ready.webp");
}

.jakarta-page .ready-section {
  background-image: url("../assets/images/jakarta-ready.webp");
}

.london-page .ready-section {
  background-image: url("../assets/images/london-ready.webp");
}

.sabandar-page .ready-section {
  background-image: url("../assets/images/sabandar-ready.webp");
}

/* ------------------------------ */
/* Kota Kinabalu intro morph */
/* Hero -> Kopivosian welcome scroll-driven transition */
/* ------------------------------ */
.kk-intro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-white);
  background-image: none !important;
  overflow: hidden;
}

.kk-intro__stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.kk-intro__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: transform;
  overflow: hidden;
}

.kk-intro__image-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kk-intro__image .kk-intro__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kk-intro__image--video-playing .kk-intro__image-el {
  opacity: 0;
  visibility: hidden;
}

.kk-intro__band {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  background: var(--color-white);
  z-index: 2;
  pointer-events: none;
}

.kk-intro__band--top {
  top: 0;
}

.kk-intro__band--bottom {
  bottom: 0;
}

.kk-intro__hero {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.kk-intro__hero-inner {
  position: relative;
  z-index: 1;
}

.kk-intro__hero-scroll {
  pointer-events: auto;
}

.kk-intro__welcome {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

.kk-intro__welcome-text {
  opacity: 0;
  transform: translateY(100px);
  will-change: transform, opacity;
}

.kk-intro__target {
  visibility: hidden;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Make Key Highlights act as a horizontal track on desktop so it can be scrolled/translated */
@media (min-width: 992px) {
  .kk-keyhighlights__content {
    overflow: hidden;
  }

  .kk-highlights__grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.5rem;
    will-change: transform;
  }

  .kk-highlights__grid > * {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .kk-keyhighlights__content {
    overflow: hidden;
  }

  .kk-highlights__grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.25rem;
    overflow: visible;
    will-change: transform;
  }

  .kk-highlights__grid > * {
    flex: 0 0 60vw;
    max-width: 60vw;
    min-width: 60vw;
  }
}

.kk-intro.is-active .kk-intro__welcome {
  pointer-events: auto;
}

@media (max-width: 767.98px) {
  .kk-intro {
    min-height: 0;
    overflow: visible;
  }

  .kk-intro__stage {
    height: auto;
  }

  .kk-intro__image {
    position: relative;
    height: 100vh;
  }

  .kk-intro__band {
    display: none;
  }

  .kk-intro__hero {
    position: absolute;
    height: 100vh;
  }

  .kk-intro__welcome {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    padding: 4rem 0;
  }

  .kk-intro__welcome .h-100,
  .kk-intro__welcome .row {
    height: auto !important;
  }

  .kk-intro__welcome-text {
    opacity: 1;
    transform: none;
  }

  .kk-intro__target {
    visibility: visible;
  }
}

/* Overlay and content for KK key highlights */
.hero-flame-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* sit behind hero content but above background */
}

.kk-keyhighlights__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  overflow: hidden;
}

.section-title.kk-highlights__title {
  color: var(--color-white);
  font-size: 36px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title.kk-highlights__title::after {
  content: "";
  position: absolute;
  /* extend from the container's left edge to the title */
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--color-white);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.kk-highlights__grid {
  align-items: stretch;
}

.kota-page .kk-highlights__grid {
  width: 100%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

.kk-card {
  position: relative;
  overflow: visible;
}

.kk-card__img {
  display: block;
  width: 100%;
  height: 521px;
  object-fit: contain;
}

.kk-card__caption {
  position: absolute;
  bottom: -4rem;
  left: 1rem;
  right: 1rem;
}

/* Position the caption at the top for the centered highlight card only */
.kk-card__caption--center {
  top: -4rem;
  bottom: auto;
  left: 1rem;
  right: 1rem;
}

.kk-card__caption--last {
  top: 4rem;
}

.kk-card__text {
  color: var(--color-white);
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  margin: 0;
}

@media (max-width: 767.98px) {
  .kk-card__text {
    font-size: 20px;
    line-height: 28px;
  }
}

.kk-card__text--italic {
  font-style: italic;
}

.kk-card--center .kk-card__img {
  height: 300px;
}

@media (max-width: 767.98px) {
  .kk-card__img {
    height: 200px;
  }

  .kk-highlights__title::before {
    left: -50vw;
  }
}

.collection-intro {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--dreamtel-brown);
}

.collection-scroll {
  scroll-behavior: smooth;
  overflow-x: auto;
}

/* Scrollable collection items used across pages */
.collection-scroll {
  display: flex;
  gap: 1rem;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
}

.collection-item {
  flex: 0 0 auto;
  width: 320px;
  max-width: 320px;
  background: var(--color-badge-bg);
  padding: 0.75rem;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.collection-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.section-decor-line {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: var(--dreamtel-brown);
  opacity: 0.35;
  margin-top: 0.9rem;
  flex-shrink: 0;
}

.collection-controls button {
  margin-left: 0.5rem;
}

@media (max-width: 767.98px) {
  .collection-controls {
    align-self: flex-end;
  }

  .collection-item {
    width: 85vw;
    max-width: 85vw;
  }
}

.collection-caption {
  padding-top: 0.5rem;
  color: var(--dreamtel-brown);
}

/* Container background for the Choose Your Stay collection */
.collection-section {
  background: var(--color-badge-bg);
  color: var(--dreamtel-brown);
}

.gtk .section-title:before,
.collection-section .section-title:before,
.comforts-section .section-title:before {
  background: var(--dreamtel-brown);
}

.collection-section .section-title {
  line-height: 32px;
}

.comforts-section {
  background-color: var(--color-white);
  color: var(--dreamtel-brown);
}

.comforts-section .section-title {
  line-height: 32px;
}

.comforts-section .section-subtitle {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-size: 14px;
}

.comforts-section .comforts-copy {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: var(--dreamtel-brown);
}

.comforts-section .comforts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
}

.comforts-section ul li span:not(.comforts-icon) {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

.collection-scroll > .col-12 {
  flex: 0 0 auto;
  width: 390px;
  max-width: 390px;
}

/* Show ~2.5 tiles on large screens (desktop) */
.collection-scroll {
  --collection-gap: 1rem;
  gap: var(--collection-gap);
}

@media (min-width: 992px) {
  .collection-scroll > .col-12 {
    /* 100% / 2.5 = 40% surface per tile; subtract visible gaps (1.5 gaps between 2.5 tiles)
       before dividing so tiles fit exactly into the container */
    flex: 0 0 calc((100% - (1.5 * var(--collection-gap))) / 2.5);
    max-width: calc((100% - (1.5 * var(--collection-gap))) / 2.5);
    scroll-snap-align: start;
  }

  /* simple fallback class (if you prefer constant %) */
  .collection-scroll > .col-12.fallback-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

/* Collection tile visual improvements to match index look */
.collection-tile {
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.collection-tile img {
  width: 100%;
  height: 240px;
  aspect-ratio: 13 / 8;
  object-fit: cover;
  display: block;
}

.collection-card-front-copy {
  bottom: 1.2rem;
  left: 1rem;
  right: 1rem;
}

/* Body below image: title / subtext / description + action */
.collection-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  color: var(--dreamtel-brown);
}

.collection-card-body .collection-card-body-meta {
  flex: 1 1 auto;
}

.collection-card-body-title {
  font-family: "Philosopher", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0;
  margin: 0 0 0.25rem 0;
  color: var(--dreamtel-brown);
  text-transform: none;
}

.collection-card-body-subtext {
  font-family: "Philosopher", sans-serif;
  font-style: italic;
  font-size: 16px;
  margin: 0 0 0.5rem 0;
  color: rgba(111, 98, 90, 0.9);
}

.collection-card-text {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: var(--dreamtel-brown);
  opacity: 0.95;
}

.collection-card-body .explore-btn {
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .collection-tile img {
    height: 200px;
  }

  .collection-card-body {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hotel-card,
.jakarta-card {
  box-sizing: border-box;
  position: relative;
  height: 480px;
  overflow: hidden;
  transition: transform 0.5s ease;
  z-index: 1;
}

.collection-card {
  perspective: 1400px;
  cursor: pointer;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-card:hover .flip-card__inner,
.flip-card:focus .flip-card__inner,
.flip-card:focus-within .flip-card__inner,
.flip-card:active .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card {
  touch-action: manipulation;
}

.flip-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.flip-card__front,
.flip-card__back {
  width: 100%;
  height: 100%;
}

.flip-card__front img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13 / 16;
  object-fit: cover;
  display: block;
}

.flip-card__front {
  position: relative;
}

/* Explicitly set front face orientation so backface-visibility works reliably */
.flip-card__front {
  transform: rotateY(0deg);
}

.collection-card-front-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.collection-card-front-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    179.65deg,
    rgba(48, 30, 30, 0) 29.23%,
    rgba(0, 0, 0, 0.5) 67.34%
  );
}

.collection-card-front-overlay--coming-soon {
  background: rgba(48, 30, 30, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-card-front-overlay--coming-soon .collection-card-front-copy {
  display: none;
}

.collection-card-front-coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.coming-soon-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-white);
}

.collection-card-front-badge {
  width: 77px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.collection-card-front-copy {
  position: absolute;
  bottom: 1.7rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.collection-card-front-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.collection-card-front-subtext {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--color-white);
  max-width: 90%;
  margin: 0;
}

.flip-card__back {
  background-color: var(--color-card-bg);
  color: var(--dreamtel-brown);
  padding: 2.4rem;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Ensure explicit bg-brown on flip back faces wins over the default card bg */
.flip-card__back.bg-brown {
  background-color: var(--dreamtel-brown);
  color: var(--color-white);
}

/* Small bracket label used under headings on the flip back faces */
.bracket-label {
  font-size: 0.85rem;
  opacity: 0.95;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

/* Ensure headings on brown backs are white for contrast */
.flip-card__back.bg-brown h3 {
  color: var(--color-white);
}

/* Bulleted lists on brown flip backs */
.flip-card__back.bg-brown ul:not(.list-unstyled) {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.flip-card__back.bg-brown li {
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.flip-card__back h3 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dreamtel-brown);
}

.collection-card-text {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--dreamtel-brown);
}

.flip-card:focus-visible {
  outline: 3px solid rgba(111, 98, 90, 0.35);
  outline-offset: 4px;
}

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

/* Make flip-cards in the dedicated section fill the viewport */
.flipcards-fullvh {
  display: flex;
  align-items: stretch;
}
.flipcards-fullvh > .row {
  width: 100%;
  margin: 0;
}
.flipcards-fullvh > .row > [class*="col-md-"] {
  height: 100%;
  display: flex;
}
.flipcards-fullvh .flip-card {
  flex: 1 1 auto;
  height: 100vh;
}
.flipcards-fullvh .flip-card__inner,
.flipcards-fullvh .flip-card__face,
.flipcards-fullvh .flip-card__front img {
  height: 100%;
}
.flipcards-fullvh .flip-card__back .p-4,
.flipcards-fullvh .flip-card__back .container,
.flipcards-fullvh .flip-card__back .container p {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jakarta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.book-now-link {
  font-family: "Mulish", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0;
  text-decoration-skip-ink: auto;
  color: var(--dreamtel-brown);
}

.explore-btn {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: none;
  padding: 0.75rem 2rem;
  min-height: 3rem;
  border: 1px solid var(--dreamtel-brown);
  border-radius: 999px;
  background: transparent;
  color: var(--dreamtel-brown);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
  margin-top: 2rem;
}

.explore-btn .book-now-cta__icon {
  width: 20px;
  height: 10px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(31%) sepia(15%) saturate(296%) hue-rotate(50deg)
    brightness(91%) contrast(86%);
}

.explore-btn:hover .book-now-cta__icon,
.explore-btn:focus-visible .book-now-cta__icon {
  filter: brightness(0) invert(1);
}

.explore-btn:hover,
.explore-btn:focus-visible {
  background: var(--dreamtel-brown);
  color: var(--color-white);
  border-color: var(--dreamtel-brown);
}

.progress-line {
  height: 2px;
  background-color: #301e1e4d;
  position: relative;
  width: 100%;
}

.progress-active {
  position: absolute;
  height: 100%;
  background-color: var(--dreamtel-brown);
  width: 5%;
  transition: width 0.3s ease;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--dreamtel-brown);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  background: transparent;
  color: var(--dreamtel-brown);
  font-size: 18px;
  line-height: 1;
  padding: 0;
}

.collection-nav-icon {
  width: 14px;
  height: 14px;
  display: block;
  filter: brightness(0) sepia(0.4) saturate(4) hue-rotate(12deg) brightness(0.9);
}

.nav-arrow--prev .collection-nav-icon {
  transform: rotate(-180deg);
}

.nav-arrow:hover {
  background-color: var(--dreamtel-brown);
  color: var(--color-white);
  border-color: var(--dreamtel-brown);
}

.nav-arrow:hover .collection-nav-icon {
  filter: brightness(0) invert(1);
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chefs-img-header {
  width: 25%;
  max-width: 350px;
  height: auto;
  aspect-ratio: 4/3;
  position: static !important;
  margin-top: 3rem;
  margin-right: 20rem;
  z-index: 1;
}

.mountain-img {
  top: 0;
  left: 0;
  width: 25%;
  height: auto;
  aspect-ratio: 3/4;
  z-index: 1;
}

.content-block {
  position: absolute;
  top: 2rem;
  right: 25%;
  width: 30%;
  z-index: 2;
  text-align: left !important;
}

.hotel-img {
  top: 8rem;
  left: 17%;
  width: 25%;
  height: auto;
  aspect-ratio: 3/4;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dancers-img {
  top: 8rem;
  right: 0;
  width: 15%;
  height: auto;
  aspect-ratio: 1/2;
  z-index: 1;
}

@media (max-width: 992px) {
  .story-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }

  .story-section .row > .col-12.d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1.5rem;
  }

  .chefs-img-header {
    width: 60% !important;
    align-self: flex-end;
  }

  .image-wrapper,
  .content-block {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .content-block {
    padding: 0 1rem;
  }
}

/* Stack images vertically on desktop so ScrollTrigger can translate a tall gallery */
@media (min-width: 768px) {
  .section-cream-bg .experience-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .section-cream-bg .experience-gallery .experience-img {
    width: 100% !important;
    max-width: none;
    height: auto;
    display: block;
  }

  /* Ensure earlier two-column rules don't override stacking */
  .section-cream-bg .experience-gallery .experience-img[data-idx="1"],
  .section-cream-bg .experience-gallery .experience-img[data-idx="2"],
  .section-cream-bg .experience-gallery .experience-img[data-idx="0"],
  .section-cream-bg .experience-gallery .experience-img[data-idx="3"] {
    width: 100% !important;
  }
}

/* Layout when using inner track: make 2nd and 3rd images sit side-by-side */
@media (min-width: 768px) {
  .section-cream-bg .experience-gallery__track {
    /* keep normal flow; images control widths */
    display: block;
  }

  .section-cream-bg .experience-gallery__track .experience-img {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .section-cream-bg .experience-gallery__track .experience-img[data-idx="1"],
  .section-cream-bg .experience-gallery__track .experience-img[data-idx="2"] {
    display: inline-block;
    width: calc(50% - 0.5rem);
    vertical-align: top;
  }

  .section-cream-bg .experience-gallery__track .experience-img[data-idx="2"] {
    margin-right: 0;
  }

  /* Row wrapper for imgs 2 & 3 for more reliable side-by-side layout */
  .section-cream-bg .experience-row-inline {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .section-cream-bg .experience-row-inline .experience-img {
    width: calc(50% - 0.5rem) !important;
    display: block;
  }

  /* Ensure gallery and track use border-box sizing so percentage widths line up */
  .section-cream-bg .experience-gallery,
  .section-cream-bg .experience-gallery__track,
  .section-cream-bg .experience-gallery .experience-img {
    box-sizing: border-box;
  }

  /* Add vertical padding to first and fourth images for breathing room */
  .section-cream-bg .experience-gallery__track .experience-img[data-idx="0"],
  .section-cream-bg .experience-gallery__track .experience-img[data-idx="3"] {
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
  }

  /* ensure first and fourth stay full width */
  .section-cream-bg .experience-gallery__track .experience-img[data-idx="0"],
  .section-cream-bg .experience-gallery__track .experience-img[data-idx="3"] {
    display: block;
    width: 100%;
  }
}

.hero-scroll-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.hero-time-badge {
  position: fixed;
  bottom: 7rem;
  right: 0rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px 0 0 999px;
  background: var(--color-badge-bg);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  white-space: nowrap;
  transition:
    width 300ms ease,
    padding 300ms ease,
    border-radius 300ms ease,
    background 300ms ease,
    transform 300ms ease;
  cursor: pointer;
  z-index: 100004;
}

.hero-time-badge__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero-time-badge__text {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  overflow: hidden;
  max-width: 420px; /* expanded max */
  transition:
    max-width 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 300ms ease,
    transform 400ms ease;
}

.hero-time-badge__location,
.hero-time-badge__time {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--dreamtel-brown);
  white-space: nowrap;
}

/* Closed / collapsed state */
.hero-time-badge.hero-time-badge--closed {
  padding-left: 0.45rem;
  padding-right: 0.45rem;
  border-radius: 999px 0 0 999px;
}

.hero-time-badge.hero-time-badge--closed .hero-time-badge__text {
  max-width: 0;
  opacity: 0;
  transform: translateX(6px);
}

.hero-time-badge.hero-time-badge--closed .hero-time-badge__icon {
  transform: translateX(0);
}

@media (max-width: 767.98px) {
  .hero-time-badge {
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
    height: 4rem;
    margin: 1.25rem auto 0;
    padding: 0.8rem 0.95rem;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid rgba(111, 98, 90, 0.12);
    border-radius: 1.25rem 0 0 1.25rem;
    background: rgba(237, 239, 215, 0.94);
    box-shadow: 0 14px 30px rgba(48, 30, 30, 0.14);
    white-space: normal;
  }

  .hero-time-badge__icon {
    width: 24px;
    height: 24px;
    margin-top: 0.1rem;
  }

  .hero-time-badge__text {
    display: grid;
    gap: 0.2rem;
    align-items: start;
    flex: 1 1 auto;
    max-width: 16rem;
  }

  .hero-time-badge__location,
  .hero-time-badge__time {
    white-space: normal;
    line-height: 1.25;
  }

  .hero-time-badge__location {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.72;
  }

  .hero-time-badge__time {
    font-size: 0.98rem;
    font-weight: 600;
  }

  .hero-time-badge.hero-time-badge--closed {
    width: auto;
    height: 4rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    border-radius: 999px 0px 0 999px;
  }

  .hero-time-badge.hero-time-badge--closed .hero-time-badge__icon {
    margin-top: 0;
  }
}

/* ------------------------------ */
/* Hero carousel indicators */
/* ------------------------------ */
#heroCarousel .hero-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

#heroCarousel .hero-indicators .btn-link {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
}

/* #heroCarousel .hero-indicators .btn-link:hover, */
#heroCarousel .hero-indicators .btn-link.active {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  border-bottom: 3px solid var(--color-white);
  border-radius: 0;
}

/* ------------------------------ */
/* Header styles */
/* ------------------------------ */
header {
  background: transparent;
  border-bottom: 1px solid var(--color-white);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
  z-index: 100003;
}

header .header-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  padding: 0.5rem 0.75rem;
  gap: 0.75rem;
  cursor: pointer;
}

body.kota-page header .header-menu-toggle {
  display: inline-flex;
}

/* Show header menu toggle on Jakarta pages too */
body.jakarta-page header .header-menu-toggle {
  display: inline-flex;
}

body.london-page header .header-menu-toggle {
  display: inline-flex;
}

body.sabandar-page header .header-menu-toggle {
  display: inline-flex;
}

header .header-menu-toggle span {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: inherit;
}

header .header-menu-toggle__bars,
header .header-menu-toggle__bars::before,
header .header-menu-toggle__bars::after {
  display: inline-block;
  width: 1.5rem;
  height: 0.15rem;
  background: var(--color-white);
  position: relative;
  transition: background 200ms ease;
}

header .header-menu-toggle__bars {
  box-shadow:
    0 -0.4rem 0 0 var(--color-white),
    0 0.4rem 0 0 var(--color-white);
}

header .header-menu-toggle.open .header-menu-toggle__bars {
  background: transparent;
  box-shadow: none;
}

header .header-menu-toggle.open .header-menu-toggle__bars::before,
header .header-menu-toggle.open .header-menu-toggle__bars::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 0.15rem;
  background: var(--color-white);
  transform-origin: center;
}

header .header-menu-toggle.open .header-menu-toggle__bars::before {
  transform: translateY(-50%) rotate(45deg);
}

header .header-menu-toggle.open .header-menu-toggle__bars::after {
  transform: translateY(-50%) rotate(-45deg);
}

header.scrolled .header-menu-toggle {
  color: var(--dreamtel-brown);
}

header.scrolled .header-menu-toggle__bars,
header.scrolled .header-menu-toggle__bars::before,
header.scrolled .header-menu-toggle__bars::after {
  background: var(--dreamtel-brown);
}

header.scrolled .header-menu-toggle__bars {
  box-shadow:
    0 -0.4rem 0 0 var(--dreamtel-brown),
    0 0.4rem 0 0 var(--dreamtel-brown);
}

header.scrolled .header-menu-toggle.open .header-menu-toggle__bars {
  background: transparent;
  box-shadow: none;
}

header.scrolled .header-menu-toggle.open .header-menu-toggle__bars::before,
header.scrolled .header-menu-toggle.open .header-menu-toggle__bars::after {
  background: var(--dreamtel-brown);
}

/* Header state after leaving hero */
header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--dreamtel-brown);
}

header.scrolled .text-white {
  color: #1f1f1f !important;
}

header.scrolled .book-now-cta {
  color: var(--color-white);
  border-color: var(--dreamtel-brown);
  background: var(--dreamtel-brown);
}

header.scrolled .book-now-cta:hover,
header.scrolled .book-now-cta:focus-visible {
  background: var(--dreamtel-brown);
  color: var(--color-white);
}

header.scrolled .book-now-cta__icon {
  filter: none;
}

header.scrolled .header-nav-group {
  display: none !important;
}

header.scrolled .header-menu-toggle {
  display: inline-flex !important;
}

/* Header dropdown menu */
.header-dropdown-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
}

.header-dropdown-menu.active {
  pointer-events: auto;
}

.header-dropdown-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.header-dropdown-menu.active .header-dropdown-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.header-dropdown-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 250ms ease;
  z-index: 1;
  background-image: url("../assets/images/home-banner-6.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  justify-items: start;
}

.header-dropdown-menu.active .header-dropdown-panel {
  transform: translateY(0);
}

.header-dropdown-nav {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}

.header-dropdown-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 3rem;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 80px;
  letter-spacing: 0.01em;
  color: var(--dreamtel-brown);
  text-align: left;
}

.header-dropdown-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background: rgba(58, 47, 39, 0.55);
}

.header-dropdown-link.active::before {
  width: 5rem;
}

.header-dropdown-link.active {
  color: var(--dreamtel-brown);
  font-weight: 700;
  text-decoration: underline !important;
  padding-left: 6rem;
}

.header-dropdown-feature {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.header-dropdown-feature__title {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--dreamtel-brown);
}

.header-dropdown-feature__divider {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background: var(--dreamtel-brown);
  border-radius: 999px;
}

.header-dropdown-feature__gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.header-dropdown-feature__card {
  width: 9.7rem;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.header-dropdown-feature__card--coming-soon {
  overflow: visible;
  position: static;
}

.header-dropdown-feature__card-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.header-dropdown-feature__card--coming-soon
  .header-dropdown-feature__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(48, 30, 30, 0.55);
  z-index: 1;
  pointer-events: none;
}

.header-dropdown-feature__card--coming-soon
  .header-dropdown-feature__coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
  z-index: 2;
  white-space: normal;
  max-width: 80%;
  text-align: center;
}

.header-dropdown-feature__card--coming-soon .header-dropdown-feature__caption {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.header-dropdown-feature__card-image img,
.header-dropdown-feature__card img {
  width: 100%;
  height: 17rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.header-dropdown-feature__card img {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.header-dropdown-feature__caption {
  display: block;
  color: var(--dreamtel-brown);
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .header-dropdown-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .header-dropdown-feature__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }

  .header-dropdown-feature__card-image img,
  .header-dropdown-feature__card img {
    height: 9rem;
    max-height: 9rem;
  }

  .header-dropdown-link {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.header-dropdown-link:hover,
.header-dropdown-link:focus-visible {
  color: #4a423b;
}

/* Book Now slide-out menu */
.book-now-menu {
  position: fixed;
  inset: 0;
  z-index: 100005;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.book-now-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.book-now-menu__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 250ms ease;
}

.book-now-menu.active .book-now-menu__backdrop {
  opacity: 1;
}

.book-now-menu__panel {
  position: relative;
  width: min(32rem, 100%);
  max-width: 32rem;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 250ms ease;
  opacity: 0.9;
}

.book-now-menu.active .book-now-menu__panel {
  transform: translateX(0);
}

.book-now-menu__close {
  z-index: 2;
  min-width: 7.625rem;
  min-height: 3.5rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: inherit !important;
}

.book-now-menu__close:hover,
.book-now-menu__close:focus,
.book-now-menu__close:active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: inherit !important;
}

.book-now-menu__close-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.book-now-menu__close-icon {
  display: inline-block;
  position: relative;
  width: 1.625rem;
  height: 1.625rem;
}

.book-now-menu__close-icon::before,
.book-now-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.1875rem;
  height: 0.125rem;
  background: var(--dreamtel-brown);
  transform-origin: center;
}

.book-now-menu__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.book-now-menu__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.book-now-menu__item {
  height: 9rem;
  transition:
    background 200ms ease,
    transform 200ms ease,
    border-color 200ms ease;
}

.book-now-menu__item:hover,
.book-now-menu__item:focus-visible {
  background: var(--dreamtel-brown);
  color: var(--color-white);
}

.book-now-menu__item:hover .book-now-menu__item-text,
.book-now-menu__item:focus-visible .book-now-menu__item-text {
  color: var(--color-white);
}

.book-now-menu__item:hover .book-now-menu__item-icon,
.book-now-menu__item:focus-visible .book-now-menu__item-icon {
  filter: brightness(0) invert(1);
}

.book-now-menu__item-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--dreamtel-brown);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

/* Header Book Now CTA */
.book-now-cta {
  position: relative;
  width: 18.0625rem;
  height: 3.875rem;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  border-left: 1px solid var(--color-white);
  border-radius: 0;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.book-now-cta__icon {
  width: 37px;
  height: 5px;
  display: block;
}

.book-now-cta:hover,
.book-now-cta:focus-visible {
  background-color: var(--color-white);
  color: var(--dreamtel-brown);
}

.book-now-cta:hover .book-now-cta__icon,
.book-now-cta:focus-visible .book-now-cta__icon {
  filter: brightness(0) sepia(0.4) saturate(4) hue-rotate(12deg) brightness(0.9);
}

header.scrolled .book-now-cta:hover .book-now-cta__icon,
header.scrolled .book-now-cta:focus-visible .book-now-cta__icon {
  filter: none;
}

/* Carousel hero slides */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
#heroCarousel .hero-slide {
  height: 100vh;
}

#heroCarousel .carousel-inner {
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: var(--dreamtel-brown);
}

.hero-slide.slide-1 {
  background-image: url("../assets/images/home-banner.jpg");
}

.hero-slide.slide-2 {
  background-image: url("../assets/images/home-banner-1.jpg");
}

.hero-slide.slide-3 {
  background-image: url("../assets/images/home-banner-2.jpg");
}

.hero-slide.slide-4 {
  background-image: url("../assets/images/home-banner-3.jpg");
}

.hero-slide.slide-5 {
  background-image: url("../assets/images/home-banner-4.jpg");
}

.hero-slide.slide-6 {
  background-image: url("../assets/images/home-banner-5.jpg");
}

.hero-slide .container {
  z-index: 2;
}

/* Hero carousel scroll-driven flame mask reveal */
.hero-flame-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  display: block;
  overflow: visible;
  opacity: 1;
}

/* ------------------------------ */
/* Responsive layout adjustments */
/* ------------------------------ */
@media (max-width: 991px) {
  /* Header and hero scaling */
  header .header-nav-group {
    display: none !important;
  }

  header .header-menu-toggle {
    display: inline-flex !important;
  }

  header .book-now-cta {
    width: auto;
    min-width: auto;
    padding: 0.75rem 1rem;
  }

  header .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #heroCarousel .hero-slide .container {
    padding-left: 0;
    padding-right: 0;
  }

  #heroCarousel .hero-slide h1 {
    font-size: clamp(2rem, 6vw, 2.4rem);
    text-align: center;
  }

  #heroCarousel .hero-slide p {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-cta {
    width: auto;
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-line,
  .hero-line--invisible {
    width: 4.5rem;
  }

  .section-image-marquee {
    padding-inline: 1rem;
  }

  .section-image-grid .marquee-item img {
    height: 180px;
  }

  /* Collection and CTA layout */
  .collection-body {
    padding-inline-start: 1rem;
  }

  .collection-scroll > .col-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .hotel-card,
  .jakarta-card {
    height: 500px;
  }

  .section-decorated {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    align-items: start;
  }

  .section-decorated__badge {
    display: none;
  }

  .section-decorated__action {
    width: 100%;
    justify-content: center;
  }

  .story-section {
    padding: 2rem 0 3rem;
  }

  .story-section .row > .col-12.d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1.5rem;
  }

  .content-block {
    padding: 0 1rem;
    text-align: center;
  }

  /* Story section stack */
  .chefs-img-header {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
  }

  .image-wrapper {
    width: 100% !important;
  }
}

/* The grid-chefs copy is only for mobile; hide it on desktop */
.story-grid-chefs {
  display: none;
}

/* ------------------------------------------ */
/* Our Story — mobile editorial layout        */
/* ------------------------------------------ */
@media (max-width: 767.98px) {
  /* Hide the chefs image from the title header row */
  .story-section .row > .col-12.d-flex .chefs-img-header {
    display: none !important;
  }

  /* Remove the title-row bottom gap now that the image is gone */
  .story-section .row > .col-12.d-flex {
    margin-bottom: 0 !important;
    gap: 0 !important;
  }

  /* Show chefs as a full-bleed intro image inside the grid */
  .story-grid-chefs {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .story-grid-chefs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: none !important;
    opacity: 1 !important;
  }

  /* Collapse excess top space on the text block */
  .content-block {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding: 1.5rem 1.25rem !important;
    text-align: left !important;
  }

  /* 2-column photo pair: mountain + hotel side by side */
  .story-mobile-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    width: 100%;
  }

  .story-mobile-pair .image-wrapper {
    width: 100% !important;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    margin-bottom: 0 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .story-mobile-pair .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Remove the desktop box-shadow on hotel card in the pair */
  .story-mobile-pair .hotel-img {
    box-shadow: none !important;
  }

  /* Full-width dancers accent — keep subject in frame */
  .story-grid .dancers-img {
    width: 100% !important;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-bottom: 0 !important;
  }

  .story-grid .dancers-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Tighten the overall grid spacing */
  .story-grid {
    gap: 0.375rem !important;
  }
}

@media (max-width: 767.98px) {
  header .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  #heroCarousel .hero-slide h1 {
    font-size: clamp(1.75rem, 7vw, 2.1rem);
  }

  #heroCarousel .hero-slide p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-cta {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .section-image-grid .marquee-item img {
    height: 150px;
  }

  .story-section {
    padding: 1.5rem 0 2rem;
  }

  .story-section .story-grid {
    gap: 1.25rem;
  }

  .content-block {
    padding: 0 0.5rem;
  }

  .flip-card__back {
    padding: 1.5rem;
  }

  .jakarta-actions {
    align-items: stretch;
  }

  .explore-btn {
    width: 100%;
    justify-content: center;
  }

  .book-now-link {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .header-dropdown-panel {
    padding: 1rem 1.25rem;
  }

  .header-dropdown-feature__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }

  .header-dropdown-feature__card-image img,
  .header-dropdown-feature__card img {
    height: 9rem;
    max-height: 9rem;
  }

  .header-dropdown-feature {
    gap: 0.75rem;
    padding-top: 0;
  }

  .header-dropdown-feature__title {
    font-size: 1rem;
  }

  .header-dropdown-feature__caption {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .header-dropdown-feature__coming-soon {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .header-dropdown-link {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-left: 2rem;
  }

  .header-dropdown-link.active {
    padding-left: 3rem;
  }

  .header-dropdown-link.active::before {
    width: 2.5rem;
  }

  .header-dropdown-nav {
    gap: 0.25rem;
  }

  #heroCarousel .hero-indicators {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  #heroCarousel .hero-indicators .btn-link {
    font-size: 0.75rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    line-height: 1.1 !important;
  }

  /* Push hero content above the indicators bar */
  .hero-slide {
    padding-bottom: 9rem;
  }

  .collection-body {
    padding-inline-start: 0.5rem;
    padding-inline-end: 0.5rem;
  }

  .collection-intro {
    max-width: 100%;
  }

  .book-now-menu__panel {
    width: 100%;
    max-width: 100%;
  }

  .book-now-menu__item {
    height: auto;
    padding: 1rem;
  }

  .book-now-menu__item-icon {
    width: 2rem;
    height: auto;
    margin: 0;
  }

  .section-decorated__badge {
    display: none;
  }

  .story-section .story-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  header .book-now-cta {
    display: none;
  }

  .section-decorated__action {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .hero-slide .container {
    padding-inline: 1rem;
  }

  .collection-scroll {
    padding-bottom: 1rem;
  }

  .hotel-card,
  .jakarta-card {
    height: 460px;
  }

  .flip-card__back {
    overflow-y: auto;
    padding-bottom: 1rem;
  }
}

/* Awards marquee */
.awards-marquee-wrapper {
  overflow: hidden;
  width: 100%;
}
.awards-marquee {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  width: max-content;
  animation: awards-marquee var(--marquee-duration, 20s) linear infinite;
}
.awards-marquee .award-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 0 0.5rem;
}
.awards-marquee img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.awards-marquee:hover {
  animation-play-state: paused;
}
@keyframes awards-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-translate, -50%));
  }
}
/* width for items is computed by JS to guarantee exact visible count */
@media (max-width: 991.98px) {
  .awards-marquee .award-item {
    flex: 0 0 auto;
  }
} /* 4 items */
@media (max-width: 767.98px) {
  .awards-marquee .award-item {
    flex: 0 0 auto;
  }
} /* 3 items */
@media (max-width: 575.98px) {
  .awards-marquee .award-item {
    flex: 0 0 auto;
  }
} /* 2 items */

.collection-card.is-visible {
  opacity: 1;
  transform: none;
}

.collection-badge.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .awards-marquee {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .flip-card__inner,
  .collection-card,
  .collection-badge,
  .experience-gallery .experience-img {
    transition: none !important;
    will-change: auto;
  }
}

/* Collection section sticky horizontal scroll (index.html) */
.collection-sticky-wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .collection-sticky-wrapper > #collection.collection-section {
    position: sticky !important;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
}

.collection-section__outer {
  width: 100%;
}

.collection-section__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.collection-section__item {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 280px;
}

@media (min-width: 768px) {
  .collection-section__outer {
    overflow: hidden;
  }

  .collection-section__track {
    will-change: transform;
  }
}

@media (max-width: 767.98px) {
  .collection-section__outer {
    overflow: hidden;
  }

  .collection-section__item {
    flex: 0 0 85%;
    min-width: 260px;
  }
}

.contact-section .section-title {
  line-height: 36px;
}

.section-title-line::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 500%;
  height: 1px;
  background: var(--color-white);
  margin-right: 1.1rem;
}

.white-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--color-white);
}

.contact-section {
  background: var(--dreamtel-brown);
  color: var(--color-white);
}

.contact-section .container {
  position: relative;
}

.section-subtitle {
  font-family: Philosopher, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

.section-content {
  font-family: Philosopher, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0;
}

.content-title {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-section .section-content a,
.contact-section .section-content a:visited {
  line-height: 22px;
  color: var(--color-white);
  text-decoration: none;
}
.contact-section .section-content a:hover,
.contact-section .section-content a:focus {
  text-decoration: underline;
}

/* ----------------------------------------------------------- */
/* Responsive layout safeguards */
/* ----------------------------------------------------------- */

/* Header dropdown card sizing shared across laptop + tablet */
@media (max-width: 1199.98px) {
  .header-dropdown-feature__card {
    width: 100%;
    max-width: 100%;
  }

  .header-dropdown-feature__card-image img,
  .header-dropdown-feature__card img {
    height: auto;
    max-height: 14rem;
  }
}

/* Small laptop / tablet landscape (992px–1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .collection-scroll.offset-2,
  .collection-scroll[class*="offset-"] {
    margin-left: 0 !important;
  }

  .collection-scroll.row {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    box-sizing: border-box;
  }

  .header-dropdown-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1rem;
  }

  .header-dropdown-nav {
    width: 100%;
  }

  .header-dropdown-link {
    font-size: 1.25rem;
    line-height: 1.35;
    padding-left: 2rem;
  }

  .header-dropdown-link::before {
    width: 1.35rem;
  }

  .header-dropdown-link.active::before {
    width: 2.75rem;
  }

  .header-dropdown-link.active {
    padding-left: 3.5rem;
  }

  .header-dropdown-feature {
    padding-top: 0;
  }

  .header-dropdown-feature__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }
}

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  header .container-fluid {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    gap: 1rem !important;
  }

  .header-nav-group {
    gap: 1rem !important;
  }

  .promise-section .section-title {
    width: 100%;
    margin-right: 0;
  }

  .nearby-attractions__header {
    padding: 0 1rem;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .section-title.nearby-attractions__title {
    font-size: 1.75rem;
    line-height: 1.1;
  }

  .nearby-attractions {
    padding-top: 3rem;
  }

  .nearby-attractions__outer {
    height: 65vh;
  }

  /* Awards / experience headings scale */
  .bg-brown .section-title,
  .promise-section .section-title,
  .gradient-image__caption {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .gradient-image__caption {
    bottom: 1rem;
    white-space: normal;
    text-align: center;
  }

  .flip-card-back__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Hero typography */
  .hero-slide h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  /* Header padding (override Bootstrap ps-5 / pe-0 / gap-5) */
  header .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    gap: 0.5rem !important;
  }

  .header-nav-group {
    gap: 0.5rem !important;
  }

  /* Hide desktop-only nav links on mobile (kept hamburger) */
  .header-nav-group .nav-link,
  .header-nav-group .vr {
    display: none !important;
  }

  header .header-menu-toggle {
    display: inline-flex !important;
  }

  header .book-now-cta__text {
    display: none !important;
  }

  /* Hero typography */
  .hero-slide h1 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .hero-slide p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-line,
  .hero-line--invisible {
    width: 5rem;
  }

  /* Generic section titles */
  .bg-brown .section-title,
  .promise-section .section-title,
  .promise-section p,
  .section-decorated__content h5 {
    font-size: 1.125rem;
    line-height: 1.2;
  }

  .section-decorated {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.5rem;
    text-align: center;
  }

  .section-decorated__line,
  .section-decorated__line--invisible {
    display: none;
  }

  .section-decorated__action {
    justify-self: center;
  }

  .gradient-image__caption {
    font-size: 1rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }

  .flip-card-back__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Stack default Bootstrap col-md-* layouts on mobile (where appropriate)
     EXCEPT animated horizontal-scroll grids (kk-highlights__grid). */
  .row:not(.kk-highlights__grid):not(.collection-scroll):not(
      .nearby-attractions__track
    )
    > [class*="col-md-"]:not(.col-12) {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* kk-keyhighlights — keep cards horizontal & wide enough for the
     scroll-pinned animation to have travel distance on small screens */
  .kk-highlights__grid {
    flex-wrap: nowrap !important;
    overflow: visible;
  }

  .kk-highlights__grid > [class*="col-"] {
    flex: 0 0 75vw !important;
    max-width: 75vw !important;
    min-width: 75vw;
  }

  .kk-card__img {
    height: auto;
    max-height: 70vh;
    object-fit: cover;
  }

  /* Destination flip-card section: stacked phone layout should keep
     every card contained within the section instead of forcing 100vh cards. */
  .flipcards-fullvh {
    display: block;
    min-height: 0;
    padding-block: 1rem;
  }

  .flipcards-fullvh > .row {
    width: 100%;
    margin: 0;
    row-gap: 1rem;
  }

  .flipcards-fullvh > .row > [class*="col-"] {
    display: block;
    height: auto;
    padding-inline: 0;
  }

  .flipcards-fullvh .flip-card {
    display: block;
    height: clamp(26rem, 82vh, 32rem);
    min-height: 26rem;
  }

  .flipcards-fullvh .flip-card__inner,
  .flipcards-fullvh .flip-card__face,
  .flipcards-fullvh .flip-card__front img {
    height: 100%;
  }

  .flipcards-fullvh .flip-card__back {
    overflow-y: auto;
  }

  /* Header dropdown gallery — single column on phones */
  .header-dropdown-feature__gallery {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  .header-dropdown-feature__card {
    width: 100%;
    max-width: 100%;
  }

  .header-dropdown-feature__card-image img,
  .header-dropdown-feature__card img {
    height: auto;
    max-height: 60vw;
  }

  .header-dropdown-feature__title {
    font-size: 1.125rem;
  }

  /* Nearby attractions tweaks */
  .section-title.nearby-attractions__title {
    font-size: 1.25rem;
  }

  .nearby-attractions__header {
    flex-wrap: wrap;
    padding: 0 1rem;
  }

  .nearby-attractions__line {
    flex: 1 1 30%;
  }

  /* Collection horizontal scroll — narrower cards on mobile so the
     pinned horizontal animation has visible travel distance */
  .collection-section__item {
    flex: 0 0 80vw !important;
    min-width: 240px;
    max-width: 90vw;
  }

  /* Section paddings */
  .promise-section,
  .nearby-attractions,
  .section-decorated,
  .contact-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Footer */
  .footer-copy,
  .footer-link {
    font-size: 0.8rem;
  }

  /* Generic image safety — never overflow viewport */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Marquee items shouldn't be wider than viewport */
  .section-image-grid .section-image-marquee img {
    height: 180px;
  }

  /* Make book-now slide-out full width on phones */
  .book-now-menu__panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Pin spacers should never trap horizontal overflow on small screens */
  .gsap-pin-spacer,
  .pin-spacer {
    max-width: 100vw;
  }

  /* Bootstrap offsets push content offscreen on small viewports — neutralize */
  [class*="offset-"]:not([class*="offset-md-"]):not([class*="offset-lg-"]) {
    margin-left: 0 !important;
  }

  /* Bootstrap row negative gutter overflows on small viewports.
     GSAP-generated pin-spacers force overflow:visible !important on parents,
     so instead of clipping at the section level, neutralise the row gutters
     that cause the -12px overflow within those pinned sections. */
  main > section,
  main > .container-fluid {
    max-width: 100vw;
  }

  .experience-row,
  .kk-intro__welcome,
  .kk-intro__hero,
  .gtk .row,
  section .row {
    --bs-gutter-x: 0;
    margin-inline: 0;
  }

  section .row > [class*="col-"] {
    padding-inline: 0;
  }

  /* Experience gallery on phones: keep the image stack in one column and
     override JS-injected inline sizing from the desktop reveal setup. */
  .section-cream-bg .experience-row {
    --bs-gutter-x: 1rem;
    row-gap: 1rem;
  }

  .section-cream-bg .experience-row > [class*="col-"] {
    padding-inline: 0.5rem;
  }

  .section-cream-bg .experience-gallery,
  .section-cream-bg .experience-gallery__track,
  .section-cream-bg .experience-row-inline {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem;
    width: 100%;
  }

  .section-cream-bg .experience-gallery .experience-img,
  .section-cream-bg .experience-gallery__track .experience-img,
  .section-cream-bg .experience-row-inline .experience-img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .collection-scroll.offset-2,
  .collection-scroll[class*="offset-"] {
    margin-left: 0 !important;
  }
}

/* Very small phones (≤400px) — extra tightening */
@media (max-width: 400px) {
  .hero-slide h1 {
    font-size: 1.25rem;
  }

  .header-dropdown-feature__title {
    font-size: 1rem;
  }

  .kk-highlights__grid > [class*="col-"] {
    flex: 0 0 85vw !important;
    max-width: 85vw !important;
    min-width: 85vw;
  }
}

/* Touch devices — let flip-cards open via tap (focus-within) */
@media (hover: none) {
  .flip-card:focus-within .flip-card__inner,
  .flip-card.is-flipped .flip-card__inner {
    transform: rotateY(180deg);
  }
}
