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

:root {
  --white: #ffffff;
  --snow: #f7f5f0;
  --pearl: #f0ede5;
  --linen: #e8e2d6;
  --sand: #d9d0c0;
  --ink: #1c1a14;
  --ink2: #2e2b20;
  --slate: #52503f;
  --mist: #7a7560;
  --mist2: #a89f8a;
  /* New accent: warm terracotta-amber replacing cold gold */
  --gold: #a0622a;
  --gold2: #c07438;
  --gold3: #d98b45;
  --gold-light: #f5e8d5;
  --gold-pale: #faf3ea;
  /* New: sage green accent */
  --sage: #3d6b52;
  --sage2: #4e8267;
  --sage-light: #e4efe9;
  /* New: dusty rose accent for variety */
  --rose: #8b4a4a;
  --forest: #2a5c42;
  --forest2: #35705a;
  --sky: #1e3b5c;
  --rust: #8b3a1e;
  --border: #ddd8cc;
  --border2: #c4bcb0;
  --border-gold: rgba(192, 116, 56, 0.22);
  --border-gold2: rgba(192, 116, 56, 0.45);
  --shadow-xs: 0 1px 6px rgba(28, 26, 20, 0.06);
  --shadow-sm: 0 4px 20px rgba(28, 26, 20, 0.09);
  --shadow: 0 12px 48px rgba(28, 26, 20, 0.13);
  --shadow-lg: 0 24px 80px rgba(28, 26, 20, 0.18);
  --shadow-gold: 0 8px 36px rgba(192, 116, 56, 0.25);
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-serif: "Lora", Georgia, serif;
  --ff-body: "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 14px;
  --radius-lg: 22px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--pearl);
}
::-webkit-scrollbar-thumb {
  background: var(--gold2);
  border-radius: 4px;
}

/* ══════════════════════════════════
   LOADER
══════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition:
    opacity 0.9s ease,
    visibility 0.9s;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark {
  width: 72px;
  height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  animation: spin 2s linear infinite;
}
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border-top: 2px solid var(--gold2);
  animation: spin 1.4s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold2);
}
.loader-name {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.loader-name em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.loader-bar-wrap {
  width: 120px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
  border-radius: 1px;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  animation: fill 1.8s var(--ease) forwards;
}
@keyframes fill {
  to {
    width: 100%;
  }
}
.loader-caption {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist2);
  font-weight: 500;
}

/* ══════════════════════════════════
   TOP BAR
══════════════════════════════════ */
.topbar {
  background: var(--ink);
  padding: 9px 0;
  position: relative;
  z-index: 102;
}
.topbar-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.tb-phones {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.tb-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
}
.phone-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s;
}
.phone-pill:hover {
  border-color: rgba(176, 123, 42, 0.45);
  background: rgba(176, 123, 42, 0.08);
}
.pp-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.pp-dot.call {
  background: rgba(176, 123, 42, 0.15);
  border: 1px solid rgba(176, 123, 42, 0.35);
}
.pp-dot.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.pp-dot svg {
  width: 11px;
  height: 11px;
  fill: var(--gold2);
}
.pp-dot.wa svg {
  fill: #25d366;
}
.pp-info {
  line-height: 1.2;
}
.pp-label {
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.pp-num {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tb-loc::before {
  content: "◆";
  font-size: 4px;
  color: var(--gold2);
}
.tb-btn {
  padding: 6px 18px;
  border-radius: 22px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.tb-btn.gold {
  background: var(--gold2);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(176, 123, 42, 0.35);
}
.tb-btn.gold:hover {
  background: var(--gold3);
  transform: translateY(-1px);
}
.tb-btn.green {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tb-btn.green:hover {
  background: rgba(37, 211, 102, 0.18);
}
.tb-btn.outline {
  background: transparent;
  color: var(--mist);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tb-btn.outline:hover {
  border-color: var(--gold2);
  color: var(--gold2);
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
nav {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 998;
  backdrop-filter: blur(24px) saturate(1.6);
  transition: all 0.35s var(--ease);
}
nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 3px 28px rgba(24, 22, 15, 0.07);
}
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.logo-main {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: font-size 0.3s;
}
nav.scrolled .logo-main {
  font-size: 21px;
}
.logo-main em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.logo-sub {
  font-size: 6.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mist2);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mist);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--gold2);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  left: 0;
  right: 0;
}
.nav-cta {
  background: var(--gold2) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 24px !important;
  font-size: 11px !important;
  box-shadow: 0 4px 18px rgba(176, 123, 42, 0.28) !important;
  transition: all 0.25s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold3) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(176, 123, 42, 0.38) !important;
}
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: var(--border-gold2);
}
.hamburger span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
  transition: all 0.3s;
  border-radius: 1px;
}
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9997;
  padding: 36px;
  flex-direction: column;
  overflow-y: auto;
}
.mob-menu.open {
  display: flex;
}
.mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 52px;
}
.mob-logo {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--ink);
}
.mob-logo em {
  color: var(--gold);
  font-style: italic;
}
.mob-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-link {
  color: var(--mist);
  text-decoration: none;
  font-size: 34px;
  font-family: var(--ff-display);
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-link:hover {
  color: var(--gold2);
}
.mob-link span {
  font-size: 18px;
  font-family: var(--ff-body);
  opacity: 0.4;
}
.mob-cta-row {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob-cta {
  padding: 16px 24px;
  border-radius: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mob-cta.primary {
  background: var(--gold2);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(176, 123, 42, 0.3);
}
.mob-cta.wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

/* ══════════════════════════════════
   HERO — Immersive Full-Bleed Cinema
══════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

/* Full-bleed slideshow as background */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 7s linear;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Layered overlays for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(28, 26, 20, 0.82) 0%,
      rgba(28, 26, 20, 0.55) 50%,
      rgba(28, 26, 20, 0.2) 100%
    ),
    linear-gradient(to top, rgba(28, 26, 20, 0.7) 0%, transparent 45%);
}
.hero-overlay2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at 70% 50%,
    transparent 30%,
    rgba(28, 26, 20, 0.3) 100%
  );
}

