@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap");

/* Shiv Parivar Resorts — logo theme: teal + spiritual indigo */
:root {
  --font-footer-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --color-teal: #5fb7b9;
  --color-teal-hover: #4aa4a6;
  --color-teal-light: #8fd4d6;
  --color-teal-soft: rgba(95, 183, 185, 0.2);
  --color-indigo: #483d8b;
  --color-indigo-deep: #2d2654;
  --color-indigo-mid: #3f3d99;
  --color-bg: #fafbfd;
  --color-bg-alt: #eef1f8;
  --color-surface: #ffffff;
  --color-text: #2e2a42;
  --color-text-muted: #5c5878;
  --color-accent-muted: #6b6399;
  --color-border: rgba(72, 61, 139, 0.14);
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --shadow-sm: 0 2px 16px rgba(45, 38, 84, 0.07);
  --shadow-md: 0 12px 40px rgba(45, 38, 84, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 5.25rem;
  --transition: 0.28s ease;
  --max-w: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--color-indigo);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-teal-hover);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-indigo-deep);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-top: 0;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--color-indigo-deep);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* Layout */
.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--alt {
  background: var(--color-bg-alt);
  background-image: radial-gradient(
    ellipse 120% 80% at 50% 0%,
    rgba(95, 183, 185, 0.06) 0%,
    transparent 55%
  );
}

.section__intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section__intro p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.22s ease;
}

.btn--primary {
  background: var(--color-teal);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(95, 183, 185, 0.35);
}

.btn--primary:hover {
  background: var(--color-teal-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(95, 183, 185, 0.45);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(95, 183, 185, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-indigo);
  border: 2px solid var(--color-indigo);
  border-radius: var(--radius);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--color-indigo);
  color: #fff;
  box-shadow: 0 6px 20px rgba(72, 61, 139, 0.25);
  transform: translateY(-2px);
}

.btn--outline:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

/* Header — scroll-linked shadow (CSS scroll-driven animations) + fallback */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(45, 38, 84, 0);
}

@keyframes site-header-elevate {
  from {
    box-shadow: 0 0 0 rgba(45, 38, 84, 0);
    border-bottom-color: transparent;
  }

  to {
    box-shadow: 0 10px 36px rgba(45, 38, 84, 0.12);
    border-bottom-color: var(--color-border);
  }
}

@supports (animation-timeline: scroll()) {
  .site-header {
    animation: site-header-elevate linear both;
    animation-timeline: scroll(root);
    animation-range: 0 6.25rem;
  }
}

@supports not (animation-timeline: scroll()) {
  .site-header {
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.5rem 0;
  width: min(100% - 1.5rem, var(--max-w));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-indigo-deep);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo:hover {
  color: var(--color-indigo);
}

.logo:hover .logo__img {
  opacity: 0.92;
}

.logo__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(72, 61, 139, 0.12);
}

@media (max-width: 380px) {
  .logo__img {
    width: 52px;
    height: 52px;
  }
}

/* Checkbox: visually hidden but focusable */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.nav-toggle-label {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--color-border);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--color-indigo-deep);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-label span {
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -7px;
}

.nav-toggle-label span::after {
  top: 7px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list > li > a,
.nav-list > li > .nav-dropdown-trigger {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-indigo-deep);
  border-radius: var(--radius-sm);
  transition:
    background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.35s ease;
}

.nav-list > li > a:hover,
.nav-list > li > .nav-dropdown-trigger:hover {
  background: var(--color-teal-soft);
  color: var(--color-teal-hover);
}

.nav-list a[aria-current="page"] {
  color: var(--color-indigo);
  background: var(--color-teal-soft);
}

.nav-list > li.nav-list__book > a {
  margin-left: 0.45rem;
  color: #fff;
  background: linear-gradient(135deg, #5fb7b9 0%, #483d8b 100%);
  box-shadow: 0 8px 20px rgba(72, 61, 139, 0.3);
}

.nav-list > li.nav-list__book > a:hover {
  color: #fff;
  background: linear-gradient(135deg, #59bfc0 0%, #3f356f 100%);
}

/* Dropdown */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  width: 100%;
  text-align: left;
  color: inherit;
}

@media (min-width: 901px) {
  .nav-dropdown-trigger::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.35rem;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.65;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 200;
  }

  .nav-item--dropdown:hover .dropdown-menu,
  .nav-item--dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 0.65rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--color-text);
    border-radius: 0;
  }

  .dropdown-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-teal-hover);
  }

  .dropdown-menu a[aria-current="page"] {
    color: var(--color-indigo);
    background: var(--color-teal-soft);
  }
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle-label {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(45, 38, 84, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    pointer-events: none;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    padding: 1rem 1.25rem 2rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    margin-top:250px;
  }

  .nav-list > li > a,
  .nav-list > li > .nav-dropdown-trigger {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-item--dropdown .nav-dropdown-trigger {
    cursor: pointer;
    width: 100%;
  }

  .dropdown-menu {
    display: none;
    margin: 0;
    padding: 0 0 0.75rem 0.75rem;
    list-style: none;
    border-left: 2px solid var(--color-teal);
  }

  .dropdown-menu a {
    display: block;
    padding: 0.55rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
  }

  .nav-item--dropdown:focus-within .dropdown-menu,
  .nav-item--dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a[aria-current="page"] {
    color: var(--color-indigo);
    font-weight: 700;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4rem 1rem;
  overflow: hidden;
}

/* Home hero — background slider */
.hero .hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .hero-slider__slides {
  position: absolute;
  inset: 0;
}

.hero .hero-slider__slide {
  position: absolute;
  inset: 0;
  background-color: var(--color-indigo-deep);
  background-image: var(--hero-slide-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.95s ease, visibility 0.95s ease;
}

.hero .hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* Hero slide images — URLs here so they resolve relative to this file (../assets/), not /css/ */
.hero .hero-slider__slide--1 {
  --hero-slide-bg: url("../assets/hero-slider-river-valley-village.png");
}

.hero .hero-slider__slide--2 {
  --hero-slide-bg: url("../assets/hero-slider-resort-garden-bridge.png");
}


.hero .hero-slider__slide--3 {
  --hero-slide-bg: url("../assets/hero-slider-garden-rooms.png");
}

.hero .hero-slider__slide--4 {
  --hero-slide-bg: url("../assets/hero-slider-resort-lounge-dining.png");
}

.hero .hero-slider__slide--5 {
  --hero-slide-bg: url("../assets/hero-slider-resort-exterior-river.png");
}

.hero-slider__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero .hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-indigo-deep);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: background var(--transition), transform 0.2s ease;
}

.hero .hero-slider__nav:hover {
  background: #fff;
  color: var(--color-teal-hover);
}

.hero .hero-slider__nav:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 3px;
}

.hero .hero-slider__nav--prev {
  left: 0.75rem;
}

.hero .hero-slider__nav--next {
  right: 0.75rem;
}

.hero .hero-slider__dots {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  max-width: calc(100% - 2rem);
}

.hero .hero-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(30, 24, 40, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero .hero-slider__dot:hover {
  background: rgba(30, 24, 40, 0.62);
}

.hero .hero-slider__dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
  box-shadow:
    0 0 0 2px rgba(95, 183, 185, 0.85),
    0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero .hero-slider__dot:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .hero .hero-slider__nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.35rem;
  }

  .hero .hero-slider__nav--prev {
    left: 0.4rem;
  }

  .hero .hero-slider__nav--next {
    right: 0.4rem;
  }

  .hero .hero-slider__dots {
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-slider__slide {
    transition-duration: 0.01ms;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 1rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  color: #fff;
  margin: 0 0 1rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 20px rgba(0, 0, 0, 0.55),
    0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero__tagline {
  font-size: 1.15rem;
  opacity: 0.98;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero .btn--primary {
  background: var(--color-teal);
  color: #fff;
}

.hero .btn--primary:hover {
  background: var(--color-teal-hover);
  color: #fff;
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
}

.hero .btn--outline:hover {
  background: #fff;
  color: var(--color-indigo-deep);
}

/* Cards grid */
.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease;
}

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

.card .card__body h3,
.card .card__body h2 {
  transition: color 0.3s ease;
}

.card:hover .card__body h3,
.card:hover .card__body h2 {
  color: var(--color-teal-hover);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.card:hover .card__media img {
  transform: scale(1.08);
}

.card__body {
  padding: 1.5rem 1.35rem 1.75rem;
}

.card__body h3 {
  margin: 0 0 0.5rem;
}

.card__body p {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--color-accent-muted);
  margin-bottom: 1rem;
}

/* Feature strip */
.feature-strip {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  padding: 2rem 0;
}

.feature-strip__item {
  padding: 1rem;
}

.feature-strip__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  color: var(--color-teal);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 3rem;
  border: 1px solid rgba(95, 183, 185, 0.45);
  border-radius: 50%;
}

.feature-strip h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.feature-strip p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Quote / testimonial */
.testimonial {
  background: var(--color-indigo-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-teal);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal-light);
}

/* Page header (inner pages) */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.1) 0%,
    var(--color-bg-alt) 38%,
    var(--color-bg) 100%
  );
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--color-text-muted);
}

/* About page — hero with background photo */
.page-about .about-page-hero.page-hero {
  position: relative;
  min-height: min(48vh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 9vw, 5rem) 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
  border-bottom: none;
}

.page-about .about-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hotel-page-hero-bg.png") center / cover no-repeat;
  z-index: 0;
}

.page-about .about-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 12, 35, 0.72) 0%,
    rgba(45, 38, 84, 0.52) 42%,
    rgba(25, 55, 58, 0.65) 100%
  );
  z-index: 1;
}

.page-about .about-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-about .about-page-hero h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 24px rgba(0, 0, 0, 0.45);
  max-width: 52rem;
  margin-inline: auto;
}

.page-about .about-page-hero .about-breadcrumb-inline {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
}

.page-about .about-page-hero .about-breadcrumb-inline a {
  color: #fff;
}

.page-about .about-page-hero .about-breadcrumb-inline a:hover {
  color: var(--color-teal-light);
}

.page-about .about-page-hero .about-breadcrumb-inline span {
  color: rgba(255, 255, 255, 0.82);
}

/* Tours page — hero with background photo */
.trek-page-hero.page-hero {
  position: relative;
  min-height: min(52vh, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 9vw, 5rem) 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
  border-bottom: none;
}

.trek-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/dayara-peaks-panorama.png") center / cover no-repeat;
  z-index: 0;
}

.trek-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 12, 35, 0.75) 0%,
    rgba(45, 38, 84, 0.55) 42%,
    rgba(25, 55, 58, 0.68) 100%
  );
  z-index: 1;
}

.trek-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.trek-page-hero h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 24px rgba(0, 0, 0, 0.45);
  max-width: 52rem;
  margin-inline: auto;
}

.trek-page-hero .lead {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.trek-page-hero .about-breadcrumb-inline a {
  color: #fff;
}

.trek-page-hero .about-breadcrumb-inline a:hover {
  color: var(--color-teal-light);
}

.trek-page-hero .about-breadcrumb-inline span {
  color: rgba(255, 255, 255, 0.9);
}

.base-camp-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
}

.base-camp-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-slider-river-bridge.png") center / cover no-repeat;
  z-index: 0;
}

.base-camp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    150deg,
    rgba(10, 12, 28, 0.8) 0%,
    rgba(32, 24, 66, 0.62) 46%,
    rgba(19, 52, 58, 0.72) 100%
  );
}

.base-camp-hero__content {
  position: relative;
  z-index: 2;
}

.base-camp-hero h2,
.base-camp-hero .lead,
.base-camp-hero .tour-prose p {
  color: #fff !important;
}

.page-about .about-page-hero .about-page-hero__lead.lead {
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
  .page-about .about-page-hero.page-hero {
    min-height: min(56vh, 420px);
  }
}

/* Spiritual destinations page hero */
.page-spiritual .spiritual-page-hero.page-hero {
  position: relative;
  min-height: clamp(70vh, 82vh, 90vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vw, 7rem) 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
  border-bottom: none;
}

.page-spiritual .spiritual-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/dayara-peaks-panorama.png") center / cover no-repeat;
  transform: scale(1.04);
}

.page-spiritual .spiritual-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    155deg,
    rgba(10, 12, 30, 0.78) 0%,
    rgba(36, 27, 72, 0.56) 48%,
    rgba(24, 56, 61, 0.66) 100%
  );
}

.page-spiritual .spiritual-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-spiritual .spiritual-page-hero h1 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  animation: spiritualHeroFadeUp 0.7s ease both;
}

.page-spiritual .spiritual-page-hero .about-breadcrumb-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.page-spiritual .spiritual-page-hero .about-breadcrumb-inline a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-spiritual .spiritual-page-hero .about-breadcrumb-inline a:hover {
  color: #a7ece5;
}

.page-spiritual .spiritual-page-hero__lead.lead {
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.page-spiritual .spiritual-page-hero__cta {
  margin: 1.2rem 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-spiritual .spiritual-page-hero__cta .btn {
  min-height: 46px;
  padding-inline: 1.35rem;
  box-shadow: 0 12px 26px rgba(18, 28, 66, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-spiritual .spiritual-page-hero__cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(18, 28, 66, 0.32);
}

.page-spiritual .spiritual-page-hero::before,
.page-spiritual .spiritual-page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 68%);
  animation: spiritualGlowFloat 8s ease-in-out infinite;
}

.page-spiritual .spiritual-page-hero::before {
  width: 180px;
  height: 180px;
  top: 18%;
  left: 12%;
}

.page-spiritual .spiritual-page-hero::after {
  width: 130px;
  height: 130px;
  right: 14%;
  bottom: 18%;
  animation-delay: 1.4s;
}

@keyframes spiritualHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spiritualGlowFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translateY(-10px) scale(1.06);
    opacity: 0.95;
  }
}

@media (max-width: 640px) {
  .page-spiritual .spiritual-page-hero.page-hero {
    min-height: 72vh;
    padding-top: 4.75rem;
  }

  .page-spiritual .spiritual-page-hero .about-breadcrumb-inline {
    font-size: 0.8rem;
  }
}

.page-spiritual .spiritual-journey-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3.2rem, 8vw, 4.8rem);
  background: #f7f9ff;
}

.page-spiritual .spiritual-journey-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(239, 210, 138, 0.28) 0%, rgba(239, 210, 138, 0) 45%),
    radial-gradient(circle at 80% 76%, rgba(95, 183, 185, 0.18) 0%, rgba(95, 183, 185, 0) 48%),
    linear-gradient(145deg, rgba(247, 236, 204, 0.34) 0%, rgba(228, 243, 244, 0.35) 100%);
}

.page-spiritual .spiritual-journey-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.page-spiritual .spiritual-journey-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(1.1rem, 3vw, 1.85rem);
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(215, 180, 91, 0.25);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 45px rgba(36, 43, 78, 0.14);
  animation: spiritualCtaFadeUp 0.7s ease both;
}

.page-spiritual .spiritual-journey-cta h2 {
  margin: 0 0 0.62rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0.015em;
  color: #2e2859;
}

.page-spiritual .spiritual-journey-cta__lead.lead {
  margin-inline: auto;
  max-width: 36rem;
  line-height: 1.72;
  color: #5f6481;
}