/* Animated grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  animation: grainDrift 8s steps(1) infinite;
}
@keyframes grainDrift {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -10%;
  }
  20% {
    background-position: -15% 5%;
  }
  30% {
    background-position: 7% -25%;
  }
  40% {
    background-position: -5% 25%;
  }
  50% {
    background-position: -15% 10%;
  }
  60% {
    background-position: 15% 0;
  }
  70% {
    background-position: 0 15%;
  }
  80% {
    background-position: 3% 35%;
  }
  90% {
    background-position: -10% 10%;
  }
  100% {
    background-position: 0 0;
  }
}

/* Decorative thin horizontal line */
.hero-line {
  position: absolute;
  z-index: 3;
  left: 80px;
  right: 80px;
  bottom: 90px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(192, 116, 56, 0.6),
    rgba(192, 116, 56, 0.15) 60%,
    transparent
  );
  transform-origin: left;
  transform: scaleX(0);
  animation: lineGrow 1s 1.6s var(--ease) forwards;
}
@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Hero photo caption — identifies what's actually in the current slide */
.hero-photo-caption {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 11px;
  border-radius: 20px;
  background: rgba(20, 18, 14, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.8s 2s ease forwards;
}
.hero-photo-caption svg {
  flex-shrink: 0;
  opacity: 0.75;
}
@media (max-width: 640px) {
  .hero-photo-caption {
    top: 16px;
    right: 16px;
    font-size: 10px;
    padding: 6px 12px 6px 9px;
  }
}

/* Old canvas elements hidden */
#hero-canvas {
  display: none;
}
.hero-grid-bg,
.hero-light-sweep,
.orb,
.hero-particles,
.hero-arc {
  display: none !important;
}

/* Hero frame corners */
.hero-frame {
  position: absolute;
  inset: 28px;
  z-index: 3;
  pointer-events: none;
}
.hfc {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(192, 116, 56, 0.45);
  border-style: solid;
}
.hfc.tl {
  top: 0;
  left: 0;
  border-width: 1.5px 0 0 1.5px;
}
.hfc.tr {
  top: 0;
  right: 0;
  border-width: 1.5px 1.5px 0 0;
}
.hfc.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1.5px 1.5px;
}
.hfc.br {
  bottom: 0;
  right: 0;
  border-width: 0 1.5px 1.5px 0;
}
.hfc {
  opacity: 0;
  animation: fadeIn 0.8s 2s ease forwards;
}

/* Hero content — left-aligned over image */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  max-width: 68%;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--gold3);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s 0.4s var(--ease) forwards;
}
.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold3);
  opacity: 0.7;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(56px, 7vw, 106px);
  font-weight: 400;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 0;
  letter-spacing: -0.025em;
  opacity: 0;
  animation: heroTitleIn 1.1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}
.hero-h1 .line1 {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.44em;
  letter-spacing: 0.02em;
  font-family: var(--ff-serif);
  margin-bottom: 4px;
}
.hero-h1 .line2 {
  display: block;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.9;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.hero-h1 .line3 {
  display: block;
  font-style: italic;
  color: var(--gold3);
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.03em;
  font-family: var(--ff-serif);
  margin-top: 12px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 32px 0 44px;
  line-height: 1.95;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.95s var(--ease) forwards;
}
.hero-tagline strong {
  color: var(--gold3);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s var(--ease) forwards;
}

.btn-hero-primary {
  background: var(--gold2);
  color: var(--white);
  padding: 17px 42px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 40px rgba(192, 116, 56, 0.45);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold3);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hero-primary:hover::before {
  transform: translateX(0);
}
.btn-hero-primary span,
.btn-hero-primary svg {
  position: relative;
  z-index: 1;
}
.btn-hero-primary svg {
  transition: transform 0.3s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.btn-hero-primary:hover svg {
  transform: translateX(5px);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(192, 116, 56, 0.55);
}

.btn-hero-sec {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 38px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.btn-hero-sec:hover {
  border-color: var(--gold3);
  color: var(--gold3);
  transform: translateY(-2px);
}

/* Slide nav */
.hero-nav {
  position: absolute;
  bottom: 44px;
  right: 80px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 0.9s 1.4s ease forwards;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.8);
}
.hero-arrow:hover {
  border-color: var(--gold3);
  background: rgba(192, 116, 56, 0.25);
  color: #fff;
  transform: scale(1.08);
}
.hero-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold3);
  width: 24px;
  border-radius: 3px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 80px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.9s 1.6s var(--ease) forwards;
}
.hero-scroll-hint:hover {
  color: var(--gold3);
}
.hero-scroll-line {
  width: 32px;
  height: 1px;
  background: rgba(192, 116, 56, 0.5);
}

/* Vertical label on left edge */
.hero-vertical-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 4;
  font-size: 7px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

/* Hero stats — redesigned as floating card bottom-right */
.hero-stats {
  display: none;
}

/* New inline stats row at bottom of hero content */
.hero-stats-row {
  display: flex;
  gap: 0;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 1.25s var(--ease) forwards;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  align-self: flex-start;
}
.hs-item {
  padding: 14px 24px;
  position: relative;
}
.hs-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.hs-num {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hs-lbl {
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* Photo stack hidden in new design */
.hero-photo-stack {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  background: var(--pearl);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist2);
  padding: 0 32px;
  white-space: nowrap;
  position: relative;
}
.marquee-item::after {
  content: "✦";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold2);
  font-size: 7px;
}

/* ══════════════════════════════════
   TRUST STRIP
══════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  flex: 1;
  min-width: 170px;
  position: relative;
  transition: background 0.25s;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--border);
  padding-left: 32px;
  margin-left: 0;
}
.trust-item:hover {
  background: var(--gold-pale);
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-light);
  border: 1.5px solid var(--border-gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold2);
}
.trust-icon.awesome-assam {
  background: var(--white);
  padding: 3px;
}
.trust-icon.awesome-assam img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
}
.trust-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.trust-text span {
  font-size: 11px;
  color: var(--mist2);
}

/* ══════════════════════════════════
   SECTIONS & LAYOUT
══════════════════════════════════ */
section {
  padding: 96px 0;
}
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 44px;
}
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold2);
  border-radius: 1px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-sub {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.85;
  max-width: 560px;
  font-weight: 300;
}
.text-center {
  text-align: center;
}
.text-center .section-eyebrow {
  justify-content: center;
}
.text-center .section-sub {
  margin: 0 auto;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════
   DESTINATIONS GRID
══════════════════════════════════ */
#destinations {
  background: var(--snow);
}
.dest-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 9px 22px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--mist);
  cursor: pointer;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(176, 123, 42, 0.28);
}
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .states-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .states-grid {
    grid-template-columns: 1fr;
  }
}
.state-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  aspect-ratio: 3/4;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s;
  box-shadow: var(--shadow-sm);
}
.state-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.state-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
  transition:
    transform 0.7s var(--ease),
    filter 0.5s;
}
.state-card:hover .state-card-img {
  transform: scale(1.07);
  filter: saturate(1.05);
}
.state-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 22, 15, 0.88) 0%,
    rgba(24, 22, 15, 0.25) 50%,
    rgba(24, 22, 15, 0.08) 100%
  );
}
.state-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(176, 123, 42, 0.9);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.state-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
}
.state-num {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.state-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 7px;
}
.state-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.state-guide-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.state-guide-link:hover {
  border-color: var(--gold3);
}
.state-cta {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(176, 123, 42, 0.8);
  border: 1.5px solid rgba(176, 123, 42, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s;
}
.state-card:hover .state-cta {
  opacity: 1;
  transform: scale(1);
}
.state-cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
}