.page-spiritual .spiritual-journey-cta__actions {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.page-spiritual .spiritual-journey-cta__btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding-inline: 1.15rem;
  border-radius: 999px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.page-spiritual .spiritual-journey-cta__btn--primary {
  color: #1f2047;
  border: 1px solid rgba(215, 180, 91, 0.44);
  background: linear-gradient(140deg, #f8e3a3 0%, #e8c46f 55%, #d7b45b 100%);
  box-shadow: 0 12px 26px rgba(215, 180, 91, 0.35);
}

.page-spiritual .spiritual-journey-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(215, 180, 91, 0.43);
}

.page-spiritual .spiritual-journey-cta__btn--outline {
  color: #3a366a;
  border: 1px solid rgba(58, 54, 106, 0.28);
  background: rgba(255, 255, 255, 0.58);
}

.page-spiritual .spiritual-journey-cta__btn--outline:hover {
  color: #fff;
  background: linear-gradient(145deg, #5c4d95 0%, #493c80 100%);
  border-color: transparent;
  transform: translateY(-2px);
}

.page-spiritual .spiritual-journey-cta::before,
.page-spiritual .spiritual-journey-cta::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 65%);
  animation: spiritualCtaAura 7.2s ease-in-out infinite;
}

.page-spiritual .spiritual-journey-cta::before {
  width: 220px;
  height: 220px;
  left: 10%;
  top: 16%;
}

.page-spiritual .spiritual-journey-cta::after {
  width: 170px;
  height: 170px;
  right: 12%;
  bottom: 12%;
  animation-delay: 1.35s;
}

@keyframes spiritualCtaFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spiritualCtaAura {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    opacity: 0.9;
  }
}

@media (max-width: 560px) {
  .page-spiritual .spiritual-journey-cta__actions .spiritual-journey-cta__btn {
    width: 100%;
  }
}

/* Split layout */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .split--reverse {
    direction: rtl;
  }

  .split--reverse > * {
    direction: ltr;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition:
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease;
}

.split__visual:hover {
  box-shadow: 0 16px 48px rgba(45, 38, 84, 0.14);
}

.split__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.split__visual:hover img {
  transform: scale(1.06);
}

/* Lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 0.85rem;
  top: 0.15rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-detail {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
  margin-bottom: 0.25rem;
}

.contact-premium .contact-grid {
  gap: clamp(1rem, 3vw, 1.35rem);
}

.contact-premium .contact-card {
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 30px rgba(26, 35, 67, 0.1);
}

.contact-card--info {
  background: linear-gradient(170deg, #ffffff 0%, #f6fbfc 100%);
}

.contact-detail--icon {
  margin-bottom: 1rem;
}

.contact-detail--icon strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.contact-detail--icon p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-trust-line {
  margin: 0.9rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(95, 183, 185, 0.34);
  background: rgba(95, 183, 185, 0.1);
  color: #145564;
}

.contact-card__sub {
  margin: -0.2rem 0 0.75rem;
  color: var(--color-text-muted);
}

.contact-quick-actions {
  margin: 0 0 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.contact-quick-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(95, 183, 185, 0.32);
  background: rgba(255, 255, 255, 0.85);
  color: #124f5e;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-quick-actions a:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(26, 35, 67, 0.12);
}

.contact-card--form form {
  display: grid;
  gap: 0.72rem;
}

.contact-form-floating {
  position: relative;
}

.contact-form-floating input,
.contact-form-floating textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 0.8rem 0.52rem;
  background: #fff;
  font: inherit;
  color: var(--color-text);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.contact-form-floating textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-floating label {
  position: absolute;
  left: 0.78rem;
  top: 0.73rem;
  background: #fff;
  padding: 0 0.2rem;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    top 0.2s ease;
  transform-origin: left top;
}

.contact-form-floating input:focus,
.contact-form-floating textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(95, 183, 185, 0.14);
  transform: translateY(-1px);
}

.contact-form-floating input:focus + label,
.contact-form-floating input:not(:placeholder-shown) + label,
.contact-form-floating textarea:focus + label,
.contact-form-floating textarea:not(:placeholder-shown) + label {
  top: -0.42rem;
  transform: scale(0.86);
  color: var(--color-accent-muted);
}

.contact-submit-btn {
  width: 100%;
  min-height: 46px;
}

.contact-form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0.8rem 0 0;
}

/* Booking page — hero with riverside / valley photo */
.page-booking .booking-page-hero.page-hero {
  position: relative;
  min-height: min(44vh, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 9vw, 5rem) 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
  border-bottom: none;
}

.page-booking .booking-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/booking-page-hero-bg.png") center / cover no-repeat;
  z-index: 0;
}

.page-booking .booking-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 12, 35, 0.72) 0%,
    rgba(45, 38, 84, 0.48) 42%,
    rgba(25, 55, 58, 0.68) 100%
  );
  z-index: 1;
}

.page-booking .booking-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-booking .booking-page-hero h1 {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-booking .booking-page-hero__lead {
  color: rgba(255, 255, 255, 0.93);
  max-width: 38rem;
  margin: 0 auto;
}

/* Yoga classes page — hero with river valley / lawn photo */
.page-yoga .yoga-page-hero.page-hero {
  position: relative;
  min-height: min(48vh, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 9vw, 5rem) 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
  border-bottom: none;
}

.page-yoga .yoga-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/yoga-page-hero-bg.png") center / cover no-repeat;
  z-index: 0;
}

.page-yoga .yoga-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 12, 35, 0.72) 0%,
    rgba(36, 27, 72, 0.46) 44%,
    rgba(24, 56, 61, 0.68) 100%
  );
  z-index: 1;
}

.page-yoga .yoga-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-yoga .yoga-page-hero h1 {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.page-yoga .yoga-page-hero .about-breadcrumb-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
}

.page-yoga .yoga-page-hero .about-breadcrumb-inline a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-yoga .yoga-page-hero .about-breadcrumb-inline a:hover {
  color: #a7ece5;
}

.page-yoga .yoga-page-hero__lead.lead {
  max-width: 48rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.page-yoga .yoga-page-hero__lead--season.lead {
  max-width: 40rem;
  margin: 1rem auto 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
}

/* Booking wizard (public/booking.php) — premium redesign */
.page-booking main {
  position: relative;
  isolation: isolate;
}

.page-booking main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 177, 111, 0.16), transparent 42%),
    radial-gradient(circle at 82% 32%, rgba(95, 183, 185, 0.16), transparent 44%),
    radial-gradient(circle at 50% 85%, rgba(72, 61, 139, 0.08), transparent 46%);
}

.booking-premium-section {
  position: relative;
}

.booking-premium-grid {
  gap: clamp(1rem, 2.8vw, 1.5rem);
}

.booking-side-card,
.booking-main-card {
  border-radius: 1.05rem;
  border: 1px solid rgba(212, 177, 111, 0.24);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.28) 0 12px,
      rgba(251, 248, 241, 0.2) 12px 24px
    );
  box-shadow:
    0 14px 36px rgba(24, 30, 59, 0.14),
    0 2px 12px rgba(24, 30, 59, 0.08);
}

.booking-main-card {
  position: relative;
  overflow: hidden;
}

.booking-main-card::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  top: -2.4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 177, 111, 0.24), rgba(212, 177, 111, 0));
  pointer-events: none;
}

.booking-main-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #8a6a2e;
}

.page-booking .booking-wizard {
  margin-top: 0.35rem;
}

.booking-wizard__track {
  list-style: none;
  margin: 0 0 1.45rem;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  counter-reset: bw-step;
}

.booking-wizard__track li {
  flex: 1;
  text-align: center;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.booking-wizard__track li span {
  display: block;
  line-height: 1.3;
  margin-top: 0.45rem;
}

.booking-wizard__track li::before {
  counter-increment: bw-step;
  content: counter(bw-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(145deg, #fbfcff, #eff2f9);
  border: 1px solid rgba(72, 61, 139, 0.2);
  color: var(--color-text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.booking-wizard__track li.is-done {
  color: var(--color-indigo-mid);
}

.booking-wizard__track li.is-done::before {
  content: "✓";
  font-size: 0.96rem;
  background: linear-gradient(145deg, rgba(95, 183, 185, 0.28), rgba(95, 183, 185, 0.1));
  border-color: rgba(95, 183, 185, 0.58);
  color: var(--color-indigo-deep);
}

.booking-wizard__track li.is-active {
  color: #7d5d25;
}

.booking-wizard__track li.is-active::before {
  background: linear-gradient(145deg, #d9b978, #b88d42);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 7px 20px rgba(184, 141, 66, 0.34);
  transform: translateY(-2px);
}

.booking-wizard__error {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff5f5;
  border: 1px solid #e8a0a0;
  color: #8b2e2e;
  font-size: 0.92rem;
}

.booking-wizard__panel {
  margin-top: 0.4rem;
  display: none !important;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.booking-wizard__panel.is-active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.booking-wizard__panel-title {
  margin: 0 0 0.95rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.page-booking .contact-form-floating {
  margin-bottom: 0.2rem;
}

.page-booking .contact-form-floating input,
.page-booking .contact-form-floating textarea,
.booking-wizard__select {
  border-radius: 0.85rem;
  border-color: rgba(72, 61, 139, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.page-booking .contact-form-floating input[type="date"] {
  min-height: 3.15rem;
  padding-top: 1.25rem;
  font-size: 1.02rem;
  font-weight: 600;
}

.page-booking .contact-form-floating input:focus,
.page-booking .contact-form-floating textarea:focus,
.booking-wizard__select:focus {
  outline: none;
  border-color: rgba(184, 141, 66, 0.72);
  box-shadow:
    0 0 0 3px rgba(212, 177, 111, 0.22),
    0 8px 20px rgba(184, 141, 66, 0.14);
  transform: translateY(-1px);
}

.booking-wizard__select-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.42rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7f6431;
}

.booking-wizard__select {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.booking-wizard__summary {
  background: linear-gradient(165deg, #fcf9f2 0%, #f4f8fc 100%);
  border: 1px solid rgba(184, 141, 66, 0.26);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.58;
}

.booking-wizard__summary-row {
  display: grid;
  grid-template-columns: 8.3rem 1fr;
  gap: 0.35rem 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(72, 61, 139, 0.09);
}

.booking-wizard__summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.booking-wizard__summary-k {
  font-weight: 700;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7f6431;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.booking-wizard__summary-k i {
  color: #b88d42;
  width: 0.95rem;
  text-align: center;
}

.booking-wizard__summary-v {
  margin: 0;
  color: var(--color-text);
}

.booking-wizard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.08rem;
  align-items: center;
}

.booking-wizard__actions .btn--primary {
  flex: 1 1 10rem;
  min-height: 47px;
  background: linear-gradient(135deg, #d3ac62, #b88d42);
  border-radius: 0.82rem;
  box-shadow: 0 8px 24px rgba(184, 141, 66, 0.27);
}

.booking-wizard__actions .btn--primary:hover {
  background: linear-gradient(135deg, #ddb973, #c1964c);
  box-shadow: 0 12px 28px rgba(184, 141, 66, 0.35);
}

.booking-wizard__actions .btn--outline {
  flex: 0 1 auto;
  min-height: 47px;
  border-radius: 0.82rem;
}

.booking-submit__spinner {
  display: none;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: booking-spin 0.8s linear infinite;
}

.booking-submit__label {
  display: inline-block;
}

#bw-submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

#bw-submit.is-loading .booking-submit__label {
  opacity: 0.82;
}

#bw-submit.is-loading .booking-submit__spinner {
  display: inline-block;
}

@keyframes booking-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .booking-main-card__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .booking-wizard__track li {
    font-size: 0.61rem;
  }

  .booking-wizard__track li::before {
    width: 1.9rem;
    height: 1.9rem;
  }

  .booking-wizard__panel-title {
    font-size: 0.98rem;
  }

  .page-booking .contact-form-floating input[type="date"] {
    min-height: 2.85rem;
    font-size: 0.96rem;
  }

  .booking-wizard__summary-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .booking-wizard__actions .btn--primary,
  .booking-wizard__actions .btn--outline {
    min-height: 42px;
  }
}

.contact-map-section__lead {
  max-width: 36rem;
  margin-inline: auto;
}

.contact-map-embed {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(26, 35, 67, 0.12);
}

.contact-map-embed__label {
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  left: 0.85rem;
  border-radius: 999px;
  padding: 0.32rem 0.66rem;
  background: rgba(16, 23, 51, 0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px var(--color-teal-soft);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  width: 100%;
  min-height: 280px;
  border: none;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
}

/* Footer — reference layout: image + dark overlay, 3 columns */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
  margin-top: auto;
  background: linear-gradient(180deg, var(--color-indigo-deep) 0%, #1e1838 100%);
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: var(--color-teal-light);
}

.footer-grid--main {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .footer-grid--main {
    grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.85fr) minmax(220px, 1fr);
    gap: 2.5rem 2rem;
  }
}

.footer-col--brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.footer-site-title {
  font-family: var(--font-footer-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
  max-width: 28rem;
}

.footer-heading {
  font-family: var(--font-footer-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.1rem;
}

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

.footer-menu li {
  margin-bottom: 0.55rem;
}

.footer-menu a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
}

.footer-col--contact .footer-contact-org {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
  color: #fff;
}

.footer-contact-lines {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact-label {
  font-weight: 600;
  margin-right: 0.35rem;
}

.footer-contact-sep {
  opacity: 0.7;
  margin: 0 0.2rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.social.social--square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 4px;
  background: rgba(95, 183, 185, 0.55);
  border: 1px solid rgba(143, 212, 214, 0.4);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition), transform 0.2s ease, color var(--transition);
}

.social.social--square:hover {
  background: var(--color-teal);
  color: #fff;
  transform: translateY(-2px);
}

.social.social--square .social__glyph {
  font-family: var(--font-heading);
  line-height: 1;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Page shell for sticky footer */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page main {
  flex: 1;
}

/* Tour detail */
.tour-facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 1.5rem 0 0;
}

.tour-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
  margin-bottom: 0.2rem;
}

.tour-facts dd {
  margin: 0;
  font-weight: 600;
  color: var(--color-indigo-deep);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-lg {
  margin-bottom: 2rem;
}

/* —— Home & shared blocks —— */
.grid-4 {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.room-card__price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-teal-hover);
  margin: 0 0 0.75rem;
}

.room-card__price small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.room-card__blurb {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 1.25rem;
}

.room-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.room-card__features li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.35rem;
}

.room-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-teal);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Home — premium rooms showcase */


.rooms-showcase__strip {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(
    120deg,
    rgba(95, 183, 185, 0.14) 0%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(72, 61, 139, 0.1) 100%
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.rooms-showcase__strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.75rem;
}

.rooms-showcase__strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-indigo-deep);
}

.rooms-showcase__strip-item i {
  color: var(--color-teal);
  font-size: 0.95rem;
}

.rooms-showcase__track {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding: 0.35rem 0 1rem;
  margin-inline: calc(-1 * min(1.5rem, 4vw));
  padding-inline: min(1.5rem, 4vw);
  -webkit-overflow-scrolling: touch;
}

.rooms-showcase__track::-webkit-scrollbar {
  height: 6px;
}

.rooms-showcase__track::-webkit-scrollbar-thumb {
  background: rgba(72, 61, 139, 0.25);
  border-radius: 999px;
}

@media (min-width: 900px) {
  .rooms-showcase__track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }
}

.room-preview {
  flex: 0 0 min(calc(100vw - 3rem), 420px);
  scroll-snap-align: center;
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    0 4px 24px rgba(45, 38, 84, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

@media (min-width: 900px) {
  .room-preview {
    flex: none;
    scroll-snap-align: unset;
  }
}

.room-preview:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 48px rgba(45, 38, 84, 0.14),
    0 0 0 1px rgba(95, 183, 185, 0.2);
  border-color: rgba(95, 183, 185, 0.35);
}

.room-preview__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-indigo-deep);
}

.room-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.room-preview:hover .room-preview__media img {
  transform: scale(1.07);
}

.room-preview__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 26, 0.15) 0%,
    rgba(12, 10, 26, 0.35) 40%,
    rgba(12, 10, 26, 0.78) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.room-preview__top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  pointer-events: none;
}

.room-preview__badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.room-preview__badge--soft {
  background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-indigo-mid) 100%);
}

.room-preview__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.room-preview__stars {
  color: #f4d03f;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.room-preview__rating strong {
  font-size: 0.88rem;
}

.room-preview__image-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.25rem 1.35rem;
  text-align: left;
  pointer-events: none;
}