/* ══════════════════════════════════
   SIGNATURE ITINERARIES
══════════════════════════════════ */
#packages {
  background: var(--white);
  padding: 96px 0;
}
.pkg-head {
  text-align: center;
  margin-bottom: 56px;
}
.itin-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.itin-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.itin-item:hover {
  border-color: var(--border-gold2);
  box-shadow: var(--shadow-sm);
}
.itin-item.open {
  border-color: var(--gold2);
  box-shadow: var(--shadow-gold);
}
.itin-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.itin-header:hover {
  background: var(--gold-pale);
}
.itin-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--sand);
  transition: color 0.3s;
  min-width: 52px;
}
.itin-item.open .itin-num {
  color: var(--gold2);
}
.itin-info {
  flex: 1;
  min-width: 0;
}
.itin-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.itin-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.itin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--mist);
  background: var(--pearl);
  padding: 4px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.itin-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--mist2);
}
.itin-badge.highlight {
  background: var(--gold-light);
  color: var(--gold);
  border-color: var(--border-gold);
}
.itin-badge.mizo {
  background: rgba(27, 92, 75, 0.08);
  color: var(--forest);
  border-color: rgba(27, 92, 75, 0.2);
}
.itin-price-col {
  text-align: right;
  flex-shrink: 0;
}
.itin-price {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}
.itin-price-sub {
  font-size: 10px;
  color: var(--mist2);
  letter-spacing: 0.06em;
}
.itin-chevron {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
  background: var(--white);
}
.itin-item.open .itin-chevron {
  border-color: var(--gold2);
  background: var(--gold2);
  transform: rotate(180deg);
}
.itin-chevron svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--mist);
  stroke-width: 2.5;
  transition: stroke 0.35s;
}
.itin-item.open .itin-chevron svg {
  stroke: var(--white);
}
.itin-body {
  display: none;
  padding: 0 32px 32px;
}
.itin-item.open .itin-body {
  display: block;
}
.itin-route {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 18px 0;
  margin-bottom: 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.itin-stop {
  font-size: 11px;
  font-weight: 600;
  color: var(--mist);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.itin-stop:first-child {
  padding-left: 0;
}
.itin-stop:not(:last-child)::after {
  content: "→";
  color: var(--gold2);
  font-size: 12px;
}
.sub-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .sub-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .sub-cards {
    grid-template-columns: 1fr;
  }
}
.sub-card {
  background: var(--snow);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.sub-card:hover {
  border-color: var(--border-gold2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.sub-card-img {
  height: 140px;
  overflow: hidden;
  position: relative;
}
.sub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: saturate(0.9);
}
.sub-card:hover .sub-card-img img {
  transform: scale(1.07);
  filter: saturate(1);
}
.sub-card-fb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--linen), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.sub-card-body {
  padding: 14px;
}
.sub-card-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.sub-card-detail {
  font-size: 11px;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 8px;
}
.sub-card-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 3px 9px;
  border-radius: 6px;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .day-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .day-grid {
    grid-template-columns: 1fr;
  }
}
.day-card {
  background: var(--snow);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color 0.3s;
}
.day-card:hover {
  border-color: var(--border-gold2);
}
.day-num {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 7px;
}
.day-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.day-desc {
  font-size: 12px;
  color: var(--mist);
  line-height: 1.75;
}
.itin-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.btn-book {
  background: var(--gold2);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(176, 123, 42, 0.28);
}
.btn-book:hover {
  background: var(--gold3);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(176, 123, 42, 0.4);
}
.btn-outline {
  background: var(--white);
  color: var(--mist);
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--border-gold2);
  color: var(--gold2);
}

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
#why {
  background: var(--pearl);
  position: relative;
  overflow: hidden;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.why-image-stack {
  position: relative;
  height: 560px;
}
.why-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 82%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-img-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.why-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-img-fb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest), var(--forest2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.18);
}
.why-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold2);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow:
    0 0 0 7px var(--white),
    0 0 0 9px rgba(176, 123, 42, 0.18),
    var(--shadow-gold);
}
.why-badge-num {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.why-badge-lbl {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 3px;
  opacity: 0.88;
}
.why-feats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.why-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border2);
}
.why-feat:first-child {
  border-top: 1px solid var(--border2);
}
.why-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--gold-light);
  border: 1.5px solid var(--border-gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-feat-icon svg {
  width: 19px;
  height: 19px;
  fill: var(--gold2);
}
.why-feat-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-feat-desc {
  font-size: 12.5px;
  color: var(--mist);
  line-height: 1.75;
}

/* ══════════════════════════════════
   FESTIVALS
══════════════════════════════════ */
#festivals {
  background: var(--white);
}
.fest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
@media (max-width: 1000px) {
  .fest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .fest-grid {
    grid-template-columns: 1fr;
  }
}
.fest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.fest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.fest-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.fest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
  filter: saturate(0.9);
}
.fest-card:hover .fest-img img {
  transform: scale(1.08);
  filter: saturate(1);
}
.fest-img-fb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.fest-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 22, 15, 0.65),
    transparent 50%
  );
}
.fest-body {
  padding: 18px;
  background: var(--white);
}
.fest-month {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 700;
  margin-bottom: 6px;
}
.fest-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.fest-state {
  font-size: 11.5px;
  color: var(--mist);
}
.fest-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.fest-card:hover::after {
  transform: scaleX(1);
}

/* ══════════════════════════════════
   EXPLORE TABS
══════════════════════════════════ */
#explore {
  background: var(--pearl);
  padding: 96px 0;
}
.explore-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.tab-btn {
  padding: 13px 22px;
  border: none;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mist);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  flex: 1;
  border-right: 1px solid var(--border);
}
.tab-btn:last-child {
  border-right: none;
}
.tab-btn.active {
  background: var(--gold2);
  color: var(--white);
}
.tab-btn:hover:not(.active) {
  background: var(--gold-pale);
  color: var(--ink);
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}
.explore-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.explore-card:hover {
  border-color: var(--border-gold2);
  background: var(--gold-pale);
  box-shadow: var(--shadow-sm);
}
.explore-card-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.explore-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--border-gold2);
}
.explore-list {
  list-style: none;
}
.explore-list li {
  font-size: 12px;
  color: var(--mist);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.explore-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold2);
  flex-shrink: 0;
  margin-top: 6px;
}
.explore-list li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════
   VISUAL JOURNEY (GALLERY SLIDER)
══════════════════════════════════ */
#gallery {
  background: var(--ink);
  padding: 96px 0;
  overflow: hidden;
}
#gallery .section-title {
  color: var(--white);
}
#gallery .section-eyebrow {
  color: var(--gold3);
}
#gallery .section-eyebrow::before {
  background: var(--gold3);
}
#gallery .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gal-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}
.gal-btn:hover {
  border-color: rgba(176, 123, 42, 0.6);
  background: rgba(176, 123, 42, 0.18);
  color: var(--gold3);
}
.gal-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.gallery-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gallery-track {
  display: flex;
  gap: 14px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.g-item {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.g-item img {
  display: block;
  height: 280px;
  width: 320px;
  object-fit: cover;
  filter: saturate(0.85);
  transition:
    filter 0.4s,
    transform 0.5s;
  border-radius: var(--radius);
}
.g-item.tall img {
  height: 360px;
}
.g-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.03);
}
.g-fb {
  height: 280px;
  width: 320px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-radius: var(--radius);
}
.g-item.tall .g-fb {
  height: 360px;
}
.gallery-progress {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  justify-content: center;
}
.gp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.gp-dot.active {
  background: var(--gold2);
  width: 20px;
  border-radius: 3px;
}

/* ══════════════════════════════════
   GALLERY MOSAIC (new)
══════════════════════════════════ */
.gal-mosaic {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.gal-row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.gal-row-1 {
  height: 380px;
}
.gal-row-2 {
  height: 220px;
}
.gal-row-3 {
  height: 260px;
}
.gal-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--ink2);
  cursor: default;
}
.gal-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition:
    transform 0.7s var(--ease),
    filter 0.5s;
  will-change: transform;
}
.gal-cell:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.gal-hero-tall {
  flex: 0 0 36%;
}
.gal-col-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.gal-col-stack .gal-cell {
  flex: 1;
}
.gal-sq {
  flex: 1;
}
.gal-wide {
  flex: 0 0 50%;
}
.gal-row-3 .gal-cell:not(.gal-wide) {
  flex: 1;
}
.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(
    to top,
    rgba(24, 22, 15, 0.72) 0%,
    transparent 100%
  );
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s,
    transform 0.35s;
  pointer-events: none;
}
.gal-cell:hover .gal-caption {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .gal-row-1 {
    height: 280px;
  }
  .gal-col-stack:last-child {
    display: none;
  }
  .gal-hero-tall {
    flex: 0 0 48%;
  }
  .gal-row-3 {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .gal-row {
    flex-direction: column;
    height: auto;
  }
  .gal-row-1 .gal-cell,
  .gal-row-2 .gal-cell,
  .gal-row-3 .gal-cell {
    height: 200px;
    flex: none !important;
    width: 100% !important;
  }
  .gal-col-stack {
    flex-direction: row;
    gap: 10px;
  }
  .gal-col-stack .gal-cell {
    height: 160px !important;
  }
  .gal-row-1 {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
  }
  .gal-hero-tall {
    flex: 0 0 100% !important;
    height: 220px;
  }
}

/* ══════════════════════════════════
   HOMESTAY — Redesigned
══════════════════════════════════ */
#homestay {
  background: linear-gradient(180deg, var(--white) 0%, var(--snow) 100%);
  position: relative;
  overflow: hidden;
}
#homestay::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(192, 116, 56, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* New premium layout */
.hs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
@media (max-width: 900px) {
  .hs-wrap {
    grid-template-columns: 1fr;
  }
}

.hs-visual {
  position: relative;
  min-height: 600px;
  background: var(--ink2);
  overflow: hidden;
}
@media (max-width: 900px) {
  .hs-visual {
    min-height: 360px;
  }
}

.hs-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s linear;
}
.hs-visual:hover .hs-main-img {
  transform: scale(1.05);
}

.hs-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 26, 20, 0.75) 0%,
    rgba(28, 26, 20, 0.1) 55%,
    transparent 100%
  );
}

.hs-visual-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 18px;
  border-radius: 40px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hs-visual-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
}

.hs-thumb-row {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
}
.hs-thumb {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.hs-thumb:hover {
  border-color: var(--gold3);
  transform: translateY(-3px);
}
.hs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hs-thumb-fb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--forest), var(--sage2));
}

.hs-content {
  background: var(--white);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .hs-content {
    padding: 44px 36px;
  }
}
@media (max-width: 900px) {
  .hs-content {
    padding: 40px 32px;
  }
}

.hs-content .section-eyebrow {
  margin-bottom: 12px;
}
.hs-content .section-title {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
  line-height: 1.22;
}
.hs-desc {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 32px;
  font-family: var(--ff-serif);
}