.room-preview__name {
  margin: 0 0 0.25rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.room-preview__price-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.room-preview__amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.room-preview__per {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.room-preview__hover-cta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 1.25rem 1.25rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.room-preview:hover .room-preview__hover-cta,
.room-preview:focus-within .room-preview__hover-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.room-preview__hover-btn {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.room-preview__body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.room-preview__highlights {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.room-preview__highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.room-preview__highlights i {
  width: 1.1rem;
  text-align: center;
  color: var(--color-teal);
  font-size: 0.9rem;
}

.room-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.room-preview__actions .btn {
  flex: 1 1 auto;
  min-width: 8.5rem;
  justify-content: center;
}

@media (max-width: 420px) {
  .room-preview__actions .btn {
    min-width: 100%;
  }
}

.rooms-showcase__compare {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.rooms-showcase__compare-summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-indigo-deep);
  list-style: none;
}

.rooms-showcase__compare-summary::-webkit-details-marker {
  display: none;
}

.rooms-showcase__compare-summary::after {
  content: " +";
  color: var(--color-teal);
  font-weight: 700;
}

.rooms-showcase__compare[open] .rooms-showcase__compare-summary::after {
  content: " −";
}

.rooms-showcase__compare-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.rooms-showcase__compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.rooms-showcase__compare-table th,
.rooms-showcase__compare-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.rooms-showcase__compare-table thead th {
  font-weight: 700;
  color: var(--color-indigo-deep);
  background: var(--color-bg-alt);
}

.rooms-showcase__compare-table tbody th {
  font-weight: 600;
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .room-preview,
  .room-preview__media img,
  .room-preview__hover-cta {
    transition-duration: 0.01ms !important;
  }

  .room-preview:hover {
    transform: none;
  }

  .room-preview:hover .room-preview__media img {
    transform: none;
  }
}

/* Home — Tours & Trekking — wider band + Swiper carousel */
.tours-showcase .container {
  width: min(100% - 2rem, 78rem);
  max-width: 78rem;
}

.tours-showcase .section__intro {
  margin-inline: auto;
  text-align: center;
}

.tours-showcase__carousel {
  position: relative;
  margin-top: 0.35rem;
  padding: 1.35rem min(0.35rem, 1.5vw) 1.35rem;
}

@media (min-width: 768px) {
  .tours-showcase__carousel {
    padding-inline: clamp(1rem, 2.2vw, 2.25rem);
  }
}

@media (min-width: 1200px) {
  .tours-showcase__carousel {
    padding-inline: clamp(0.85rem, 1.75vw, 1.85rem);
  }
}

.tours-swiper {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.tours-swiper .swiper-wrapper {
  align-items: stretch;
}

.tours-swiper .swiper-slide {
  display: flex;
  height: auto;
  box-sizing: border-box;
  padding-top: 0.2rem;
}

.tours-swiper .swiper-slide .tour-preview {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.tours-swiper-nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-indigo-deep);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 6px 22px rgba(45, 38, 84, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.2s ease;
}

.tours-swiper-nav:hover {
  background: #fff;
  box-shadow:
    0 10px 32px rgba(45, 38, 84, 0.18),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

@media (max-width: 767px) {
  .tours-swiper-nav:hover {
    transform: scale(1.08);
  }
}

.tours-swiper-nav:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

.tours-swiper-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.tours-swiper-nav--prev {
  left: 0.15rem;
}

.tours-swiper-nav--next {
  right: 0.15rem;
}

@media (min-width: 768px) {
  .tours-swiper-nav {
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1rem;
  }

  .tours-swiper-nav--prev {
    left: 0.05rem;
    transform: translateX(-40%) translateY(-50%);
  }

  .tours-swiper-nav--next {
    right: 0.05rem;
    transform: translateX(40%) translateY(-50%);
  }

  .tours-swiper-nav--prev:hover:not(.swiper-button-disabled) {
    transform: translateX(-40%) translateY(-50%) scale(1.08);
  }

  .tours-swiper-nav--next:hover:not(.swiper-button-disabled) {
    transform: translateX(40%) translateY(-50%) scale(1.08);
  }
}

.tour-preview {
  background: #fff;
  border-radius: calc(var(--radius) + 12px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(45, 38, 84, 0.1);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.35s ease;
}

.tour-preview:focus-within {
  transform: translateY(-12px);
  box-shadow:
    0 28px 60px rgba(45, 38, 84, 0.18),
    0 0 0 1px rgba(95, 183, 185, 0.35);
  border-color: rgba(95, 183, 185, 0.35);
}

.tour-preview--bestseller {
  /* Same treatment as other cards — no gold ring */
  box-shadow: 0 10px 40px rgba(45, 38, 84, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-preview--bestseller:focus-within {
  box-shadow:
    0 28px 60px rgba(45, 38, 84, 0.18),
    0 0 0 1px rgba(95, 183, 185, 0.35);
  border-color: rgba(95, 183, 185, 0.35);
}

.tour-preview__media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: min(480px, 64vh);
  min-height: min(330px, 50vh);
  overflow: hidden;
  background: var(--color-indigo-deep);
}

@media (min-width: 700px) {
  .tour-preview__media {
    max-height: min(520px, 66vh);
    min-height: 22.5rem;
    aspect-ratio: 4 / 5;
  }
}

.tour-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-preview:focus-within .tour-preview__media img {
  transform: scale(1.1);
}

.tour-preview__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    rgba(8, 6, 22, 0.05) 0%,
    rgba(8, 6, 22, 0.2) 35%,
    rgba(8, 6, 22, 0.82) 100%
  );
  pointer-events: none;
}

.tour-preview__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0.85rem 0;
  pointer-events: none;
}

.tour-preview__location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.tour-preview__location i {
  color: var(--color-teal-light);
  font-size: 0.75rem;
}

.tour-preview__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  max-width: 62%;
}

.tour-preview__badge {
  padding: 0.28rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #c0392b 0%, #e67e22 100%);
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tour-preview__badge--mint {
  background: linear-gradient(135deg, #1e8449 0%, #5fb7b9 100%);
}

.tour-preview__badge--warn {
  background: linear-gradient(135deg, #6c3483 0%, #483d8b 100%);
}

.tour-preview__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.65rem 1rem 1.05rem;
  pointer-events: none;
}

.tour-preview__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.5rem;
}

.tour-preview__meta--badges {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: clamp(5.35rem, 24%, 6.75rem);
  z-index: 2;
  margin-bottom: 0;
  gap: 0.4rem 0.55rem;
  pointer-events: none;
}

.tour-preview__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.tour-preview__meta--badges span {
  padding: 0.4rem 0.72rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: none;
  background: rgba(12, 10, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.tour-preview__meta--badges span i {
  opacity: 0.9;
  font-size: 0.7rem;
}

.tour-preview__meta i {
  color: var(--color-teal-light);
  font-size: 0.72rem;
  opacity: 0.95;
}

.tour-preview__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.tour-preview__highlights {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.tour-preview__hover-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(10, 8, 24, 0.92) 0%, transparent 100%);
}

.tour-preview:focus-within .tour-preview__hover-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tour-preview__btn-ghost {
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.tour-preview__btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
}

.tour-preview__hover-cta .btn {
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.55rem 0.9rem;
}

.tour-preview__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.4rem 1.5rem;
  background: #fff;
}

.tour-preview__bottom {
  min-height: 7.2rem;
}

.tour-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tour-preview__actions .btn {
  flex: 1 1 auto;
  min-width: 6.5rem;
  justify-content: center;
  font-size: 0.78rem;
  padding: 0.65rem 1rem;
}

@media (max-width: 380px) {
  .tour-preview__actions .btn {
    min-width: 100%;
  }
}

/* Trek booking banner (after tours) */
.trek-cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.75rem, 4.5vw, 2.75rem) 0;
  margin-top: 0.25rem;
}

.trek-cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../assets/hotel-page-hero-bg.png") center / cover no-repeat,
    var(--color-indigo-deep);
  transform: scale(1.02);
  transition: transform 8s ease;
}

.trek-cta-banner:hover .trek-cta-banner__bg {
  transform: scale(1.06);
}

.trek-cta-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(10, 8, 28, 0.88) 0%,
    rgba(35, 30, 65, 0.78) 48%,
    rgba(20, 60, 62, 0.82) 100%
  );
  pointer-events: none;
}

.trek-cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem 2rem;
}

.trek-cta-banner__text {
  flex: 1 1 min(100%, 28rem);
  color: #fff;
}

.trek-cta-banner__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.trek-cta-banner__stars {
  color: #f4d03f;
  letter-spacing: 0.06em;
}

.trek-cta-banner__headline {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.trek-cta-banner__emphasis {
  color: var(--color-teal-light);
}

.trek-cta-banner__sub {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

.trek-cta-banner__cta {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  min-width: min(100%, 17rem);
}

.trek-cta-banner__gradient-btn {
  text-align: center;
  animation: trek-cta-shine 4.5s ease-in-out infinite;
}

@keyframes trek-cta-shine {
  0%,
  100% {
    box-shadow:
      0 8px 28px rgba(45, 38, 84, 0.32),
      0 3px 12px rgba(95, 183, 185, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  50% {
    box-shadow:
      0 12px 36px rgba(95, 183, 185, 0.45),
      0 4px 16px rgba(90, 79, 176, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

.trek-cta-banner__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 22px rgba(18, 140, 126, 0.35);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.trek-cta-banner__wa:hover {
  color: #fff !important;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

@media (max-width: 720px) {
  .trek-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .trek-cta-banner__trust {
    justify-content: center;
  }

  .trek-cta-banner__cta {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-preview,
  .tour-preview__media img,
  .tour-preview__hover-cta,
  .trek-cta-banner__bg {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }

  .tour-preview:hover .tour-preview__media img,
  .tour-preview:focus-within .tour-preview__media img {
    transform: none;
  }

  .tour-preview:hover,
  .tour-preview:focus-within {
    transform: none;
  }

  .trek-cta-banner:hover .trek-cta-banner__bg {
    transform: scale(1.02);
  }
}

.why-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 980px) {
  .why-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  }
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform 0.3s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  line-height: 3.25rem;
  border-radius: 50%;
  background: var(--color-teal-soft);
  color: var(--color-indigo-deep);
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.why-booking-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: sticky;
  top: 5.25rem;
}

.why-booking-card__eyebrow {
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--color-accent-muted);
  font-weight: 700;
}

.why-booking-card__title {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  color: var(--color-indigo-deep);
}

.why-booking-card__phone {
  display: block;
  width: 100%;
  margin: 0.45rem 0 0;
  padding: 0.7rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5fb7b9 0%, #483d8b 100%);
}

.hotel-why-side {
  display: grid;
  gap: 1rem;
}

.why-booking-card--inline {
  position: static;
  top: auto;
}

.page-hotel .hotel-why-premium .split {
  align-items: stretch;
  gap: clamp(1rem, 2.6vw, 1.5rem);
}

.page-hotel .hotel-why-premium__content h2 {
  margin-bottom: 0.55rem;
}

.page-hotel .hotel-why-premium__lead {
  margin: 0;
  max-width: 44rem;
  color: var(--color-text-muted);
}

.page-hotel .hotel-why-premium__badges {
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page-hotel .hotel-why-premium__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 183, 185, 0.34);
  background: rgba(95, 183, 185, 0.1);
  color: #145564;
  font-size: 0.78rem;
  font-weight: 700;
}

.page-hotel .hotel-why-premium__grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.page-hotel .hotel-why-premium__card {
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  box-shadow: 0 9px 24px rgba(26, 35, 67, 0.09);
  padding: 0.85rem 0.9rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .page-hotel .hotel-why-premium__card {
    opacity: 0;
    transform: translateY(14px);
    animation: hotelWhyFadeUp 0.55s ease forwards;
  }

  .page-hotel .hotel-why-premium__card:nth-child(2) {
    animation-delay: 0.06s;
  }

  .page-hotel .hotel-why-premium__card:nth-child(3) {
    animation-delay: 0.12s;
  }

  .page-hotel .hotel-why-premium__card:nth-child(4) {
    animation-delay: 0.18s;
  }

  .page-hotel .hotel-why-premium__card:nth-child(5) {
    animation-delay: 0.24s;
  }

  .page-hotel .hotel-why-premium__card:nth-child(6) {
    animation-delay: 0.3s;
  }
}

.page-hotel .hotel-why-premium__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 183, 185, 0.44);
  box-shadow: 0 14px 29px rgba(26, 35, 67, 0.12);
}

.page-hotel .hotel-why-premium__card i {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.48rem;
  color: #1f6f7d;
  background: linear-gradient(140deg, rgba(95, 183, 185, 0.2), rgba(167, 121, 247, 0.14));
}

.page-hotel .hotel-why-premium__card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.page-hotel .hotel-why-premium__card p {
  margin: 0.28rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.page-hotel .hotel-why-side {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.page-hotel .hotel-why-side__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 18, 42, 0.08), rgba(14, 18, 42, 0.36));
}

.page-hotel .hotel-why-side img {
  min-height: 100%;
}

.page-hotel .hotel-why-cta {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 30px rgba(14, 18, 42, 0.24);
}

.page-hotel .hotel-why-cta .why-booking-card__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  font-size: 0.98rem;
}

@media (min-width: 760px) {
  .page-hotel .hotel-why-premium__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .page-hotel .hotel-why-premium__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .page-hotel .hotel-why-cta {
    position: static;
    margin: 0.85rem 0 0;
  }
}

@keyframes hotelWhyFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-teal);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text);
}

.testimonial-card h3 + blockquote {
  border-left: 3px solid var(--color-teal);
  padding-left: 1rem;
}

.testimonial-card__author {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-indigo);
}

.cta-banner {
  position: relative;
  padding: clamp(3.5rem, 10vw, 5rem) 1.5rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(45, 38, 84, 0.88) 0%,
      rgba(72, 61, 139, 0.72) 50%,
      rgba(45, 95, 120, 0.8) 100%
    ),
    var(--cta-img, url("../assets/resort-river-bridge.png"))
      center / cover no-repeat;
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  max-width: 28rem;
  margin-inline: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  max-width: 32rem;
  margin-inline: auto;
}

.cta-banner .btn--primary {
  background: var(--color-teal);
  color: #fff;
}

/* Tour detail page */
.tour-hero {
  position: relative;
  min-height: min(48vh, 440px);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0 3rem;
  color: #fff;
  isolation: isolate;
}

.tour-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      165deg,
      rgba(45, 38, 84, 0.82) 0%,
      rgba(72, 61, 139, 0.5) 45%,
      rgba(20, 30, 55, 0.85) 100%
    ),
    var(--hero-img) center / cover no-repeat;
  z-index: 0;
}

.tour-hero .container {
  position: relative;
  z-index: 1;
}

.tour-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin: 0 0 0.5rem;
}

.tour-hero h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  max-width: 40rem;
}

.tour-hero .lead {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 36rem;
}

.tour-hero__package-line {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.75rem;
}

.tour-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.35rem;
}

.tour-hero__price {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-teal-light);
}

.tour-hero__price small {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

.tour-hero__phone {
  font-weight: 600;
  color: #fff;
}

.tour-hero__phone:hover {
  color: var(--color-teal-light);
}

.tour-specs-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  margin-bottom: 0.5rem;
}

.tour-spec-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.tour-spec-tile h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
  margin: 0 0 0.45rem;
}

.tour-spec-tile p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.tour-prose {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.tour-prose p {
  margin: 0 0 1rem;
}

.tour-prose > h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.trek-hub-prose h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--color-indigo-deep);
}

.trek-hub-prose h3:first-child {
  margin-top: 0;
}

.trek-hub-prose .btn {
  margin-top: 0.35rem;
}

.trek-hub-groups {
  display: grid;
  gap: 1.5rem;
}

.trek-hub-group {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.trek-hub-group__header {
  margin-bottom: 0.85rem;
}

.trek-hub-group__label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.trek-hub-group__header h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--color-indigo-deep);
}

.trek-hub-cards {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .trek-hub-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.trek-hub-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 38, 84, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trek-hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 183, 185, 0.45);
  box-shadow: 0 14px 32px rgba(45, 38, 84, 0.14);
}

.trek-hub-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.trek-hub-card__body {
  padding: 0.7rem 0.75rem 0.75rem 0;
}

.trek-hub-card__body h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-indigo-deep);
}

.trek-hub-card__meta {
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
}

.trek-hub-card__meta span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-indigo);
  background: rgba(95, 183, 185, 0.17);
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
}

.trek-hub-card__desc {
  margin: 0 0 0.38rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trek-hub-card__specs {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  color: var(--color-accent-muted);
  font-weight: 600;
}

.trek-hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-indigo);
}

.trek-hub-card__cta:hover {
  color: var(--color-teal-hover);
}

.trek-hub-expert-cta {
  margin: 1.1rem 0 0;
  text-align: center;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trek-hub-expert-cta a {
  margin-left: 0.4rem;
  color: var(--color-indigo);
  font-weight: 700;
}

.featured-packages__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .featured-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .featured-packages__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.featured-package-card {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(45, 38, 84, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(95, 183, 185, 0.5);
  box-shadow: 0 16px 34px rgba(45, 38, 84, 0.14);
}

.featured-package-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-indigo-deep);
}

.featured-package-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-package-card:hover .featured-package-card__media img {
  transform: scale(1.08);
}

.featured-package-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #1f9b7f 0%, #5fb7b9 100%);
}

.featured-package-card__badge--alt {
  background: linear-gradient(120deg, #5a4fb0 0%, #483d8b 100%);
}

.featured-package-card__body {
  padding: 0.95rem 0.95rem 1.05rem;
}

.featured-package-card__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  color: var(--color-indigo-deep);
}

.featured-package-card__meta {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  color: var(--color-accent-muted);
  font-weight: 600;
}

.featured-package-card__desc {
  margin: 0 0 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.featured-package-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: rgba(95, 183, 185, 0.16);
  color: var(--color-indigo);
  font-weight: 700;
  font-size: 0.84rem;
}

.featured-package-card__cta:hover {
  background: rgba(95, 183, 185, 0.26);
  color: var(--color-teal-hover);
}

.overview-cols {
  display: grid;
  gap: 1.5rem 2.5rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0 0;
}

@media (min-width: 768px) {
  .overview-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.overview-cols ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
}

.overview-cols li {
  margin-bottom: 0.5rem;
}

.highlights-numbered {
  counter-reset: hi;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.highlights-numbered li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.highlights-numbered li::before {
  counter-increment: hi;
  content: counter(hi);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--color-teal-soft);
  color: var(--color-indigo-deep);
  border-radius: 50%;
}

.itinerary-detail {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.itinerary-detail h3 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--color-indigo-deep);
}

.itinerary-detail ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

.itinerary-detail li {
  margin-bottom: 0.35rem;
}

/* Itinerary accordion — semantic <details> / <summary> (no JavaScript) */
.itinerary-acc {
  margin-bottom: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.itinerary-acc:last-of-type {
  margin-bottom: 0;
}

.itinerary-acc[open] {
  box-shadow: var(--shadow-md);
}

.itinerary-acc__summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, var(--color-bg-alt), var(--color-surface));
  color: var(--color-indigo-deep);
  transition: background-color 0.2s ease;
}

.itinerary-acc__summary::-webkit-details-marker {
  display: none;
}

.itinerary-acc__summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-teal-hover);
  line-height: 1.2;
}

.itinerary-acc[open] > .itinerary-acc__summary::after {
  content: "–";
}

.itinerary-acc__summary:hover {
  background: var(--color-bg-alt);
}

.itinerary-acc__panel {
  border-top: 1px solid var(--color-border);
}

.page-trek-split .itinerary-acc__panel .tour-split__inner {
  padding: clamp(1rem, 3vw, 1.75rem) 0;
}

.itinerary-acc__text {
  padding: 1.15rem 1.35rem 1.35rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.itinerary-acc__text p {
  margin: 0;
}

.itinerary-acc__stack {
  padding: 0 0 0.5rem;
}

.itinerary-acc__panel .itinerary-detail {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.25rem 1.35rem 1.5rem;
}

.itinerary-acc__panel .itinerary-detail h3 {
  display: none;
}

.dayara-itin-p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.dayara-itin-foot {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.harsil-itin-intro {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.reach-block {
  margin-bottom: 1.75rem;
}

.reach-block h3 {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
}

.reach-block ul,
.reach-block ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
}

.reach-block li {
  margin-bottom: 0.45rem;
}

.tour-ol-detail {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.tour-ol-detail li {
  margin-bottom: 0.65rem;
}

.tour-ol-detail ol,
.tour-ol-detail ul {
  margin-top: 0.35rem;
}

.policy-block {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-top: 1rem;
}

.policy-block h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.policy-block h3:first-child {
  margin-top: 0;
}

.policy-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
}

.policy-block li {
  margin-bottom: 0.45rem;
}

/* About page */
.about-amenity-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
}

.about-amenity {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-amenity h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.35rem 0 0;
  color: var(--color-indigo-deep);
}

.about-amenity__icon {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-teal);
}

.about-video-cta {
  margin-top: 1.25rem;
}

.about-breadcrumb-inline {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}

.about-breadcrumb-inline a {
  font-weight: 600;
}

.page-about .about-who-split {
  align-items: center;
}

.page-about .about-who-split__intro h2 {
  margin-bottom: 1rem;
}

.itinerary {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: day;
}

.itinerary__day {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  margin-bottom: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.itinerary__day::before {
  counter-increment: day;
  content: counter(day);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--color-teal-soft);
  color: var(--color-indigo-deep);
  border-radius: 50%;
}

.itinerary__day strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-indigo-deep);
  margin-bottom: 0.35rem;
}

.itinerary__day p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.inc-exc {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .inc-exc {
    grid-template-columns: 1fr 1fr;
  }
}

.inc-exc__box {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.inc-exc__box--in {
  background: rgba(95, 183, 185, 0.08);
}

.inc-exc__box--ex {
  background: var(--color-bg-alt);
}

.inc-exc__box h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
  gap: 0.75rem;
}

.gallery-grid__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.map-placeholder-contact {
  min-height: 280px;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
      -45deg,
      var(--color-bg-alt),
      var(--color-bg-alt) 8px,
      rgba(95, 183, 185, 0.12) 8px,
      rgba(95, 183, 185, 0.12) 16px
    );
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
}

/* Hotel Uttarkashi page — hero with riverside property photo */
.page-hotel .hotel-page-hero.page-hero {
  position: relative;
  min-height: min(52vh, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 10vw, 5.5rem) 1rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
  border-bottom: none;
}

.page-hotel .hotel-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hotel-page-hero-bg.png") center / cover no-repeat;
  z-index: 0;
}

.page-hotel .hotel-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 12, 35, 0.75) 0%,
    rgba(45, 38, 84, 0.55) 40%,
    rgba(25, 55, 58, 0.7) 100%
  );
  z-index: 1;
}

.page-hotel .hotel-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hotel .hotel-page-hero h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  max-width: 52rem;
  margin-inline: auto;
}

.page-hotel .hotel-page-hero__subline {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 44rem;
  margin-inline: auto;
}

.page-hotel .hotel-page-hero__trust {
  margin: 0.8rem 0 0;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.page-hotel .hotel-page-hero .hotel-hero-card {
  margin-top: 1.25rem;
}

@media (max-width: 480px) {
  .page-hotel .hotel-page-hero.page-hero {
    min-height: min(60vh, 480px);
  }
}

.hotel-hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.05rem 1.1rem 1.15rem;
  margin-top: 1.5rem;
  box-shadow: 0 16px 44px rgba(10, 12, 28, 0.26);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hotel-hero-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.hotel-hero-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

.hotel-hero-card__address {
  margin: 0 0 0.65rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.hotel-hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.hotel-hero-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
  background: rgba(72, 61, 139, 0.09);
}

.hotel-hero-card__pill--wa {
  color: #fff;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

.hotel-hero-card__book {
  margin: 0 0 0.65rem;
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hotel-hero-card__book .btn {
  min-height: 42px;
}

.hotel-hero-card__map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.hotel-hero-card__map iframe {
  width: 100%;
  min-height: 160px;
  border: 0;
  display: block;
}

@media (max-width: 560px) {
  .hotel-hero-card__book .btn {
    width: 100%;
  }
}

.page-hotel .hotel-standout {
  margin-top: 1rem;
}

.page-hotel .hotel-standout__title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--color-indigo-deep);
}

.page-hotel .hotel-standout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.page-hotel .hotel-standout__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 9px 24px rgba(29, 39, 77, 0.09);
  padding: 0.9rem 0.95rem;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.page-hotel .hotel-standout__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(29, 39, 77, 0.13);
  border-color: rgba(95, 183, 185, 0.45);
}

.page-hotel .hotel-standout__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #1b6a77;
  background: linear-gradient(140deg, rgba(95, 183, 185, 0.2), rgba(167, 121, 247, 0.14));
}

.page-hotel .hotel-standout__card h4 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text);
}

.page-hotel .hotel-standout__card p {
  margin: 0.32rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.page-hotel .hotel-standout__card--trust {
  border-color: rgba(95, 183, 185, 0.42);
  background: linear-gradient(180deg, rgba(95, 183, 185, 0.08), rgba(255, 255, 255, 0.96));
}

.page-hotel .hotel-standout__closing {
  margin: 0.95rem 0 0;
  font-size: 0.98rem;
  color: var(--color-text);
}

.page-hotel .hotel-standout__closing strong {
  font-weight: 800;
  color: var(--color-indigo-deep);
  letter-spacing: 0.01em;
}

.page-hotel .hotel-standout__badge {
  margin: 0.7rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(95, 183, 185, 0.12);
  border: 1px solid rgba(95, 183, 185, 0.34);
  color: #145564;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (min-width: 760px) {
  .page-hotel .hotel-standout__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .page-hotel .hotel-standout__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-hotel .hotel-services-grid {
  margin-top: 0.95rem;
}

.page-hotel .hotel-services-grid__title {
  margin: 0 0 0.82rem;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  color: var(--color-indigo-deep);
}

.page-hotel .hotel-services-grid__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.page-hotel .hotel-services-grid__card {
  position: relative;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 9px 24px rgba(26, 35, 67, 0.09);
  padding: 0.9rem 0.95rem;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.page-hotel .hotel-services-grid__card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 183, 185, 0.42);
  box-shadow: 0 14px 29px rgba(26, 35, 67, 0.13);
}

.page-hotel .hotel-services-grid__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #1f6f7d;
  background: linear-gradient(140deg, rgba(95, 183, 185, 0.2), rgba(167, 121, 247, 0.14));
}

.page-hotel .hotel-services-grid__card h4 {
  margin: 0;
  font-size: 0.98rem;
}

.page-hotel .hotel-services-grid__card p {
  margin: 0.3rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-hotel .hotel-services-grid__card--featured {
  background: linear-gradient(180deg, rgba(95, 183, 185, 0.08), #fff);
  border-color: rgba(95, 183, 185, 0.34);
}

.page-hotel .hotel-services-grid__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border-radius: 999px;
  padding: 0.2rem 0.48rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  background: rgba(72, 61, 139, 0.1);
  border: 1px solid rgba(72, 61, 139, 0.18);
  color: var(--color-indigo-deep);
}

.page-hotel .hotel-services-grid__trust {
  margin: 0.95rem 0 0;
  color: var(--color-text);
}

.page-hotel .hotel-services-grid__trust strong {
  color: var(--color-indigo-deep);
  font-weight: 800;
}

.page-hotel .hotel-services-grid__cta {
  margin: 0.85rem 0 0;
}

@media (min-width: 760px) {
  .page-hotel .hotel-services-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .page-hotel .hotel-services-grid__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hotel-google-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease;
}

.hotel-google-banner:hover {
  box-shadow: var(--shadow-md);
}

.hotel-google-banner__score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.hotel-google-banner__meta {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.g-review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem 0.85rem;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.g-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(95, 183, 185, 0.35);
}

.g-review-card__head {
  flex-shrink: 0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--color-border);
}

.g-review-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 0.2rem;
  color: var(--color-indigo-deep);
  line-height: 1.3;
}

.g-review-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  margin: 0;
}

.g-review-card__quote {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1 1 auto;
  min-height: 0;
}

.g-review-card__quote p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.g-review-card__link {
  flex-shrink: 0;
  margin-top: 0.6rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(72, 61, 139, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-teal-hover);
  text-decoration: none;
}

.g-review-card__link:hover {
  color: var(--color-indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@supports not (line-clamp: 5) {
  .g-review-card__quote p {
    display: block;
    max-height: 6.9rem;
    overflow: hidden;
  }
}

.hotel-reviews__intro {
  max-width: 36rem;
  margin-inline: auto;
}

.hotel-reviews__grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 700px) {
  .hotel-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hotel-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hotel-reviews__note {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: center;
}

.hotel-reviews__note a {
  font-weight: 600;
}

.hotel-form-quick {
  max-width: 32rem;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.45s ease;
}

.hotel-form-quick:hover {
  box-shadow: var(--shadow-md);
}

.page-hotel .hotel-direct-booking {
  background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
}

.page-hotel .hotel-direct-booking__intro {
  max-width: 52rem;
}

.page-hotel .hotel-direct-booking__eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--color-accent-muted);
}

.page-hotel .hotel-direct-booking__intro h2 {
  margin: 0 0 0.62rem;
}

.page-hotel .hotel-direct-booking__lead {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 46rem;
}

.page-hotel .hotel-direct-booking__trust {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-hotel .hotel-direct-booking__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 183, 185, 0.34);
  background: rgba(95, 183, 185, 0.1);
  color: #155869;
  font-size: 0.8rem;
  font-weight: 700;
}

.page-hotel .hotel-direct-booking__benefits {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.page-hotel .hotel-direct-booking__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.9rem 0.95rem;
  box-shadow: 0 9px 24px rgba(26, 35, 67, 0.09);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.page-hotel .hotel-direct-booking__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26, 35, 67, 0.13);
  border-color: rgba(95, 183, 185, 0.46);
}

.page-hotel .hotel-direct-booking__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #1f6f7d;
  background: linear-gradient(140deg, rgba(95, 183, 185, 0.2), rgba(167, 121, 247, 0.14));
}