.hs-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
@media (max-width: 480px) {
  .hs-features {
    grid-template-columns: 1fr;
  }
}

.hs-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--snow);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.hs-feat:hover {
  border-color: var(--border-gold2);
  box-shadow: var(--shadow-xs);
}
.hs-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--gold-light);
  border: 1.5px solid var(--border-gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.hs-feat-body {
}
.hs-feat-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.hs-feat-sub {
  font-size: 11px;
  color: var(--mist2);
  line-height: 1.5;
}

.hs-rate-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gold-pale);
  border: 1.5px solid var(--border-gold2);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.hs-rate-price {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hs-rate-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist2);
  font-weight: 600;
  margin-top: 3px;
}
.hs-rate-divider {
  width: 1px;
  height: 44px;
  background: var(--border-gold2);
  flex-shrink: 0;
}
.hs-rate-note {
  font-size: 12.5px;
  color: var(--mist);
  line-height: 1.6;
}
.hs-rate-note strong {
  color: var(--ink);
}

.hs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Old styles kept for compat but overridden */
.homestay-layout {
  display: none !important;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
#testimonials {
  background: var(--snow);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi-card {
  background: var(--white);
  padding: 34px 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: var(--border-gold2);
  box-shadow: var(--shadow);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.star {
  font-size: 13px;
  color: var(--gold2);
}
.testi-text {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--ff-serif);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(176, 123, 42, 0.22);
}
.testi-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
  margin-bottom: 2px;
}
.testi-from {
  font-size: 11px;
  color: var(--mist2);
}
.testi-q {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--ff-display);
  font-size: 72px;
  line-height: 0.8;
  color: rgba(176, 123, 42, 0.07);
  font-weight: 700;
  transition: color 0.3s;
}
.testi-card:hover .testi-q {
  color: rgba(176, 123, 42, 0.13);
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.ci-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 38px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:first-child {
  border-top: 1px solid var(--border);
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--gold-light);
  border: 1.5px solid var(--border-gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ci-icon svg {
  width: 19px;
  height: 19px;
  fill: var(--gold2);
}
.ci-label {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist2);
  margin-bottom: 4px;
  font-weight: 600;
}
.ci-val,
.ci-val a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.ci-val a:hover {
  color: var(--gold2);
}
.enquiry-form {
  background: var(--snow);
  border: 1.5px solid var(--border);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  .enquiry-form {
    padding: 32px 24px;
  }
}
.form-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--mist);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-input::placeholder {
  color: var(--mist2);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold2);
  box-shadow: 0 0 0 3px rgba(176, 123, 42, 0.09);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.form-select {
  cursor: pointer;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold2);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-top: 6px;
  box-shadow: 0 6px 24px rgba(176, 123, 42, 0.3);
}
.btn-submit:hover {
  background: var(--gold3);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(176, 123, 42, 0.4);
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 36px;
  color: var(--ink);
}
.form-success .check-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(34, 112, 92, 0.1);
  border: 2px solid var(--forest2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.form-success h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--mist);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--ink2);
}
.footer-gold {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold2),
    var(--gold3),
    var(--gold2),
    transparent
  );
}
.footer-top {
  max-width: 1380px;
  margin: 0 auto;
  padding: 72px 44px 52px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.footer-brand-logo {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.footer-brand-logo em {
  color: var(--gold2);
  font-style: italic;
  font-weight: 400;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-assam-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 6px 14px 6px 6px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--pearl);
}
.footer-assam-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}
.footer-assam-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--slate);
}
.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.25s;
}
.soc-btn:hover {
  border-color: rgba(176, 123, 42, 0.5);
  background: rgba(176, 123, 42, 0.12);
  color: var(--gold3);
}
.footer-col h4 {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--gold3);
}
.footer-links a::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold2);
  opacity: 0.5;
  flex-shrink: 0;
}
.footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold3);
}

/* ══════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 995;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.25s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: waPulse 2.4s infinite;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-stats {
    display: none;
  }
  .hero-content {
    max-width: 70% !important;
    padding: 0 52px;
  }
}
@media (max-width: 960px) {
  .hero-content {
    padding: 0 44px !important;
    max-width: 82% !important;
  }
  .hero-overlay {
    background:
      linear-gradient(
        to right,
        rgba(28, 26, 20, 0.88) 0%,
        rgba(28, 26, 20, 0.72) 60%,
        rgba(28, 26, 20, 0.4) 100%
      ),
      linear-gradient(to top, rgba(28, 26, 20, 0.7) 0%, transparent 45%);
  }
}
@media (max-width: 1000px) {
  .nav-links,
  .topbar,
  .tb-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* prevent iOS Safari auto-zoom on focus */
  }
  .hero-content {
    padding: 0 28px !important;
    max-width: 100% !important;
  }
  .hero-scroll-hint {
    left: 28px;
    bottom: 24px;
  }
  .hero-nav {
    right: 28px;
    bottom: 24px;
  }
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 24px;
    align-self: stretch;
  }
  .hs-item {
    padding: 10px 18px;
  }
  section {
    padding: 64px 0;
  }
  .container {
    padding: 0 24px;
  }
  footer .footer-top {
    padding: 48px 24px 36px;
  }
  footer .footer-bottom {
    padding: 16px 24px;
  }
  .hero-vertical-label {
    display: none;
  }
  .hero-line {
    left: 28px;
    right: 28px;
  }
}
@media (max-width: 560px) {
  .hero-h1 {
    font-size: clamp(40px, 11vw, 66px);
  }
  .hero-tagline {
    font-size: 14px;
    margin: 22px 0 32px;
  }
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 24px;
  }
  .hs-item {
    padding: 12px 18px;
  }
  .hero-content {
    max-width: 100% !important;
  }
}