.page-hotel .hotel-direct-booking__card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.page-hotel .hotel-direct-booking__card p {
  margin: 0.3rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-hotel .hotel-direct-booking__chip {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  background: rgba(72, 61, 139, 0.1);
  border: 1px solid rgba(72, 61, 139, 0.18);
  color: var(--color-indigo-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hotel .hotel-direct-booking__card--badge {
  background: linear-gradient(180deg, rgba(95, 183, 185, 0.08), #fff);
}

.page-hotel .hotel-direct-booking__cta {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.page-hotel .hotel-direct-booking__call {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(95, 183, 185, 0.35);
  background: linear-gradient(150deg, rgba(72, 61, 139, 0.1), rgba(95, 183, 185, 0.12));
  box-shadow: 0 10px 24px rgba(32, 39, 76, 0.12);
  padding: 1rem;
}

.page-hotel .hotel-direct-booking__call-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-muted);
  font-weight: 700;
}

.page-hotel .hotel-direct-booking__call h3 {
  margin: 0.28rem 0 0;
  font-size: 1.28rem;
}

.page-hotel .hotel-direct-booking__phones {
  margin: 0.55rem 0 0;
  font-size: clamp(1.02rem, 1.75vw, 1.32rem);
  font-weight: 800;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.page-hotel .hotel-direct-booking__phones a {
  text-decoration: none;
}

.page-hotel .hotel-direct-booking__quick-actions {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page-hotel .hotel-direct-booking__quick-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(95, 183, 185, 0.3);
  background: rgba(255, 255, 255, 0.68);
  color: #124f5e;
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.page-hotel .hotel-direct-booking__quick-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 183, 185, 0.48);
  box-shadow: 0 8px 18px rgba(31, 45, 84, 0.12);
}

.page-hotel .hotel-form-quick--modern {
  max-width: none;
  margin: 0;
  padding: 1rem;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 12px 28px rgba(26, 35, 67, 0.14);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.page-hotel .hotel-form-quick--modern:hover {
  box-shadow: 0 16px 34px rgba(26, 35, 67, 0.18);
  transform: translateY(-2px);
}

.page-hotel .hotel-form-quick__trust {
  margin: 0 0 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.page-hotel .hotel-form-quick__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  background: rgba(95, 183, 185, 0.12);
  border: 1px solid rgba(95, 183, 185, 0.3);
  color: #145564;
  font-size: 0.76rem;
  font-weight: 700;
}

.page-hotel .hotel-form-quick--modern h3 {
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.page-hotel .hotel-form-quick--modern form {
  display: grid;
  gap: 0.68rem;
}

.page-hotel .hotel-form-quick__field {
  position: relative;
}

.page-hotel .hotel-form-quick__field input,
.page-hotel .hotel-form-quick__field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 0.8rem 0.52rem;
  background: #fff;
  font: inherit;
  color: var(--color-text);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.page-hotel .hotel-form-quick__field textarea {
  resize: vertical;
  min-height: 112px;
}

.page-hotel .hotel-form-quick__field label {
  position: absolute;
  left: 0.78rem;
  top: 0.73rem;
  background: #fff;
  padding: 0 0.2rem;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  pointer-events: none;
  transform-origin: left top;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    top 0.2s ease;
}

.page-hotel .hotel-form-quick__field input:focus,
.page-hotel .hotel-form-quick__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(95, 183, 185, 0.14);
  transform: translateY(-1px);
}

.page-hotel .hotel-form-quick__field input:focus + label,
.page-hotel .hotel-form-quick__field input:not(:placeholder-shown) + label,
.page-hotel .hotel-form-quick__field textarea:focus + label,
.page-hotel .hotel-form-quick__field textarea:not(:placeholder-shown) + label {
  top: -0.42rem;
  transform: scale(0.86);
  color: var(--color-accent-muted);
}

.page-hotel .hotel-form-quick--modern .btn {
  width: 100%;
}

.page-hotel .hotel-form-quick__note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (min-width: 760px) {
  .page-hotel .hotel-direct-booking__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .page-hotel .hotel-direct-booking__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-hotel .hotel-direct-booking__cta {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 1.2fr);
  }
}

/* ————————————————————————————————————————————————————————
   Rooms page — luxury minimal layout (HTML + CSS only)
   ———————————————————————————————————————————————————————— */

.page-rooms .rooms-hero {
  position: relative;
  min-height: min(72vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: clamp(5.25rem, 12vw, 8rem) 1.5rem clamp(4rem, 8vw, 5.5rem);
  isolation: isolate;
}

.page-rooms .rooms-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hotel-page-hero-bg.png") center / cover no-repeat;
  z-index: 0;
  transform: scale(1.03);
}

.page-rooms .rooms-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(15, 12, 35, 0.82) 0%,
    rgba(45, 38, 84, 0.72) 45%,
    rgba(20, 48, 52, 0.75) 100%
  );
  z-index: 1;
}

.page-rooms .rooms-hero__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1rem, 2.8vw, 1.75rem) clamp(1rem, 3vw, 1.8rem);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(10, 15, 30, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 46px rgba(7, 10, 24, 0.24);
  animation: roomsHeroIn 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.page-rooms .rooms-hero h1 {
  color: #fff;
  margin: 0 0 0.8rem;
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-rooms .rooms-hero__sub {
  margin: 0 0 0.9rem;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.page-rooms .rooms-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
}

.page-rooms .rooms-hero__location i {
  color: var(--color-teal-light);
}

.page-rooms .rooms-hero__trust {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.page-rooms .rooms-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.page-rooms .rooms-hero__btn-light {
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.page-rooms .rooms-hero__btn-light:hover {
  color: var(--color-indigo-deep);
  background: #fff;
}

.page-rooms .rooms-hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.page-rooms .rooms-hero__scroll::after {
  content: "";
  width: 1px;
  height: 22px;
  display: block;
  margin: 0.45rem auto 0;
  background: rgba(255, 255, 255, 0.85);
  animation: roomsScrollPulse 1.3s ease-in-out infinite;
}

@keyframes roomsHeroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes roomsScrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.78);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 560px) {
  .page-rooms .rooms-hero {
    min-height: min(76vh, 620px);
    padding: 5rem 1rem 3.5rem;
  }

  .page-rooms .rooms-hero__content {
    padding: 0.95rem 0.85rem 1.1rem;
  }

  .page-rooms .rooms-hero__actions .btn {
    width: 100%;
  }
}

.page-rooms .rooms-showcase {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg);
}

.page-rooms .room-feature {
  padding: 0  clamp(1rem, 4vw, 2rem);
  margin-bottom: 0;
}

.page-rooms .room-feature__inner {
  display: flex;
  flex-direction: column;
  width: min(100%, 80rem);
  margin-inline: auto;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(45, 38, 84, 0.1);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-rooms .room-feature:hover .room-feature__inner {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(45, 38, 84, 0.16);
}

.page-rooms .room-feature__media {
  position: relative;
  flex: 1 1 auto;
  min-height: min(52vw, 22rem);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.page-rooms .room-feature__media img {
  width: 100%;
  height: 100%;
  min-height: min(52vw, 22rem);
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Deluxe double — slightly shorter card (image column) */
.page-rooms .room-feature--compact .room-feature__media {
  min-height: min(44vw, 18rem);
}

.page-rooms .room-feature--compact .room-feature__media img {
  min-height: min(44vw, 18rem);
}

.page-rooms .room-feature:hover .room-feature__media img {
  transform: scale(1.08);
}

.page-rooms .room-feature__body {
  position: relative;
  flex: 1 1 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-rooms .room-feature__badge {
  position: absolute;
  top: clamp(0.85rem, 2.5vw, 1.35rem);
  right: clamp(0.85rem, 2.5vw, 1.35rem);
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-indigo-deep);
  background: linear-gradient(135deg, rgba(95, 183, 185, 0.35), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(95, 183, 185, 0.55);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.page-rooms .room-feature__body h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  color: var(--color-indigo-deep);
}

.page-rooms .room-feature__lead {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page-rooms .room-feature__highlight {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-indigo-mid);
  line-height: 1.55;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(95, 183, 185, 0.12);
  border-left: 3px solid var(--color-teal);
}

.page-rooms .room-feature__price {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--color-teal-hover);
  letter-spacing: 0.02em;
}

.page-rooms .room-feature__price-label {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  vertical-align: middle;
}

.page-rooms .room-feature__price-unit {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.page-rooms .room-feature__amenities-title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-indigo-deep);
}

.page-rooms .room-feature__amenities {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.98rem;
  color: var(--color-text);
}

.page-rooms .room-feature__amenities li {
  position: relative;
  padding-left: 1.35rem;
}

.page-rooms .room-feature__amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
}

.page-rooms .room-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: auto;
}

.page-rooms .room-feature__btn {
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.page-rooms .room-feature__btn:hover {
  transform: translateY(-2px);
}

.page-rooms .room-feature__btn:active {
  transform: translateY(0);
}

.page-rooms .room-feature-divider {
  width: min(100% - 2rem, 40rem);
  height: 1px;
  margin: clamp(2.5rem, 5vw, 3.75rem) auto;
  border: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(72, 61, 139, 0.28) 20%,
    rgba(95, 183, 185, 0.45) 50%,
    rgba(72, 61, 139, 0.28) 80%,
    transparent
  );
}

@media (min-width: 960px) {
  .page-rooms .room-feature__inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 26rem;
  }

  .page-rooms .room-feature--compact .room-feature__inner {
    min-height: 22rem;
  }

  .page-rooms .room-feature--reverse .room-feature__inner {
    flex-direction: row-reverse;
  }

  .page-rooms .room-feature__media,
  .page-rooms .room-feature__body {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .page-rooms .room-feature__media {
    min-height: auto;
  }

  .page-rooms .room-feature__media img {
    min-height: 100%;
  }
}

.page-rooms .rooms-why {
  padding: clamp(3rem, 7vw, 5rem) 1rem;
  background: var(--color-bg-alt);
}

.page-rooms .rooms-why__container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  text-align: center;
}

.page-rooms .rooms-why__heading {
  margin: 0 0 0.75rem;
  color: var(--color-indigo-deep);
}

.page-rooms .rooms-why__intro {
  margin: 0 auto 2.5rem;
  max-width: 38rem;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.page-rooms .rooms-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  justify-content: center;
}

.page-rooms .rooms-why__item {
  flex: 1 1 calc(50% - 1rem);
  min-width: min(100%, 240px);
  max-width: 22rem;
  padding: 1.75rem 1.35rem;
  text-align: left;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease,
    border-color 0.35s ease;
}

.page-rooms .rooms-why__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(95, 183, 185, 0.35);
}

@media (min-width: 960px) {
  .page-rooms .rooms-why__item {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: none;
  }
}

.page-rooms .rooms-why__item-title {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  color: var(--color-indigo-deep);
  font-weight: 600;
}

.page-rooms .rooms-why__item-title::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--color-teal), var(--color-indigo));
  border-radius: 1px;
}

.page-rooms .rooms-why__item-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.page-rooms .rooms-gallery {
  padding: clamp(3rem, 7vw, 5rem) 1rem;
  background: var(--color-bg);
}

.page-rooms .rooms-gallery__container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
  text-align: center;
}

.page-rooms .rooms-gallery__heading {
  margin: 0 0 0.5rem;
  color: var(--color-indigo-deep);
}

.page-rooms .rooms-gallery__intro {
  margin: 0 0 2rem;
  color: var(--color-text-muted);
  max-width: 32rem;
  margin-inline: auto;
}

.page-rooms .rooms-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}

.page-rooms .rooms-gallery__cell {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-bg-alt);
  transition:
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.page-rooms .rooms-gallery__cell:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.page-rooms .rooms-gallery__cell img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-rooms .rooms-gallery__cell:hover img {
  transform: scale(1.08);
}

.page-rooms .rooms-page-cta {
  position: relative;
  min-height: min(58vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3.35rem, 8vw, 6rem) 1.1rem;
  isolation: isolate;
  overflow: hidden;
}

.page-rooms .rooms-page-cta__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-slider-night-lights.png") center / cover no-repeat;
  z-index: 0;
  transform: scale(1.04);
  animation: roomsCtaZoom 15s ease-in-out infinite alternate;
}

.page-rooms .rooms-page-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(45, 38, 84, 0.88) 0%,
    rgba(45, 38, 84, 0.72) 50%,
    rgba(30, 70, 75, 0.82) 100%
  );
  z-index: 1;
}

.page-rooms .rooms-page-cta__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  padding: clamp(1.1rem, 3vw, 1.9rem);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(10, 14, 28, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 52px rgba(8, 10, 24, 0.34);
  animation: roomsCtaIn 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.page-rooms .rooms-page-cta h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.1vw, 2.2rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.page-rooms .rooms-page-cta__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8eee3;
}

.page-rooms .rooms-page-cta__sub {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
}

.page-rooms .rooms-page-cta__trust {
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.55rem;
}

.page-rooms .rooms-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.page-rooms .rooms-page-cta__btn {
  min-height: 44px;
  padding-inline: 1.2rem;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    filter 0.35s ease;
}

.page-rooms .rooms-page-cta__btn--call {
  border-color: rgba(255, 255, 255, 0.9) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.page-rooms .rooms-page-cta__btn--call:hover {
  background: #fff;
  color: var(--color-indigo-deep) !important;
}

.page-rooms .rooms-page-cta__btn--wa {
  color: #fff !important;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  border: none;
  box-shadow: 0 6px 18px rgba(20, 140, 126, 0.35);
}

.page-rooms .rooms-page-cta__btn--wa:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.page-rooms .rooms-page-cta__btn:hover {
  box-shadow: 0 8px 20px rgba(95, 183, 185, 0.28);
}

.page-rooms .rooms-page-cta__btn:active {
  transform: translateY(0);
}

@keyframes roomsCtaIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes roomsCtaZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 640px) {
  .page-rooms .rooms-page-cta {
    padding: 3rem 0.85rem 3.25rem;
  }

  .page-rooms .rooms-page-cta__content {
    padding: 1rem 0.85rem 1.2rem;
  }

  .page-rooms .rooms-page-cta__actions .rooms-page-cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-rooms .rooms-page-cta__bg,
  .page-rooms .rooms-page-cta__content {
    animation: none;
  }
}

/* ————————————————————————————————————————————————————————
   Trek detail pages (Gaumukh, Kyarkoti) — flex splits, FAQ (no inline styles)
   ———————————————————————————————————————————————————————— */

.tour-hero--gaumukh {
  --hero-img: url("../assets/gaumukh-trek-hikers-glacier.png");
}

.tour-hero--kyarkoti {
  --hero-img: url("../assets/kyarkoti-hero-new.png");
}

.tour-hero--dayara {
  --hero-img: url("../assets/dayara-peaks-panorama.png");
  min-height: min(62vh, 620px);
  align-items: center;
  padding: clamp(4rem, 10vw, 6.6rem) 0 3rem;
}

.tour-hero--dayara .tour-hero__bg {
  background: linear-gradient(
      145deg,
      rgba(8, 10, 24, 0.8) 0%,
      rgba(30, 24, 62, 0.58) 45%,
      rgba(16, 52, 58, 0.72) 100%
    ),
    var(--hero-img) center / cover no-repeat;
  transform: scale(1.04);
  animation: dayaraParallax 16s ease-in-out infinite alternate;
}

.tour-hero--dayara .container {
  max-width: 54rem;
  animation: dayaraHeroIn 0.68s ease both;
}

.tour-hero--dayara h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: 0.45rem;
}

.tour-hero--dayara .tour-hero__subline {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.55;
}

.tour-hero--dayara .tour-hero__trust-badge {
  margin: 0.8rem 0 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.tour-hero--dayara .tour-hero__meta--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  max-width: none;
}

.tour-hero--dayara .tour-hero__meta--pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.84rem;
}

.tour-hero--dayara .tour-hero__meta--pills i {
  color: var(--color-teal-light);
}

.tour-hero--dayara .tour-hero__actions {
  margin-top: 1.1rem;
  gap: 0.7rem;
}

.tour-hero--dayara .tour-hero__price--card {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tour-hero--dayara .tour-hero__btn-primary {
  box-shadow: 0 8px 22px rgba(95, 183, 185, 0.3);
}

.tour-hero--dayara .tour-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.tour-hero--dayara .tour-hero__btn-call:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--color-indigo-deep);
}

@keyframes dayaraHeroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dayaraParallax {
  from {
    transform: scale(1.04) translateY(0);
  }

  to {
    transform: scale(1.09) translateY(-8px);
  }
}