/* ══════════════════════════════════
   WHATSAPP HOMESTAY BUTTON
══════════════════════════════════ */
.btn-wa-homestay {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 28px;
  background: rgba(37, 211, 102, 0.08);
  color: #1a9e4a;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.btn-wa-homestay:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}
.btn-wa-homestay:hover svg {
  fill: var(--white) !important;
}

/* ══════════════════════════════════
   FESTIVAL MODAL
══════════════════════════════════ */
.fest-card {
  cursor: pointer;
}
.fest-card .fest-more-hint {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-top: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.25s;
}
.fest-card:hover .fest-more-hint {
  opacity: 1;
}

/* Modal overlay */
#festModal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 26, 20, 0);
  pointer-events: none;
  transition: background 0.35s var(--ease);
}
#festModal.open {
  background: rgba(28, 26, 20, 0.72);
  pointer-events: all;
  backdrop-filter: blur(6px);
}
.fest-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.4s var(--ease-spring),
    opacity 0.35s var(--ease);
  position: relative;
}
#festModal.open .fest-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.fest-modal-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.fest-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.fest-modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 26, 20, 0.75) 0%,
    transparent 55%
  );
}
.fest-modal-img-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
}
.fmt-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold3);
  font-weight: 700;
  margin-bottom: 6px;
}
.fmt-name {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.fest-modal-body {
  padding: 28px 32px 32px;
}
.fmt-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.fmt-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--border-gold2);
}
.fmt-tag.green {
  background: rgba(37, 211, 102, 0.07);
  color: #1a9e4a;
  border-color: rgba(37, 211, 102, 0.25);
}
.fmt-desc {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 22px;
  font-family: var(--ff-serif);
}
.fmt-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.fmt-detail {
  background: var(--snow);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.fmt-detail-label {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist2);
  font-weight: 700;
  margin-bottom: 4px;
}
.fmt-detail-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.fmt-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fmt-btn-book {
  flex: 1;
  padding: 13px 20px;
  background: var(--gold2);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(176, 123, 42, 0.3);
}
.fmt-btn-book:hover {
  background: var(--gold3);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(176, 123, 42, 0.4);
}
.fmt-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: rgba(37, 211, 102, 0.07);
  color: #1a9e4a;
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  border-radius: 28px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.fmt-btn-wa:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.fmt-btn-wa:hover svg {
  fill: var(--white) !important;
}
.fmt-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(28, 26, 20, 0.45);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
  font-size: 18px;
  line-height: 1;
  z-index: 1;
}
.fmt-close:hover {
  background: rgba(28, 26, 20, 0.75);
}
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9990;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid rgba(192, 116, 56, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(28, 26, 20, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s,
    transform 0.35s var(--ease),
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--gold2);
  border-color: var(--gold3);
  box-shadow: 0 8px 32px rgba(192, 116, 56, 0.4);
  transform: translateY(-3px);
}
#scrollTop svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s;
}
#scrollTop:hover svg {
  transform: translateY(-2px);
}

/* ══════════════════════════════════
   ENHANCED SECTION ANIMATIONS
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════
   NAVBAR SCROLL ENHANCEMENT
══════════════════════════════════ */
nav.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom-color: var(--border) !important;
  box-shadow: 0 2px 32px rgba(28, 26, 20, 0.09) !important;
}

/* ══════════════════════════════════
   ENHANCED CARD HOVER ANIMATIONS
══════════════════════════════════ */
.state-card {
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.state-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.fest-card {
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.fest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-card {
  transition: all 0.35s var(--ease);
  transform: translateY(0);
}
.testi-card:hover {
  transform: translateY(-4px);
}

/* ══════════════════════════════════
   MARQUEE STRIP UPGRADE
══════════════════════════════════ */
.marquee-strip {
  background: var(--ink);
  border-top: none;
  border-bottom: none;
  padding: 12px 0;
  overflow: hidden;
}
.marquee-item {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9.5px;
}
.marquee-item::after {
  color: var(--gold3);
}

/* ══════════════════════════════════
   TRUST STRIP UPGRADE
══════════════════════════════════ */
.trust-strip {
  background: var(--pearl);
  border-bottom: 1px solid var(--border);
}
.trust-item:hover {
  background: var(--gold-pale);
}

/* ══════════════════════════════════
   SECTION EYEBROW ACCENT LINE ANIM
══════════════════════════════════ */
.section-eyebrow::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease);
}
.visible .section-eyebrow::before,
.section-eyebrow::before {
  transform: scaleX(1);
}