@media (max-width: 640px) {
  .tour-hero--dayara .tour-hero__actions .btn,
  .tour-hero--dayara .tour-hero__btn-call {
    width: 100%;
    justify-content: center;
  }
}

.tour-hero--harsil {
  --hero-img: url("../assets/harshil-valley-panorama.png");
}

.tour-hero--harsil {
  min-height: min(62vh, 620px);
  align-items: center;
  padding: clamp(4rem, 10vw, 6.6rem) 0 3rem;
}

.tour-hero--harsil .tour-hero__bg {
  background: linear-gradient(
      145deg,
      rgba(8, 10, 24, 0.8) 0%,
      rgba(30, 24, 62, 0.58) 45%,
      rgba(16, 52, 58, 0.72) 100%
    ),
    var(--hero-img) center / cover no-repeat;
  transform: scale(1.04);
  animation: harsilParallax 16s ease-in-out infinite alternate;
}

.tour-hero--harsil .container {
  max-width: 54rem;
  animation: harsilHeroIn 0.68s ease both;
}

.tour-hero--harsil h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: 0.45rem;
}

.tour-hero--harsil .tour-hero__subline {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.55;
}

.tour-hero--harsil .tour-hero__trust-badge {
  margin: 0.8rem 0 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.tour-hero--harsil .tour-hero__meta--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  max-width: none;
}

.tour-hero--harsil .tour-hero__meta--pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.84rem;
}

.tour-hero--harsil .tour-hero__meta--pills i {
  color: var(--color-teal-light);
}

.tour-hero--harsil .tour-hero__actions {
  margin-top: 1.1rem;
  gap: 0.7rem;
}

.tour-hero--harsil .tour-hero__btn-primary {
  box-shadow: 0 8px 22px rgba(95, 183, 185, 0.3);
}

.tour-hero--harsil .tour-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.tour-hero--harsil .tour-hero__btn-call:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--color-indigo-deep);
}

.harsil-overview {
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.05) 0%,
    rgba(95, 183, 185, 0.01) 100%
  );
}

.harsil-overview__lead {
  max-width: 46rem;
}

.harsil-overview__copy {
  max-width: 44rem;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--color-text-muted);
}

.harsil-overview__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .harsil-overview__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.harsil-overview__fact {
  text-align: center;
  padding: 0.95rem 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.08);
}

.harsil-overview__fact i {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.45rem;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.16);
}

.harsil-overview__fact h3 {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--color-accent-muted);
}

.harsil-overview__fact p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.harsil-overview__cta {
  margin: 1rem 0 0;
  text-align: center;
}

@keyframes harsilHeroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes harsilParallax {
  from {
    transform: scale(1.04) translateY(0);
  }

  to {
    transform: scale(1.09) translateY(-8px);
  }
}

@media (max-width: 640px) {
  .tour-hero--harsil .tour-hero__actions .btn,
  .tour-hero--harsil .tour-hero__btn-call {
    width: 100%;
    justify-content: center;
  }
}

.tour-hero__meta {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  max-width: 36rem;
}

.tour-hero__meta li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.tour-hero__meta-label {
  font-weight: 700;
  color: var(--color-teal-light);
  margin-right: 0.35rem;
}

.page-kyarkoti .tour-hero {
  min-height: min(62vh, 620px);
  align-items: center;
  padding: clamp(4rem, 10vw, 6.5rem) 0 3.2rem;
}

.page-kyarkoti .tour-hero__bg {
  background: linear-gradient(
      145deg,
      rgba(8, 10, 24, 0.84) 0%,
      rgba(30, 24, 62, 0.64) 45%,
      rgba(16, 52, 58, 0.76) 100%
    ),
    var(--hero-img) center / cover no-repeat;
  transform: scale(1.03);
}

.page-kyarkoti .tour-hero .container {
  max-width: 52rem;
  animation: kyarkotiHeroIn 0.7s ease both;
}

.page-kyarkoti .tour-hero h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  margin-bottom: 0.45rem;
}

.page-kyarkoti .tour-hero__subline {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.page-kyarkoti .tour-hero__trust-badge {
  margin: 0.8rem 0 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.page-kyarkoti .tour-hero__meta--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  max-width: none;
}

.page-kyarkoti .tour-hero__meta--pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.84rem;
}

.page-kyarkoti .tour-hero__meta--pills i {
  color: var(--color-teal-light);
}

.page-kyarkoti .tour-hero__actions {
  margin-top: 1.1rem;
  gap: 0.7rem;
}

.page-kyarkoti .tour-hero__btn-primary {
  box-shadow: 0 8px 22px rgba(95, 183, 185, 0.3);
}

.page-kyarkoti .tour-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.page-kyarkoti .tour-hero__btn-call:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--color-indigo-deep);
}

@keyframes kyarkotiHeroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .page-kyarkoti .tour-hero__actions .btn,
  .page-kyarkoti .tour-hero__btn-call {
    width: 100%;
    justify-content: center;
  }
}

.section--tight {
  padding-block: 3rem 1.75rem;
}

.page-trek-split .tour-split {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-trek-split .tour-split--shade {
  background: var(--color-bg-alt);
}

.page-trek-split .tour-split__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.page-trek-split .tour-split__media {
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  align-self: stretch;
}

.page-trek-split .tour-split__media img {
  width: 100%;
  height: 100%;
  min-height: min(58vw, 20rem);
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-trek-split .tour-split:hover .tour-split__media img {
  transform: scale(1.06);
}

.page-trek-split .tour-split__body {
  flex: 1 1 100%;
  min-width: min(100%, 280px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-trek-split .tour-split__body h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.page-trek-split .tour-split__body .tour-prose {
  margin-bottom: 0;
}

.page-trek-split .tour-split__body .tour-prose p {
  margin-bottom: 1rem;
}

.page-trek-split .tour-split__body .tour-prose p:last-child {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .page-trek-split .tour-split__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .page-trek-split .tour-split__media,
  .page-trek-split .tour-split__body {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .page-trek-split .tour-split__media img {
    min-height: 100%;
  }

  .page-trek-split .tour-split--reverse .tour-split__inner {
    flex-direction: row-reverse;
  }
}

.page-trek-split .itinerary-acc__panel .tour-split__inner--text-only .tour-split__body {
  flex: 1 1 100%;
  max-width: 100%;
}

.page-trek-split .tour-split__inner--intro-only {
  justify-content: center;
}

.page-trek-split .tour-split__inner--intro-only .tour-split__body {
  flex: 1 1 100%;
  max-width: 46rem;
  margin-inline: auto;
}

.page-trek-split .itinerary-meta {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.page-trek-split .itinerary-meta li {
  margin-bottom: 0.45rem;
}

.page-trek-split .itinerary-meta li:last-child {
  margin-bottom: 0;
}

.page-trek-split .tour-alt-heading {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-indigo);
  line-height: 1.35;
}

.page-trek-split .tour-prose--emphasis {
  margin-top: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
}

.page-trek-split .tour-callout {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(95, 183, 185, 0.12), rgba(72, 61, 139, 0.08));
  border: 1px solid rgba(95, 183, 185, 0.35);
  box-shadow: var(--shadow-sm);
}

.page-trek-split .tour-callout p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text);
}

.page-trek-split .tour-numbered-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.page-trek-split .tour-numbered-list li {
  margin-bottom: 0.5rem;
}

.page-trek-split .tour-numbered-list--plain {
  list-style: decimal;
}

.page-trek-split .check-list--loose li {
  margin-bottom: 0.85rem;
  line-height: 1.65;
}

.page-trek-split .tour-faq {
  max-width: 42rem;
  margin-top: 1.5rem;
}

.page-trek-split .tour-faq--two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1.5rem;
  max-width: none;
  margin-top: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .page-trek-split .tour-faq--two-col {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.75rem;
  }
}

.page-trek-split .tour-faq__column {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.page-trek-split .tour-faq--two-col .tour-faq__item {
  margin-bottom: 0;
}

.page-trek-split .tour-faq-split {
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.page-trek-split .tour-faq-split__main h2 {
  margin-bottom: 0.35rem;
}

.page-trek-split .tour-faq-split .tour-faq {
  max-width: none;
  margin-top: 1rem;
}

.page-trek-split .tour-faq-split__visual {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

@media (max-width: 767px) {
  .page-trek-split .tour-faq-split__visual {
    position: static;
    max-width: 28rem;
    margin-inline: auto;
  }
}

.page-trek-split .tour-faq__item {
  margin-bottom: 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-trek-split .tour-faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-indigo-deep);
  list-style: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.page-trek-split .tour-faq__item summary::-webkit-details-marker {
  display: none;
}

.page-trek-split .tour-faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--color-teal-hover);
}

.page-trek-split .tour-faq__item[open] summary::after {
  content: "–";
}

.page-trek-split .tour-faq__item summary:hover {
  background: var(--color-bg-alt);
}

.page-trek-split .tour-faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.page-trek-split .tour-faq__item .tour-faq__body {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.page-trek-split .tour-faq__item .tour-faq__body p {
  padding: 0 0 0.75rem;
}

.page-trek-split .tour-faq__item .tour-faq__body p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.page-trek-split .tour-faq__item .tour-faq__list {
  margin: 0;
  padding-left: 1.25rem;
}

.page-trek-split .tour-faq__item .tour-faq__list li {
  margin-bottom: 0.35rem;
}

.page-trek-split .tour-cta-section {
  position: relative;
  text-align: center;
  background: var(--color-indigo-deep);
  isolation: isolate;
  overflow: hidden;
}

.page-trek-split .tour-cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(1rem, 2.6vw, 1.65rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(10, 15, 30, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(9, 12, 28, 0.32);
  animation: tourCtaFadeUp 0.7s ease both;
}

.page-trek-split .tour-cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/kyarkoti-glacier-valley.png") center / cover no-repeat;
  transform: scale(1.03);
  animation: tourCtaBgZoom 14s ease-in-out infinite alternate;
}

.page-trek-split .tour-cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(10, 12, 28, 0.82) 0%,
    rgba(30, 24, 62, 0.72) 44%,
    rgba(17, 52, 58, 0.78) 100%
  );
}

.page-trek-split .tour-cta-section__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #a7ece5;
}

.page-trek-split .tour-cta-section__title {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.page-trek-split .tour-cta-section__lead {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.94);
  max-width: 38rem;
  margin-inline: auto;
}

.page-trek-split .tour-cta-section__trust {
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.page-trek-split .tour-cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.page-trek-split .tour-cta-section__btn {
  min-height: 44px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.page-trek-split .tour-cta-section__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(95, 183, 185, 0.25);
}

.page-trek-split .tour-cta-section__btn--wa {
  color: #fff !important;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  border: none;
}

.page-trek-split .tour-cta-section__btn--wa:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

@keyframes tourCtaFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tourCtaBgZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 560px) {
  .page-trek-split .tour-cta-section__actions .tour-cta-section__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-trek-split .tour-cta-section__inner,
  .page-trek-split .tour-cta-section__bg {
    animation: none;
  }
}

/* Kyarkoti — quick facts grid under intro */
.page-kyarkoti .kyarkoti-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-kyarkoti .kyarkoti-facts__item {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: min(100%, 220px);
  padding: 1.15rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .page-kyarkoti .kyarkoti-facts__item {
    flex: 1 1 calc(33.333% - 0.67rem);
  }
}

@media (min-width: 1100px) {
  .page-kyarkoti .kyarkoti-facts__item {
    flex: 1 1 calc(20% - 0.8rem);
  }
}

.page-kyarkoti .kyarkoti-facts__item h3 {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal-hover);
}

.page-kyarkoti .kyarkoti-facts__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.page-kyarkoti .kyarkoti-intro-split {
  align-items: stretch;
}

.page-kyarkoti .kyarkoti-intro-split__media {
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 18px 42px rgba(45, 38, 84, 0.16);
}

.page-kyarkoti .kyarkoti-intro-split__media img {
  min-height: min(62vw, 25rem);
}

.page-kyarkoti .kyarkoti-intro-split__body {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-md);
  padding: clamp(1.05rem, 2.3vw, 1.65rem);
  animation: kyarkotiIntroIn 0.65s ease both;
}

.page-kyarkoti .kyarkoti-intro__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.page-kyarkoti .kyarkoti-intro-split__body h2 {
  margin-bottom: 0.65rem;
}

.page-kyarkoti .kyarkoti-intro__sub {
  margin: 0 0 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.page-kyarkoti .kyarkoti-facts--icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0;
}

.page-kyarkoti .kyarkoti-facts--icon-grid .kyarkoti-facts__item {
  min-width: 0;
  padding: 0.8rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(45, 38, 84, 0.09);
}

.page-kyarkoti .kyarkoti-facts--icon-grid .kyarkoti-facts__item i {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  border-radius: 50%;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.18);
}

.page-kyarkoti .kyarkoti-facts--icon-grid .kyarkoti-facts__item h3 {
  margin: 0 0 0.2rem;
}

.page-kyarkoti .kyarkoti-facts--icon-grid .kyarkoti-facts__item p {
  font-size: 0.85rem;
}

.page-kyarkoti .kyarkoti-highlights {
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.08) 0%,
    rgba(95, 183, 185, 0.02) 100%
  );
  border-top: 1px solid rgba(95, 183, 185, 0.18);
  border-bottom: 1px solid rgba(95, 183, 185, 0.12);
}

.page-kyarkoti .kyarkoti-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 980px) {
  .page-kyarkoti .kyarkoti-highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-kyarkoti .kyarkoti-highlights .tour-spec-tile {
  text-align: center;
  padding: 1rem 0.85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-kyarkoti .kyarkoti-highlights .tour-spec-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(45, 38, 84, 0.14);
  border-color: rgba(95, 183, 185, 0.45);
}

.page-kyarkoti .kyarkoti-highlights .tour-spec-tile i {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.45rem;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.16);
}

.page-kyarkoti .kyarkoti-highlights .tour-spec-tile h3 {
  margin: 0 0 0.2rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.page-kyarkoti .kyarkoti-highlights .tour-spec-tile p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.page-gaumukh .gaumukh-highlights {
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.08) 0%,
    rgba(95, 183, 185, 0.02) 100%
  );
  border-top: 1px solid rgba(95, 183, 185, 0.18);
  border-bottom: 1px solid rgba(95, 183, 185, 0.12);
}

.page-gaumukh .gaumukh-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 980px) {
  .page-gaumukh .gaumukh-highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-gaumukh .gaumukh-highlights .tour-spec-tile {
  text-align: center;
  padding: 1rem 0.85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-gaumukh .gaumukh-highlights .tour-spec-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(45, 38, 84, 0.14);
  border-color: rgba(95, 183, 185, 0.45);
}

.page-gaumukh .gaumukh-highlights .tour-spec-tile i {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.45rem;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.16);
}

.page-gaumukh .gaumukh-highlights .tour-spec-tile h3 {
  margin: 0 0 0.2rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.page-gaumukh .gaumukh-highlights .tour-spec-tile p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.page-gaumukh .tour-hero {
  min-height: min(64vh, 640px);
  align-items: center;
  padding: clamp(4rem, 10vw, 6.8rem) 0 3.1rem;
}

.page-gaumukh .tour-hero__bg {
  background: linear-gradient(
      145deg,
      rgba(8, 10, 24, 0.84) 0%,
      rgba(30, 24, 62, 0.64) 45%,
      rgba(16, 52, 58, 0.76) 100%
    ),
    var(--hero-img) center / cover no-repeat;
  transform: scale(1.04);
  animation: gaumukhParallax 16s ease-in-out infinite alternate;
}

.page-gaumukh .tour-hero .container {
  max-width: 54rem;
  animation: gaumukhHeroIn 0.7s ease both;
}

.page-gaumukh .tour-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.45rem;
}

.page-gaumukh .tour-hero__subline {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.55;
}

.page-gaumukh .tour-hero__trust-badge {
  margin: 0.8rem 0 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.page-gaumukh .tour-hero__meta--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  max-width: none;
}

.page-gaumukh .tour-hero__meta--pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.84rem;
}

.page-gaumukh .tour-hero__meta--pills i {
  color: var(--color-teal-light);
}

.page-gaumukh .tour-hero__actions {
  margin-top: 1.1rem;
  gap: 0.7rem;
}

.page-gaumukh .tour-hero__price--card {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-gaumukh .tour-hero__btn-primary {
  box-shadow: 0 8px 22px rgba(95, 183, 185, 0.3);
}

.page-gaumukh .tour-hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.page-gaumukh .tour-hero__btn-call:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--color-indigo-deep);
}

/* Gaumukh — premium full-bleed CTA (Harsil valley + spiritual glacier journey) */
.page-gaumukh .tour-cta-section--gaumukh {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: min(58vh, 600px);
  padding-block: clamp(3.75rem, 11vw, 7rem);
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__bg--gaumukh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(4, 10, 22, 0.45) 0%, transparent 42%, rgba(6, 14, 28, 0.35) 100%),
    url("../assets/gaumukh-trek-hikers-glacier.png"),
    url("../assets/harshil-valley-gallery-cottages-river.png");
  background-size: cover, cover, cover;
  background-position: center, 72% 42%, center 30%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  transform: scale(1.05);
  animation: gaumukhCtaBgDrift 22s ease-in-out infinite alternate;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__overlay--gaumukh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 88% 58% at 50% 108%, rgba(95, 183, 185, 0.22), transparent 56%),
    radial-gradient(ellipse 62% 48% at 10% 22%, rgba(212, 177, 111, 0.11), transparent 52%),
    radial-gradient(ellipse 48% 42% at 90% 32%, rgba(255, 255, 255, 0.07), transparent 48%),
    linear-gradient(180deg, rgba(4, 8, 18, 0.58) 0%, transparent 44%),
    linear-gradient(0deg, rgba(4, 12, 18, 0.74) 0%, transparent 40%),
    linear-gradient(
      165deg,
      rgba(6, 10, 22, 0.9) 0%,
      rgba(20, 18, 48, 0.78) 38%,
      rgba(8, 42, 48, 0.84) 72%,
      rgba(6, 14, 28, 0.92) 100%
    );
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1rem;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__mist {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 28%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 72% 55%, rgba(255, 255, 255, 0.14), transparent),
    radial-gradient(2px 2px at 48% 78%, rgba(167, 236, 229, 0.16), transparent),
    radial-gradient(1px 1px at 88% 22%, rgba(255, 255, 255, 0.11), transparent),
    radial-gradient(1px 1px at 35% 62%, rgba(255, 255, 255, 0.09), transparent),
    radial-gradient(1.5px 1.5px at 62% 18%, rgba(167, 236, 229, 0.12), transparent);
  background-size:
    180px 220px,
    240px 280px,
    200px 200px,
    260px 300px,
    320px 360px,
    200px 240px;
  background-position:
    0 0,
    40px 60px,
    120px 20px,
    200px 100px,
    80px 180px,
    260px 40px;
  opacity: 0.52;
  animation: gaumukhCtaMist 16s ease-in-out infinite alternate;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh {
  position: relative;
  z-index: 3;
  animation: none;
  text-align: center;
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(1.65rem, 4.2vw, 2.65rem) clamp(1.35rem, 4.5vw, 2.25rem);
  border-radius: calc(var(--radius) + 14px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(
    155deg,
    rgba(10, 14, 32, 0.52) 0%,
    rgba(8, 12, 28, 0.42) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 28px 64px rgba(2, 6, 18, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered fade-up for children when the glass panel enters */
.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh:not(.is-inview) > * {
  opacity: 0;
  transform: translateY(18px);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > *:nth-child(1) {
  transition-delay: 0.12s;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > *:nth-child(2) {
  transition-delay: 0.24s;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > *:nth-child(3) {
  transition-delay: 0.36s;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > *:nth-child(4) {
  transition-delay: 0.46s;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > *:nth-child(5) {
  transition-delay: 0.56s;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__eyebrow {
  color: rgba(183, 245, 240, 0.98);
  letter-spacing: 0.16em;
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 600;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh:not(.is-inview) > .tour-cta-section__title {
  transform: translateY(22px);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh.is-inview > .tour-cta-section__title {
  animation: gaumukhCtaTitleRise 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition:
    opacity 0s,
    transform 0s,
    filter 0s;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__title {
  margin-bottom: 0.95rem;
  font-size: clamp(2rem, 5.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.12;
  color: #fff;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(95, 183, 185, 0.12);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__lead--gaumukh {
  margin-bottom: 1.05rem;
  max-width: 36rem;
  margin-inline: auto;
  color: rgba(235, 240, 248, 0.9);
  font-size: clamp(1.02rem, 2.2vw, 1.16rem);
  line-height: 1.78;
  font-weight: 400;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__trust {
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.87rem;
  letter-spacing: 0.02em;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--gaumukh-gradient {
  border: none;
  border-radius: 16px;
  padding: 1.02rem 2rem;
  min-height: 52px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(132deg, #7ad8da 0%, #52b5b8 32%, #5c6bb8 62%, #4a3d99 100%);
  background-size: 160% 160%;
  background-position: 0% 50%;
  box-shadow:
    0 8px 32px rgba(95, 183, 185, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 52px rgba(72, 61, 139, 0.35);
  transition:
    transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.32s ease,
    filter 0.32s ease,
    background-position 0.5s ease;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--gaumukh-gradient:hover {
  transform: translateY(-5px) scale(1.055);
  background-position: 100% 50%;
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 18px 48px rgba(95, 183, 185, 0.55),
    0 0 64px rgba(95, 183, 185, 0.28),
    0 0 56px rgba(72, 61, 139, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--gaumukh-gradient:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 3px;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--gaumukh-gradient:active {
  transform: translateY(-2px) scale(1.03);
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--wa {
  border-radius: 14px;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

@keyframes gaumukhCtaBgDrift {
  from {
    transform: scale(1.05) translate(0, 0);
  }

  to {
    transform: scale(1.1) translate(-1.2%, -1.5%);
  }
}

@keyframes gaumukhCtaTitleRise {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes gaumukhCtaMist {
  from {
    opacity: 0.38;
    transform: translateY(0);
  }

  to {
    opacity: 0.62;
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__bg--gaumukh,
  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__mist {
    animation: none;
  }

  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh > * {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }

  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh .tour-cta-section__title {
    animation: none;
  }

  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--gaumukh-gradient:hover,
  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__btn--wa:hover {
    transform: none;
  }
}

@media (max-width: 560px) {
  .page-gaumukh .tour-cta-section--gaumukh {
    min-height: min(50vh, 520px);
    padding-block: clamp(3rem, 9vw, 5rem);
  }

  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__inner--gaumukh {
    padding: clamp(1.35rem, 5vw, 1.85rem) clamp(1.1rem, 4vw, 1.35rem);
  }
}

@media (max-width: 640px) {
  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-gaumukh .tour-cta-section--gaumukh .tour-cta-section__actions > .btn {
    width: 100%;
  }
}

@keyframes gaumukhHeroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gaumukhParallax {
  from {
    transform: scale(1.04) translateY(0);
  }

  to {
    transform: scale(1.09) translateY(-8px);
  }
}

@media (max-width: 640px) {
  .page-gaumukh .tour-hero__actions .btn,
  .page-gaumukh .tour-hero__btn-call {
    width: 100%;
    justify-content: center;
  }
}

.page-gaumukh .gaumukh-why {
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.06) 0%,
    rgba(95, 183, 185, 0.01) 100%
  );
}

.page-gaumukh .gaumukh-why__grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.page-gaumukh .gaumukh-why__layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 980px) {
  .page-gaumukh .gaumukh-why__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 1.15rem;
  }
}

.page-gaumukh .gaumukh-why__layout .gaumukh-why__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .page-gaumukh .gaumukh-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .page-gaumukh .gaumukh-why__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-gaumukh .gaumukh-why__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 0.95rem 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-gaumukh .gaumukh-why__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(45, 38, 84, 0.14);
  border-color: rgba(95, 183, 185, 0.45);
}

.page-gaumukh .gaumukh-why__card i {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.15);
  margin-bottom: 0.5rem;
}

.page-gaumukh .gaumukh-why__card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.page-gaumukh .gaumukh-why__card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.page-gaumukh .gaumukh-why__trust {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-muted);
}

.page-gaumukh .gaumukh-why__visual {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 34px rgba(45, 38, 84, 0.14);
  min-height: 100%;
}

.page-gaumukh .gaumukh-why__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.dayara-highlights {
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.08) 0%,
    rgba(95, 183, 185, 0.02) 100%
  );
  border-top: 1px solid rgba(95, 183, 185, 0.18);
  border-bottom: 1px solid rgba(95, 183, 185, 0.12);
}

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

@media (min-width: 980px) {
  .dayara-highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.dayara-highlights .tour-spec-tile {
  text-align: center;
  padding: 1rem 0.85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dayara-highlights .tour-spec-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(45, 38, 84, 0.14);
  border-color: rgba(95, 183, 185, 0.45);
}

.dayara-highlights .tour-spec-tile i {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.45rem;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.16);
}

.dayara-highlights .tour-spec-tile h3 {
  margin: 0 0 0.2rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.dayara-highlights .tour-spec-tile p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-indigo-deep);
}

.trek-packing {
  background: linear-gradient(
    180deg,
    rgba(95, 183, 185, 0.05) 0%,
    rgba(95, 183, 185, 0.01) 100%
  );
}

.trek-packing__group + .trek-packing__group {
  margin-top: 1.15rem;
}

.trek-packing__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--color-indigo-deep);
}

.trek-packing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 720px) {
  .trek-packing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .trek-packing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trek-packing__card {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.9rem 0.9rem 0.95rem;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.08);
}

.trek-packing__card i {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
  color: var(--color-teal-hover);
  background: rgba(95, 183, 185, 0.16);
}

.trek-packing__card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  color: var(--color-indigo-deep);
}

.trek-packing__card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.trek-packing__badge {
  margin-left: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #2d5f78 0%, #483d8b 100%);
  border-radius: 999px;
  padding: 0.15rem 0.4rem;
}

.trek-packing__tip {
  margin: 1rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(95, 183, 185, 0.28);
  background: rgba(95, 183, 185, 0.12);
  color: var(--color-text);
  font-size: 0.9rem;
}

.dayara-reach__grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .dayara-reach__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1160px) {
  .dayara-reach__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dayara-reach__card {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.9rem 0.9rem 0.95rem;
  box-shadow: 0 10px 24px rgba(45, 38, 84, 0.08);
}

.dayara-reach__card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: var(--color-indigo-deep);
}

.dayara-reach__card h3 i {
  margin-right: 0.35rem;
  color: var(--color-teal-hover);
}

.dayara-reach__card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--color-text-muted);
}

.dayara-reach__card li {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.dayara-reach__icons {
  margin: 0.55rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-accent-muted);
}

.dayara-reach__tip {
  margin: 1rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(95, 183, 185, 0.28);
  background: rgba(95, 183, 185, 0.12);
  color: var(--color-text);
  font-size: 0.9rem;
}

.dayara-query-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-indigo-deep);
}

.dayara-query-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/dayara-peaks-panorama.png") center / cover no-repeat;
  transform: scale(1.03);
  animation: dayaraQueryZoom 14s ease-in-out infinite alternate;
}

.dayara-query-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(10, 12, 28, 0.84) 0%,
    rgba(32, 25, 67, 0.72) 42%,
    rgba(17, 52, 58, 0.78) 100%
  );
}

.dayara-query-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(1rem, 2.6vw, 1.65rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(10, 15, 30, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 48px rgba(9, 12, 28, 0.32);
  animation: dayaraQueryFadeUp 0.7s ease both;
}

.dayara-query-cta__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #a7ece5;
}

.dayara-query-cta h2 {
  margin: 0 0 0.62rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.dayara-query-cta__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  max-width: 37rem;
  margin-inline: auto;
}

.dayara-query-cta__actions {
  margin: 1rem 0 0;
}

.dayara-query-cta__btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.dayara-query-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(95, 183, 185, 0.25);
}

.dayara-query-cta__quick {
  margin: 0.7rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.dayara-query-cta__quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dayara-query-cta__quick-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.dayara-query-cta__quick-btn--wa {
  border-color: rgba(37, 211, 102, 0.8);
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

@keyframes dayaraQueryFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dayaraQueryZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 560px) {
  .dayara-query-cta__btn {
    width: 100%;
  }

  .dayara-query-cta__quick-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dayara-query-cta__bg,
  .dayara-query-cta__inner {
    animation: none;
  }
}

@media (min-width: 960px) {
  .page-kyarkoti .kyarkoti-intro-split__body {
    padding: 1.35rem 1.35rem 1.2rem;
  }
}

@media (max-width: 540px) {
  .page-kyarkoti .kyarkoti-facts--icon-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes kyarkotiIntroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ————————————————————————————————————————————————————————
   Things to do — tall image cards + centred label pill (home & about)
   ———————————————————————————————————————————————————————— */

.ttd-section {
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.ttd-section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-indigo-deep);
}

.ttd-section__lead {
  margin: 0 auto 2rem;
  max-width: 42rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.ttd-grid {
  display: grid;
  gap: clamp(1.15rem, 3vw, 1.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .ttd-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.ttd-card {
  position: relative;
  display: block;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 520px);
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
  box-shadow:
    0 6px 28px rgba(45, 38, 84, 0.12),
    0 2px 8px rgba(45, 38, 84, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.32s ease;
}

@media (min-width: 720px) {
  .ttd-card {
    max-width: none;
    max-height: min(68vh, 560px);
  }
}

.ttd-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 44px rgba(45, 38, 84, 0.16),
    0 4px 14px rgba(45, 38, 84, 0.08);
}

.ttd-card:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 4px;
}

.ttd-card__media {
  position: absolute;
  inset: 0;
}

.ttd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.ttd-card:hover .ttd-card__media img {
  transform: scale(1.04);
}

.ttd-card__label {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.5rem);
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  padding: 0.65rem 1.35rem;
  min-width: min(78%, 15rem);
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-indigo-deep);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  line-height: 1.25;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .ttd-card:hover {
    transform: none;
  }

  .ttd-card:hover .ttd-card__media img {
    transform: none;
  }
}

/* ————————————————————————————————————————————————————————
   Home — philosophy block + resort slideshow
   ———————————————————————————————————————————————————————— */

.philosophy-story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.philosophy-story__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/hotel-page-hero-bg.png") center / cover no-repeat;
  transform: scale(1.04);
}

.philosophy-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 10, 24, 0.78) 0%,
    rgba(16, 24, 42, 0.72) 42%,
    rgba(20, 68, 78, 0.7) 100%
  );
}

.philosophy-story .container {
  position: relative;
  z-index: 1;
}

.philosophy-story__split {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 960px) {
  .philosophy-story__split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
    gap: 1.6rem;
  }
}

.philosophy-story__content,
.philosophy-story__visual {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(6, 12, 24, 0.42);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.philosophy-story__content {
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
  color: rgba(245, 250, 255, 0.95);
}

.philosophy-story__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: rgba(186, 239, 237, 0.95);
}

.philosophy-story__title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: #fff;
}

.philosophy-story__pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 1.05rem;
  display: grid;
  gap: 0.55rem;
}

.philosophy-story__pillars li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  line-height: 1.42;
  color: rgba(244, 249, 252, 0.96);
}

.philosophy-story__pillars i {
  margin-top: 0.15rem;
  color: #9fe4de;
}