/* Loader colors update */
.loader-mark::after {
  border-top-color: var(--gold2);
}
.loader-inner {
  background: var(--gold2);
}
.loader-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold3));
}
.loader-name em {
  color: var(--gold);
}

/* Form focus glow */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold2);
  box-shadow: 0 0 0 3px rgba(192, 116, 56, 0.12);
}

/* ══════════════════════════════════
   WHITE THEME — LIGHTEN TOP BAR, MARQUEE, GALLERY, SCROLL-TOP
   (hero + photo-card overlays stay dark for legibility over images)
══════════════════════════════════ */
.topbar {
  background: var(--pearl);
  border-bottom: 1px solid var(--border);
}
.tb-sep {
  background: var(--border2);
}
.phone-pill {
  border-color: var(--border);
}
.pp-label {
  color: var(--mist2);
}
.pp-num {
  color: var(--ink);
}
.tb-loc {
  color: var(--mist2);
}

.marquee-strip {
  background: var(--pearl);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-item {
  color: var(--mist2);
}

#gallery {
  background: var(--white);
}
#gallery .section-title {
  color: var(--ink);
}
#gallery .section-sub {
  color: var(--mist);
}
.gal-btn {
  border-color: var(--border2);
  background: var(--pearl);
  color: var(--mist);
}
.gal-btn:hover {
  color: var(--gold);
}
.gal-cell {
  background: var(--pearl);
}
.gp-dot {
  background: var(--border2);
}

#scrollTop {
  background: var(--white);
  border-color: var(--border-gold2);
  color: var(--gold2);
  box-shadow: var(--shadow-sm);
}
#scrollTop:hover {
  background: var(--gold2);
  color: var(--white);
}

footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-brand-logo {
  color: var(--ink);
}
.footer-brand p {
  color: var(--mist);
}
.soc-btn {
  border-color: var(--border);
  color: var(--mist);
}
.footer-col h4 {
  color: var(--mist2);
}
.footer-links a {
  color: var(--slate);
}
.footer-bottom {
  border-top-color: var(--border);
}
.footer-bottom span,
.footer-bottom-links a {
  color: var(--mist2);
}

/* ══════════════════════════════════
   ANIMATED COUNTER SHIMMER
══════════════════════════════════ */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.hs-num.counting {
  background: linear-gradient(
    90deg,
    #fff 0%,
    var(--gold3) 50%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.5s linear;
}

/* ══════════════════════════════════
   FAQ / LEGAL ACCORDION
══════════════════════════════════ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold2);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-a {
  padding: 0 4px 22px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--slate);
}
.legal-strip .faq-item summary {
  font-size: 14px;
}

/* ══════════════════════════════════
   PACKAGE / DESTINATION PAGES
   New page type introduced for per-package and per-destination SEO
   pages - reuses existing tokens/classes (itin-badge, section-title,
   btn-book, hs-rate-banner, explore-grid) wherever possible so these
   pages read as native to the site rather than a bolted-on template.
══════════════════════════════════ */
.breadcrumb {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.breadcrumb a:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.breadcrumb span[aria-current] {
  color: var(--gold3);
}

.pkg-page-hero {
  position: relative;
  padding: 150px 0 48px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.pkg-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 14, 0.75) 0%,
    rgba(20, 18, 14, 0.55) 60%,
    rgba(20, 18, 14, 0.85) 100%
  );
}
.pkg-page-hero .container {
  position: relative;
  z-index: 1;
}
.pkg-page-h1 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  margin: 16px 0 18px;
  line-height: 1.1;
}
.pkg-page-hero .itin-route {
  margin-top: 4px;
}

.pkg-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.pkg-page-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 900px) {
  .pkg-page-layout {
    grid-template-columns: 1fr;
  }
  .pkg-page-sidebar {
    position: static;
  }
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .index-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .index-grid {
    grid-template-columns: 1fr;
  }
}
.index-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.index-card:hover {
  border-color: var(--border-gold2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.index-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.index-card-body {
  padding: 18px 20px;
}
.index-card-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.index-card-sub {
  font-size: 12.5px;
  color: var(--mist);
}

/* Long-form article body (blog posts) */
.article-prose {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
}
.article-prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--ink);
  margin: 44px 0 16px;
  line-height: 1.25;
}
.article-prose h2:first-child {
  margin-top: 0;
}
.article-prose p {
  margin-bottom: 20px;
}
.article-prose ul {
  margin: 0 0 24px;
  padding-left: 22px;
}
.article-prose li {
  margin-bottom: 10px;
}
.article-prose strong {
  color: var(--ink2);
  font-weight: 600;
}
.article-prose a {
  color: var(--gold2);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--border-gold2);
  text-underline-offset: 3px;
}
.article-prose a:hover {
  color: var(--gold);
}