.philosophy-story__line {
  margin: 0 0 0.42rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

.philosophy-story__body {
  margin: 0.75rem 0 0;
  line-height: 1.58;
  color: rgba(232, 243, 248, 0.95);
}

.philosophy-story__highlight {
  font-weight: 700;
  color: #b6f2ea;
  background: none;
}

.philosophy-story__visual {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.philosophy-story__visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.philosophy-story__quote {
  margin: 0;
  padding: 0.95rem 1rem 1.05rem;
  background: rgba(8, 12, 26, 0.72);
  color: rgba(243, 250, 252, 0.96);
}

.philosophy-story__quote p {
  margin: 0 0 0.45rem;
  font-size: 0.96rem;
  line-height: 1.55;
}

.philosophy-story__quote cite {
  font-style: normal;
  font-weight: 600;
  color: #9fe4de;
}

.philosophy-story__reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* About — premium “Stay” CTA (hero-style, glass panel, split desktop) */
.cta-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  color: #fff;
}

.cta-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../assets/hotel-page-hero-bg.png") center / cover no-repeat,
    var(--color-indigo-deep);
  transform: scale(1.02);
  transition: transform 1.2s ease;
}

.cta-premium:hover .cta-premium__bg {
  transform: scale(1.06);
}

.cta-premium__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(12, 10, 28, 0.82) 0%,
    rgba(30, 26, 54, 0.68) 38%,
    rgba(18, 48, 52, 0.75) 100%
  );
  pointer-events: none;
}

.cta-premium__container {
  position: relative;
  z-index: 2;
}

.cta-premium__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  max-width: 68rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .cta-premium__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem 2rem;
  }
}

.cta-premium__copy {
  text-align: center;
}

@media (min-width: 900px) {
  .cta-premium__copy {
    text-align: left;
  }
}

.cta-premium__glass {
  position: relative;
  margin-inline: auto;
  max-width: 36rem;
  padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
  text-align: inherit;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.06) 55%,
    rgba(95, 183, 185, 0.08) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 20px 50px rgba(12, 10, 28, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.cta-premium__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .cta-premium__highlights {
    justify-content: flex-start;
  }
}

.cta-premium__highlights li {
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.cta-premium__highlights li:hover {
  transform: translateY(-2px);
  background: rgba(95, 183, 185, 0.25);
}

.cta-premium__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(143, 212, 214, 0.95);
}

.cta-premium__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 4px 28px rgba(0, 0, 0, 0.35);
}

.cta-premium__lead {
  margin: 0 0 1.15rem;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.cta-premium__trust {
  margin-bottom: 1.35rem;
}

.cta-premium__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

@media (min-width: 900px) {
  .cta-premium__rating {
    justify-content: flex-start;
  }
}

.cta-premium__stars {
  color: #f4d03f;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.cta-premium__rating-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-premium__rating-text strong {
  color: #fff;
  font-size: 1rem;
}

.cta-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .cta-premium__actions {
    justify-content: flex-start;
  }
}

.cta-premium__btn {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease;
}

.cta-premium__btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.cta-premium__btn:active::after {
  width: 220%;
  height: 220%;
  opacity: 1;
  transition:
    width 0.45s ease-out,
    height 0.45s ease-out,
    opacity 0.55s ease;
}

.cta-premium__btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.cta-premium__btn:active {
  transform: translateY(0) scale(1);
}

.cta-premium__btn--outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-premium__btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.cta-premium__btn--wa {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  gap: 0.55rem;
}

.cta-premium__btn--wa:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
}

.cta-premium__figure {
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .cta-premium__figure {
    margin-inline: 0;
    margin-left: auto;
    max-width: none;
  }
}

.cta-premium__figure-frame {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 50px rgba(12, 10, 28, 0.5),
    0 0 0 1px rgba(143, 212, 214, 0.2);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.cta-premium__figure-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cta-premium__figure:hover .cta-premium__figure-frame {
  transform: scale(1.03) translateY(-4px);
  box-shadow:
    0 32px 60px rgba(12, 10, 28, 0.55),
    0 0 0 1px rgba(143, 212, 214, 0.35);
}

.cta-premium__figure-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-premium__figure-frame iframe,
.cta-premium__video {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border: 0;
}

.cta-premium__figure:hover .cta-premium__figure-frame img {
  transform: scale(1.06);
}

/* Scroll fade-in */
.cta-premium__reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition:
    opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-premium__reveal--delay {
  transition-delay: 0.15s;
}

.cta-premium--visible .cta-premium__reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cta-premium__bg,
  .cta-premium__figure-frame,
  .cta-premium__figure-frame img,
  .cta-premium__btn,
  .cta-premium__highlights li {
    transition-duration: 0.01ms !important;
  }

  .cta-premium:hover .cta-premium__bg {
    transform: scale(1.02);
  }

  .cta-premium__figure:hover .cta-premium__figure-frame {
    transform: none;
  }

  .cta-premium__figure:hover .cta-premium__figure-frame img {
    transform: none;
  }

  .cta-premium__reveal,
  .cta-premium__reveal--delay {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 380px) {
  .cta-premium__actions .btn {
    width: 100%;
  }
}

.home-slideshow {
  max-width: 62rem;
  margin-inline: auto;
}

.home-slideshow__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-slideshow__viewport {
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(16, 20, 44, 0.22);
  border: 1px solid rgba(95, 183, 185, 0.14);
  background: var(--color-indigo-deep);
  aspect-ratio: 16 / 9;
  max-height: min(74vh, 640px);
}

.home-slideshow__track {
  position: relative;
  height: 100%;
  min-height: 200px;
}

.home-slideshow__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(14px) scale(1.01);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  z-index: 0;
}

.home-slideshow__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.home-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.home-slideshow__slide.is-active:hover img {
  transform: scale(1.055);
}

.home-slideshow__slide figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.95rem 1.1rem 0.82rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background: linear-gradient(
    to top,
    rgba(10, 12, 30, 0.76) 0%,
    rgba(10, 12, 30, 0.5) 45%,
    rgba(10, 12, 30, 0.05) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-slideshow__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(12, 16, 38, 0.58);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(7, 11, 30, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition:
    transform 0.22s ease,
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.home-slideshow__nav:hover {
  background: rgba(10, 15, 36, 0.78);
  color: #d8fff8;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) scale(1.06);
}

.home-slideshow__nav:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.home-slideshow__nav--prev {
  left: 0.65rem;
}

.home-slideshow__nav--next {
  right: 0.65rem;
}

.home-slideshow__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.home-slideshow__dot {
  position: relative;
  width: 1.9rem;
  height: 0.28rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(72, 61, 139, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.24s ease, background 0.24s ease, width 0.24s ease;
}

.home-slideshow__dot:hover {
  background: rgba(72, 61, 139, 0.45);
}

.home-slideshow__dot.is-active {
  background: rgba(95, 183, 185, 0.28);
  width: 2.8rem;
  transform: translateY(-1px);
}

.home-slideshow__dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #8bf3e8 0%, #5fb7b9 60%, #3f9da0 100%);
  transform-origin: left center;
  animation: homeDotFill 5.5s linear infinite;
}

.home-slideshow__dot:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.home-slideshow__thumbs {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.home-slideshow__thumb {
  flex: 0 0 auto;
  width: 86px;
  height: 56px;
  border: 1px solid rgba(72, 61, 139, 0.24);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  cursor: pointer;
  opacity: 0.82;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

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

.home-slideshow__thumb:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.03);
}

.home-slideshow__thumb.is-active {
  opacity: 1;
  border-color: #d7b45b;
  box-shadow:
    0 0 0 1px rgba(215, 180, 91, 0.35),
    0 10px 18px rgba(31, 45, 84, 0.18);
}

.home-slideshow__thumb:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .home-slideshow__nav {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.86rem;
  }

  .home-slideshow__nav--prev {
    left: 0.35rem;
  }

  .home-slideshow__nav--next {
    right: 0.35rem;
  }

  .home-slideshow__slide figcaption {
    font-size: 0.85rem;
    padding: 0.75rem 0.9rem 0.65rem;
  }

  .home-slideshow__dot {
    width: 1.45rem;
  }

  .home-slideshow__dot.is-active {
    width: 2.1rem;
  }
}

@keyframes homeDotFill {
  from {
    transform: scaleX(0.12);
  }
  to {
    transform: scaleX(1);
  }
}

/* ————————————————————————————————————————————————————————
   Home — conversion: inline CTAs, trust + reviews block, sticky WhatsApp
   ———————————————————————————————————————————————————————— */

.site-body--fab {
  padding-bottom: 0;
}

.btn-cta-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #5fb7b9 0%, #5a4fb0 48%, #2d5f78 100%);
  box-shadow:
    0 8px 28px rgba(45, 38, 84, 0.32),
    0 3px 12px rgba(95, 183, 185, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.22s ease;
}

.btn-cta-gradient:hover {
  color: #fff !important;
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(45, 38, 84, 0.38),
    0 6px 18px rgba(95, 183, 185, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-cta-gradient:active {
  transform: translateY(-1px);
}

.btn-cta-gradient:focus-visible {
  outline: 3px solid var(--color-teal-light);
  outline-offset: 3px;
}

.btn-cta-gradient--compact {
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
}

.cta-inline {
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 241, 248, 0.92) 100%);
  border-block: 1px solid var(--color-border);
}

.cta-inline--soft {
  background: linear-gradient(180deg, rgba(250, 251, 253, 1) 0%, rgba(238, 241, 248, 0.65) 100%);
  border-block-color: rgba(72, 61, 139, 0.08);
}

.cta-inline__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}

.cta-inline__text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text);
  max-width: min(100%, 36rem);
  line-height: 1.5;
}

.cta-inline__urgency {
  color: var(--color-teal-hover);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

@media (max-width: 640px) {
  .cta-inline__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-inline__inner .btn-cta-gradient--compact {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.trust-cta-section {
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
}

.trust-cta-section__wrap {
  max-width: 68rem;
}

.trust-cta-section__head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.trust-cta-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
}

.trust-cta-section__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.trust-score {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  margin: 0 auto 1.25rem;
  padding: 0.65rem 1.35rem;
  background: var(--color-surface);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.trust-score__badge {
  color: #c9a227;
  font-size: 1.15rem;
  line-height: 1;
}

.trust-score__value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--color-indigo-deep);
  line-height: 1;
}

.trust-score__out-of {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-right: 0.15rem;
}

.trust-score__divider {
  display: inline-block;
  width: 1px;
  height: 1rem;
  background: var(--color-border);
  margin-inline: 0.15rem;
  vertical-align: middle;
}

.trust-cta-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

@media (min-width: 960px) {
  .trust-cta-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 2.5rem 3rem;
  }
}

.trust-cta-split__cta {
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(45, 38, 84, 0.1);
}

.trust-cta-split__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal-hover);
}

.trust-cta-split__headline {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  color: var(--color-indigo-deep);
}

.trust-cta-split__copy {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.trust-cta-split__urgency {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-indigo-deep);
  background: rgba(95, 183, 185, 0.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(95, 183, 185, 0.35);
}

.trust-cta-split__pulse {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #e85d4c;
  box-shadow: 0 0 0 0 rgba(232, 93, 76, 0.45);
  animation: trust-pulse 2s ease-out infinite;
}

@keyframes trust-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 93, 76, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(232, 93, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 93, 76, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-cta-split__pulse {
    animation: none;
  }

  .btn-cta-gradient {
    transition: box-shadow 0.2s ease;
  }
}

.trust-cta-split__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.75rem;
}

.trust-cta-split__ghost {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-cta-split__ghost:hover {
  color: var(--color-teal-hover);
}

.trust-cta-split__fineprint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  opacity: 0.9;
}

.trust-review-grid {
  display: grid;
  gap: 1.15rem;
}

.review-card {
  margin: 0;
  padding: 1.35rem 1.4rem 1.25rem;
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--color-border);
  box-shadow:
    0 4px 20px rgba(45, 38, 84, 0.06),
    0 12px 36px rgba(45, 38, 84, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  box-shadow:
    0 8px 28px rgba(45, 38, 84, 0.1),
    0 16px 44px rgba(45, 38, 84, 0.08);
  transform: translateY(-2px);
}

.review-card__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-indigo-deep);
  background: var(--color-teal-soft);
  border-radius: 999px;
}

.review-card__stars {
  color: #c9a227;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.review-card__quote {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-text);
}

.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-indigo-deep);
}

.review-card__city {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.review-card__city::before {
  content: "·";
  margin-right: 0.35rem;
  color: var(--color-border);
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.floating-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.22s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.22s ease;
}

.floating-contact__btn:hover {
  color: #fff !important;
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.floating-contact__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.floating-contact__btn--wa {
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
}

.floating-contact__btn--phone {
  background: linear-gradient(145deg, #5fb7b9 0%, #483d8b 100%);
}

.floating-contact__icon {
  display: block;
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  background: no-repeat center;
  background-size: contain;
}

.floating-contact__icon--wa {
  background-image: url("../assets/fab-whatsapp.svg");
}

.floating-contact__icon--phone {
  background-image: url("../assets/fab-phone.svg");
}

@media print {
  .floating-contact,
  .cta-inline,
  .tours-swiper-nav {
    display: none !important;
  }

  .site-body--fab {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-gradient:hover,
  .floating-contact__btn:hover,
  .review-card:hover,
  .g-review-card:hover {
    transform: none;
  }
}

/* Global mobile responsiveness polish */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 1.25rem, var(--max-w));
  }

  .section {
    padding: clamp(2.25rem, 8vw, 3.25rem) 0;
  }

  h1 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.22;
  }

  h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
    line-height: 1.26;
  }

  h3 {
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
    line-height: 1.3;
  }

  p,
  label,
  li,
  input,
  textarea,
  select {
    font-size: 0.95rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .section__intro p {
    font-size: 0.98rem;
  }

  .btn {
    min-height: 42px;
    padding: 0.62rem 1.05rem;
    font-size: 0.83rem;
    letter-spacing: 0.03em;
    border-radius: calc(var(--radius) - 2px);
  }

  .btn-cta-gradient {
    min-height: 42px;
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }

  .hero,
  .page-hero,
  .rooms-hero,
  .tour-hero {
    overflow: hidden;
  }

  .hero .btn,
  .page-hero .btn,
  .rooms-hero .btn,
  .tour-hero .btn,
  .room-feature__actions .btn,
  .tour-preview__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions,
  .rooms-hero__actions,
  .tour-hero__actions,
  .room-feature__actions,
  .tour-preview__actions,
  .trust-cta-split__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .contact-premium .contact-grid,
  .footer-grid,
  .split,
  .trek-hub-group,
  .tour-split,
  .tour-faq-split {
    grid-template-columns: 1fr !important;
  }

  .card,
  .tour-preview,
  .room-feature__inner,
  .hotel-hero-card,
  .contact-card,
  .review-card,
  .g-review-card {
    max-width: 100%;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  .tours-swiper,
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    touch-action: pan-y pinch-zoom;
  }

  .tours-swiper {
    overflow: hidden;
  }

  .tours-swiper .swiper-slide .tour-preview {
    height: auto;
  }

  .tours-swiper-nav {
    width: 2.3rem;
    height: 2.3rem;
  }

  .floating-contact {
    right: 0.65rem;
    bottom: 0.65rem;
    gap: 0.5rem;
  }

  .floating-contact__btn {
    width: 3rem;
    height: 3rem;
  }

  .floating-contact__icon {
    width: 1.55rem;
    height: 1.55rem;
  }
}

@media (max-width: 479px) {
  .container {
    width: min(100% - 1rem, var(--max-w));
  }

  p,
  label,
  li,
  input,
  textarea,
  select {
    font-size: 0.92rem;
  }

  .btn,
  .btn-cta-gradient {
    min-height: 40px;
    font-size: 0.79rem;
    padding-inline: 0.9rem;
  }
}

