﻿/* ============================================================
   DRALWA JOURNEYS — BHUTAN
   Master Stylesheet  |  index.css
   ============================================================ */

/* Google Fonts are now loaded via <link rel="preconnect"> + <link rel="stylesheet">
   in the HTML <head> instead of @import — @import blocks on a second network
   round-trip before the font CSS is even discovered, which delays FCP. */

/* ─── CSS Custom Properties ────────────────────────────────── */
:root {
  --color-blush-parchment: #F5E8E0;
  --color-deep-blush: #E8D0C5;
  --color-dusty-rose: #C9968A;
  --color-warm-mauve: #B07068;
  --color-faded-peony: #D4A99A;
  --color-dark-rosewood: #6B3D36;
  --color-antique-gold: #C4A882;
  --color-soft-ivory: #FAF4EF;
  --color-body-text: #5a4040;
  /* warm readable dark for paragraphs */

  --font-serif: 'Canela', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--color-blush-parchment);
  color: var(--color-dark-rosewood);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
}

/* Watermark Pattern Layer */
.watermark-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23D4A99A' stroke-width='0.8' stroke-opacity='0.8'%3E%3Ccircle cx='80' cy='80' r='5'/%3E%3Cpath d='M80,75 C75,55 60,40 45,45 C30,50 35,70 55,78 C65,82 75,80 80,75 Z'/%3E%3Cpath d='M80,85 C75,105 60,120 45,115 C30,110 35,90 55,82 C65,78 75,80 80,85 Z'/%3E%3Cpath d='M85,80 C105,75 120,60 115,45 C110,30 90,35 82,55 C78,65 80,75 85,80 Z'/%3E%3Cpath d='M75,80 C55,75 40,60 45,45 C50,30 70,35 78,55 C82,65 80,75 75,80 Z'/%3E%3Cpath d='M80,75 C85,55 100,40 115,45 C130,50 125,70 105,78 C95,82 85,80 80,75 Z'/%3E%3Cpath d='M80,85 C85,105 100,120 115,115 C130,110 125,90 105,82 C95,78 85,80 80,85 Z'/%3E%3Ccircle cx='80' cy='80' r='24' stroke-dasharray='4 4'/%3E%3Ccircle cx='80' cy='80' r='45'/%3E%3Cpath d='M0,0 A25,25 0 0,0 25,25'/%3E%3Cpath d='M160,0 A25,25 0 0,1 135,25'/%3E%3Cpath d='M0,160 A25,25 0 0,1 25,135'/%3E%3Cpath d='M160,160 A25,25 0 0,0 135,135'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ─── Typography ────────────────────────────────────────────── */
/* FIX: headings use brand dark rosewood, not forced black */
h1,
h2,
h3,
h4,
h5,
h6,
.serif-font {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-dark-rosewood);
}

/* FIX: utility colour helpers now match their intended values */
.heading-gold {
  color: var(--color-antique-gold);
}

.text-mauve {
  color: var(--color-warm-mauve);
}

.text-peony {
  color: var(--color-faded-peony);
}

/* ─── Page transition overlay ───────────────────────────────── */
.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-soft-ivory);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.8s ease-in-out;
}

.transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ─── Buttons & Links ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--color-warm-mauve);
  /* FIX: was #000; now branded dark rosewood */
  color: var(--color-dark-rosewood);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn:hover {
  background-color: var(--color-dusty-rose);
  border-color: var(--color-dusty-rose);
  color: var(--color-soft-ivory);
}

/* FIX: .btn-white is for dark backgrounds — text must be light, not black */
.btn-white {
  border-color: rgba(250, 244, 239, 0.65);
  color: var(--color-soft-ivory);
}

.btn-white:hover {
  background-color: var(--color-soft-ivory);
  color: var(--color-dark-rosewood);
  border-color: var(--color-soft-ivory);
}

/* FIX: link arrows use brand warm mauve */
.link-arrow {
  color: var(--color-warm-mauve);
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.link-arrow:hover {
  color: var(--color-dark-rosewood);
  gap: 0.5rem;
}

/* ─── Section Reveal Animations (Intersection Observer) ─────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Decorative Dividers ────────────────────────────────────── */
.divider-gold {
  border: none;
  height: 1px;
  background-color: var(--color-antique-gold);
  width: 100%;
  max-width: 120px;
  margin: 1.5rem auto;
  opacity: 0.7;
}

/* ============================================================
   PAGE 1: LANDING PAGE — Envelope Screen
   ============================================================ */

.landing-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1.5rem;
  min-height: 100vh;
  position: relative;
  background-color: var(--color-blush-parchment);
  background-image: url('../images/paper%20bg.jpg');
  background-size: 420px;
  background-repeat: repeat;
}

/* ── Header ── */
.landing-header {
  text-align: center;
  z-index: 10;
}

.endless-knot-icon {
  width: 44px;
  height: 44px;
  stroke: var(--color-antique-gold);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.landing-header:hover .endless-knot-icon {
  transform: rotate(180deg);
}

/* FIX: was #000; branded dark rosewood */
.landing-title {
  font-family: var(--font-serif);
  color: var(--color-dark-rosewood);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.landing-subtitle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.subtitle-line {
  width: 30px;
  height: 1px;
  background-color: var(--color-antique-gold);
}

/* FIX: was #000; warm mauve for the subtitle */
.landing-subtitle {
  font-family: var(--font-serif);
  color: var(--color-warm-mauve);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Envelope Container ── */
.envelope-container {
  position: relative;
  width: 580px;
  max-width: 90vw;
  height: 380px;
  margin: 2rem auto;
  perspective: 1200px;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  transform-style: preserve-3d;
}

.envelope-container:hover {
  transform: translateY(-12px) scale(1.02);
}

/* 3D Realistic Shadow underneath */
.envelope-shadow {
  position: absolute;
  bottom: -25px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse at center,
      rgba(107, 61, 54, 0.5) 0%,
      rgba(107, 61, 54, 0.15) 50%,
      rgba(107, 61, 54, 0) 70%);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.envelope-container:hover .envelope-shadow {
  transform: scale(0.85) translateY(12px);
  opacity: 0.6;
}

/* shadow handled by .clicked state (see envelope-lift animation section) */

/* ── Base envelope image (shown before / after animation) ── */
.envelope-image-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* FIX: was `cover` which crops the envelope; `contain` keeps full image */
  object-fit: contain;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease,
    filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0 10px 20px rgba(107, 61, 54, 0.2)) drop-shadow(0 4px 6px rgba(107, 61, 54, 0.12));
}

.envelope-container:hover .envelope-image-base {
  filter: drop-shadow(0 25px 35px rgba(107, 61, 54, 0.35)) drop-shadow(0 10px 12px rgba(107, 61, 54, 0.18));
}

/* ── On-click: simple radiant lift + dissolve ── */
/* The envelope gently rises and glows warm before the page fades away.
   No flap mechanics — just one elegant, tactile moment. */

@keyframes envelope-lift {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 12px 28px rgba(107, 61, 54, 0.22)) brightness(1);
  }

  40% {
    transform: translateY(-14px) scale(1.03);
    filter: drop-shadow(0 30px 50px rgba(196, 168, 130, 0.55)) brightness(1.07);
  }

  100% {
    transform: translateY(-18px) scale(1.04);
    filter: drop-shadow(0 36px 60px rgba(196, 168, 130, 0.65)) brightness(1.1);
  }
}

.envelope-container.clicked {
  animation: envelope-lift 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  pointer-events: none;
  /* block double-clicks during transition */
}

/* Shadow shrinks away as envelope lifts */
.envelope-container.clicked .envelope-shadow {
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ── Tap button on the wax seal ── */
.envelope-tap-btn {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  box-shadow: 0 4px 18px rgba(107, 61, 54, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.envelope-container:hover .envelope-tap-btn,
.envelope-tap-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translate(-50%, -50%) scale(1.08);
}

.envelope-tap-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-soft-ivory);
  text-shadow: 0 1px 4px rgba(107, 61, 54, 0.4);
  pointer-events: none;
}

/* Expanding wave/ripple rings */
.envelope-tap-wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.95);
  animation: envelope-tap-ripple 2.6s ease-out infinite;
  pointer-events: none;
}

.envelope-tap-wave-delay {
  animation-delay: 1.3s;
}

@keyframes envelope-tap-ripple {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .envelope-tap-btn {
    width: 50px;
    height: 50px;
  }

  .envelope-tap-label {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }
}

/* ── Landing Footer CTA ── */
.landing-footer {
  text-align: center;
  z-index: 10;
  margin-top: 1rem;
}

/* FIX: was #000; use warm mauve so it looks elegantly muted */
.landing-cta {
  font-family: var(--font-serif);
  color: var(--color-warm-mauve);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
  animation: gentle-glow 2.5s infinite ease-in-out;
}

/* FIX: was #000 on diamond; antique gold matches wax seal accent */
.landing-diamond {
  font-size: 0.75rem;
  color: var(--color-antique-gold);
}

/* FIX: animation now starts + ends at warm mauve, glows to dusty rose —
   no more jarring black flash */
@keyframes gentle-glow {

  0%,
  100% {
    opacity: 0.65;
    color: var(--color-warm-mauve);
  }

  50% {
    opacity: 1;
    color: var(--color-dusty-rose);
  }
}

/* ── Corner Pattern Images ── */
/*
  ROOT BUG FIX: the previous code set transform-origin to "top right",
  "bottom left", "bottom right" on the mirrored corners.  When scaleX(-1)
  is applied with transform-origin: top right, CSS flips the image AROUND
  its far edge — throwing the whole image hundreds of pixels off-screen.

  Fix: ALL four corners use the default transform-origin (center center).
  scaleX(-1) / scaleY(-1) / scale(-1) then mirror the image symmetrically
  in-place, keeping it exactly in its corner position.
*/
.corner-pattern {
  position: fixed;
  width: 320px;
  /* increased from 220px for better presence */
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
  filter: drop-shadow(0 14px 28px rgba(107, 61, 54, 0.24));
  /* transform-origin defaults to center center — do NOT override per-corner */
}

/* Top-left — no mirror needed, natural orientation */
.pattern-top-left {
  top: -50px;
  left: -50px;
  animation: floatCornerTL 9s ease-in-out infinite alternate;
}

/* Top-right — mirror horizontally (scaleX -1 around center = in-place flip) */
.pattern-top-right {
  top: -50px;
  right: -50px;
  animation: floatCornerTR 9s ease-in-out infinite alternate;
}

/* Bottom-left — mirror vertically (scaleY -1 around center = in-place flip) */
.pattern-bottom-left {
  bottom: -50px;
  left: -50px;
  animation: floatCornerBL 10s ease-in-out infinite alternate;
}

/* Bottom-right — mirror both axes (scale -1 around center = in-place flip) */
.pattern-bottom-right {
  bottom: -50px;
  right: -50px;
  animation: floatCornerBR 10s ease-in-out infinite alternate;
}

/* ── Float keyframes ── */
/* Each keyframe includes the mirror scale so the animation fully
   controls the transform (CSS animation overrides static transform) */

@keyframes floatCornerTL {
  0% {
    transform: translate(0px, 0px) rotate(-3deg);
  }

  100% {
    transform: translate(14px, 22px) rotate(-1deg);
  }
}

@keyframes floatCornerTR {

  /* scaleX(-1): mirrors horizontally around element center — stays in corner */
  0% {
    transform: scaleX(-1) translate(0px, 0px) rotate(-3deg);
  }

  100% {
    transform: scaleX(-1) translate(14px, 22px) rotate(-1deg);
  }
}

@keyframes floatCornerBL {

  /* scaleY(-1): mirrors vertically around element center — stays in corner */
  0% {
    transform: scaleY(-1) translate(0px, 0px) rotate(-3deg);
  }

  100% {
    transform: scaleY(-1) translate(14px, 22px) rotate(-1deg);
  }
}

@keyframes floatCornerBR {

  /* scale(-1): mirrors both axes around element center — stays in corner */
  0% {
    transform: scale(-1) translate(0px, 0px) rotate(-3deg);
  }

  100% {
    transform: scale(-1) translate(14px, 22px) rotate(-1deg);
  }
}

/* ── Responsive sizes ── */
@media (max-width: 1024px) {
  .corner-pattern {
    width: 240px;
    opacity: 0.65;
  }
}

@media (max-width: 680px) {

  /* Keep patterns visible on mobile — just smaller */
  .corner-pattern {
    width: 160px;
    opacity: 0.55;
  }
}

@media (max-width: 400px) {
  .corner-pattern {
    width: 120px;
    opacity: 0.48;
  }
}


/* ============================================================
   PAGE 2: MAIN SITE SPECIFIC STYLES
   ============================================================ */

/* ── Header / Navigation ── */
.navbar-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--color-soft-ivory);
  border-bottom: 1px solid var(--color-faded-peony);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(107, 61, 54, 0.04);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

/* FIX: brand link colour */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-dark-rosewood);
}

.nav-brand .endless-knot-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
}

.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

/* FIX: nav links use warm mauve, hover deepens to rosewood */
.nav-links a {
  text-decoration: none;
  font-family: var(--font-serif);
  color: var(--color-warm-mauve);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-dusty-rose);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--color-dark-rosewood);
}

.nav-links a:hover::after {
  width: 100%;
}

/* FIX: mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark-rosewood);
  z-index: 1001;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Fullscreen Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-blush-parchment);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay .watermark-pattern {
  opacity: 0.15;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* FIX: mobile nav links branded */
.mobile-nav-links a {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-dark-rosewood);
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--color-warm-mauve);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  height: calc(100vh - 75px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(107, 61, 54, 0.4) 0%,
      rgba(245, 232, 224, 0.25) 70%,
      rgba(245, 232, 224, 0.95) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
  z-index: 10;
}

/* FIX: hero text renders on a dark photo overlay — must be light */
.hero-eyebrow {
  font-family: var(--font-sans);
  color: rgba(250, 244, 239, 0.85);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: var(--font-serif);
  color: var(--color-soft-ivory);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(107, 61, 54, 0.35);
}

.hero-subheading {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(250, 244, 239, 0.88);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ── Tour / Journey Cards ── */
.section-padding {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
  background-color: var(--color-soft-ivory);
}

.container-width {
  max-width: 1200px;
  margin: 0 auto;
}

/* Bespoke Private Journeys — full-width parchment background */
#private-travel {
  max-width: none;
  background-color: var(--color-blush-parchment);
}

#private-travel .section-header,
#private-travel .journeys-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* FIX: section eyebrow → warm mauve */
.section-eyebrow {
  font-family: var(--font-sans);
  color: var(--color-warm-mauve);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-dark-rosewood);
  position: relative;
  padding-bottom: 1.25rem;
}

/* FIX: section title diamond → antique gold */
.section-title::after {
  content: '◆';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-antique-gold);
  font-size: 0.75rem;
}

.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.journey-card {
  background-color: var(--color-soft-ivory);
  border: 1px solid var(--color-faded-peony);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(107, 61, 54, 0.08);
  border-color: var(--color-warm-mauve);
}

.journey-img-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.journey-card:hover .journey-img {
  transform: scale(1.05);
}

/* FIX: badge text → dark rosewood (was #000) */
.journey-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--color-deep-blush);
  color: var(--color-dark-rosewood);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-family: var(--font-sans);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.journey-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-top {
  margin-bottom: 1.5rem;
}

.journey-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

/* FIX: description text → warm body colour */
.journey-desc {
  font-size: 0.95rem;
  color: var(--color-body-text);
  line-height: 1.5;
}

.journey-divider {
  border: none;
  height: 1px;
  background-color: var(--color-faded-peony);
  opacity: 0.5;
  margin-bottom: 1.25rem;
}

/* ── Philosophy Strip ── */
.philosophy-strip {
  background-color: var(--color-deep-blush);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* FIX: quote text → dark rosewood on blush background */
.philosophy-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-dark-rosewood);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.philosophy-author {
  font-family: var(--font-sans);
  color: var(--color-warm-mauve);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Experiences Scroll Strip ── */
.experiences-section {
  background-color: var(--color-blush-parchment);
}

.experiences-wrapper {
  overflow-x: auto;
  padding: 1rem 0 3rem;
  display: flex;
  gap: 1.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-dusty-rose) transparent;
}

.experiences-wrapper::-webkit-scrollbar {
  height: 6px;
}

.experiences-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.experiences-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-dusty-rose);
  border-radius: 10px;
}

.experience-tile {
  flex: 0 0 260px;
  height: 340px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid rgba(212, 169, 154, 0.3);
}

.experience-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(107, 61, 54, 0.12);
  border-color: var(--color-warm-mauve);
}

.experience-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.8s ease;
}

.experience-tile:hover .experience-bg {
  transform: scale(1.08);
}

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(107, 61, 54, 0.9) 0%,
      rgba(107, 61, 54, 0.3) 60%,
      rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

/* FIX: experience title is on a dark overlay — must be ivory/white */
.experience-title {
  color: var(--color-soft-ivory);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

/* ── About Bhutan ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-heading {
  font-size: 2.2rem;
  line-height: 1.25;
}

.about-desc {
  color: var(--color-body-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: var(--color-soft-ivory);
  border: 1px solid var(--color-faded-peony);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(107, 61, 54, 0.02);
  transition: var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--color-warm-mauve);
}

/* FIX: stat number → dark rosewood (prominent) */
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark-rosewood);
  margin-bottom: 0.25rem;
}

/* FIX: stat label → warm mauve (subdued) */
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-warm-mauve);
  text-transform: uppercase;
  font-weight: 700;
}

.about-img-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-faded-peony);
  box-shadow: 0 15px 35px rgba(107, 61, 54, 0.06);
}

.about-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* ── Why Travel With Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--color-soft-ivory);
  border: 1px solid var(--color-faded-peony);
  border-radius: 12px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-warm-mauve);
  box-shadow: 0 10px 25px rgba(107, 61, 54, 0.05);
}

/* FIX: icon uses antique gold accent */
.why-icon-wrapper {
  color: var(--color-antique-gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.why-icon-wrapper i {
  font-size: 2.25rem;
}

.why-heading {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--color-body-text);
  line-height: 1.5;
}

/* ── Inquire / CTA Section ── */
.inquire-section {
  text-align: center;
  background-color: var(--color-soft-ivory);
  border-top: 1px solid var(--color-faded-peony);
  border-bottom: 1px solid var(--color-faded-peony);
  padding: 6rem 2rem;
}

.inquire-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.inquire-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.15rem;
  color: var(--color-body-text);
}

/* ── Footer ── */
.footer-section {
  background-color: #FFFFFF;
  color: #333333;
  padding: 6rem 2rem 4rem;
  font-family: var(--font-sans);
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
  margin: 0 auto;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--color-dark-rosewood);
}

.footer-contact-item:hover {
  color: var(--color-dark-rosewood);
}

.footer-contact-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.footer-contact-group .footer-contact-item:last-child {
  margin-left: 17.75rem;
}

/* FIX: footer heading → branded rosewood */
.footer-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark-rosewood);
  margin-bottom: 1rem;
}

.footer-subtext {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-socials a {
  color: #999999;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--color-dark-rosewood);
}

.footer-bottom-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ≤ 1280px */
@media (max-width: 1280px) {

  .nav-container,
  .container-width,
  .footer-bottom {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ≤ 1024px — tablets / small desktop */
@media (max-width: 1024px) {
  .journeys-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-container {
    order: -1;
  }
}

/* ≤ 768px — mobile landscape */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .section-padding {
    padding: 4rem 1.5rem;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.15rem;
  }

  .journeys-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stat-boxes {
    gap: 1rem;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-contact-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-contact-group .footer-contact-item:last-child {
    margin-left: 0;
  }

  .footer-bottom-info {
    text-align: center;
  }
}

/* ≤ 480px — mobile portrait */
@media (max-width: 480px) {
  .landing-body {
    padding: 2rem 1rem;
  }

  .landing-title {
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }

  .envelope-container {
    height: 280px;
  }

  .stat-boxes {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   INDEX PAGE — INLINE STYLES (migrated from index.html)
   ============================================================ */

/* Override html background so overscroll at the top matches the dark hero */
html {
  background-color: #0d0a07;
}

/* ─────────────────────────────────────────────── */

/* NAVBAR — centered logo, split nav */
.inner-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  background-color: transparent;
  border-bottom: none;
  z-index: 100;
}



.inner-nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.4rem 2.5rem;
  gap: 1.5rem;
}

/* Left nav links */
.inner-nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Center logo */
.inner-nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.inner-nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* Logo swap: white logo on transparent navbar, default on scroll */
.logo-default {
  display: none;
}

.logo-white {
  display: block;
}

.inner-navbar.scrolled .logo-white {
  display: none;
}

.inner-navbar.scrolled .logo-default {
  display: block;
}



/* Right nav — links + button */
.inner-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
}

.inner-nav-left a,
.inner-nav-right a:not(.btn-inquire) {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: rgba(250, 244, 239, 0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
}

/* Underline animation — top-level links only (not dropdown items) */
.inner-nav-left>li>a::after,
.inner-nav-right>li>a:not(.btn-inquire)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.inner-nav-left>li>a:hover::after,
.inner-nav-right>li>a:not(.btn-inquire):hover::after {
  width: 100%;
}

.inner-nav-left a:hover,
.inner-nav-right a:not(.btn-inquire):hover {
  color: rgba(250, 244, 239, 1);
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-blush-parchment);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 1rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  border: 1px solid rgba(196, 168, 130, 0.2);
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  padding: 0;
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  color: var(--color-dark-rosewood) !important;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  white-space: normal !important;
}

.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown a:hover {
  background-color: var(--color-soft-ivory);
  color: var(--color-warm-mauve) !important;
  padding-left: 2rem !important;
}

.btn-inquire {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 244, 239, 0.9);
  text-decoration: none;
  border: 1px solid rgba(250, 244, 239, 0.9);
  padding: 0.42rem 1.25rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn-inquire:hover {
  background-color: rgba(250, 244, 239, 0.15);
  color: rgba(250, 244, 239, 1);
  border-color: rgba(250, 244, 239, 1);
}

/* ── Scrolled state ── */
.inner-navbar.scrolled {
  background-color: var(--color-blush-parchment);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.25);
  box-shadow: 0 2px 20px rgba(107, 61, 54, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.inner-navbar.scrolled .inner-nav-left a,
.inner-navbar.scrolled .inner-nav-right a:not(.btn-inquire) {
  color: var(--color-dark-rosewood);
}

.inner-navbar.scrolled .inner-nav-left a:hover,
.inner-navbar.scrolled .inner-nav-right a:not(.btn-inquire):hover {
  color: var(--color-warm-mauve);
}

.inner-navbar.scrolled .inner-nav-left>li>a::after,
.inner-navbar.scrolled .inner-nav-right>li>a:not(.btn-inquire)::after {
  background-color: var(--color-warm-mauve);
}

.inner-navbar.scrolled .btn-inquire {
  color: var(--color-dark-rosewood);
  border-color: var(--color-dark-rosewood);
}

.inner-navbar.scrolled .btn-inquire:hover {
  background-color: var(--color-dark-rosewood);
  color: var(--color-soft-ivory);
}

/* Hamburger */
.inner-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(250, 244, 239, 0.9);
  transition: color 0.3s ease;
}

.inner-navbar.scrolled .inner-mobile-btn {
  color: var(--color-dark-rosewood);
}

.inner-mobile-btn svg {
  width: 26px;
  height: 26px;
}

/* ─────────────────────────────────────────────── */
.inner-hero {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100vh + 200px);
  min-height: calc(100vh + 200px);
  margin-top: -200px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  background-color: #0d0a07;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.82) saturate(0.9);
  display: block;
}

/* Dark gradient fade for hero */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}



.inner-hero-content {
  position: absolute;
  bottom: 11%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 3;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.inner-hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: 0.18em;
  word-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.btn-hero {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-soft-ivory);
  border: 1px solid var(--color-antique-gold);
  padding: 0.8rem 2.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-hero:hover {
  background: var(--color-antique-gold);
  color: #1a0f0c;
}

/* ─────────────────────────────────────────────── */
.journey-types-section-clouds {
  position: relative;
  z-index: 0;
}

.journey-types-section-clouds::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../images/pictures/cloud-pattern.jpg');
  background-size: 640px;
  background-repeat: repeat;
  opacity: 0.9;
}

/* ─────────────────────────────────────────────── */
.journey-types-section {
  background-color: var(--color-blush-parchment);
  padding: 5.5rem 2rem 6rem;
}

.journey-types-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-warm-mauve);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
}

.journey-types-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--color-dark-rosewood);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.journey-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.journey-types-more {
  display: flex;
  justify-content: flex-start;
  margin-top: 3rem;
}

.btn-view-more {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark-rosewood);
  text-decoration: none;
  border: 1px solid var(--color-dark-rosewood);
  padding: 0.9rem 2.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-view-more:hover {
  background: var(--color-dark-rosewood);
  color: var(--color-soft-ivory);
}

.jt-card {
  border-radius: 0;
  background-color: var(--color-soft-ivory);
  border: 1px solid rgba(196, 168, 130, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.jt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(107, 61, 54, 0.08);
  border-color: rgba(196, 168, 130, 0.5);
}

.jt-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.jt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.jt-card:hover .jt-img {
  transform: scale(1.04);
}

.jt-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
  background-color: var(--color-blush-parchment);
}

.jt-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-dark-rosewood);
  line-height: 1.3;
  margin: 0;
}

.jt-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-body-text);
  line-height: 1.65;
  flex-grow: 1;
  margin: 0;
}

.jt-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark-rosewood);
  text-decoration: none;
  border: 1px solid var(--color-dark-rosewood);
  padding: 0.75rem 1.75rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.jt-cta:hover {
  background: var(--color-dark-rosewood);
  color: var(--color-soft-ivory);
}



/* ─────────────────────────────────────────────── */
/* ABOUT SECTION */
.about-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

.about-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}

.about-bg-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.about-content {
  width: 50%;
}

.about-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-antique-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-antique-gold);
  flex-shrink: 0;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #fff;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.about-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(250, 244, 239, 0.82);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(250, 244, 239, 0.78);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-desc:last-of-type {
  margin-bottom: 2.75rem;
}

.btn-about {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-soft-ivory);
  border: 1px solid var(--color-antique-gold);
  padding: 0.8rem 2.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-about:hover {
  background: var(--color-antique-gold);
  color: #1a0f0c;
}

@media (max-width: 768px) {
  .about-content {
    width: 100%;
  }

  .about-bg-right {
    width: 100%;
    opacity: 0.3;
  }
}

/* ─────────────────────────────────────────────── */
/* STORIES SECTION */
.stories-section {
  background-color: var(--color-blush-parchment);
  padding: 5.5rem 0 5.5rem 0;
  overflow: hidden;
}

.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 2.75rem;
  padding: 0 2rem;
}

.stories-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-warm-mauve);
  margin-bottom: 0.35rem;
}

.stories-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--color-dark-rosewood);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.stories-nav {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  padding-bottom: 0.25rem;
}

.stories-nav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-antique-gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark-rosewood);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.stories-nav-btn:hover {
  background: var(--color-dark-rosewood);
  color: #fff;
  border-color: var(--color-dark-rosewood);
}

.stories-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* Track — contained to the same fixed width as the section header */
.stories-track-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  cursor: grab;
  user-select: none;
}

.stories-track-wrapper:active {
  cursor: grabbing;
}

.stories-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  pointer-events: none;
}

.stories-track>* {
  pointer-events: auto;
}

/* Cards */
.story-card {
  flex: 0 0 370px;
  height: 490px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.story-card:hover img {
  transform: scale(1.05);
}

.story-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 6, 4, 0.9) 0%,
      rgba(10, 6, 4, 0.45) 42%,
      rgba(10, 6, 4, 0.05) 70%,
      transparent 100%);
}

.story-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem 1.5rem;
}

.story-card-tag {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-antique-gold);
  margin-bottom: 0.6rem;
  display: block;
}

.story-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.22;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.story-card-desc {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(250, 244, 239, 0.75);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.story-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.story-card-arrow {
  width: 40px;
  height: 40px;
  background: rgba(250, 244, 239, 0.12);
  border: 1px solid rgba(250, 244, 239, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.story-card-arrow:hover {
  background: var(--color-antique-gold);
  border-color: var(--color-antique-gold);
  color: #1a0f0c;
}

@media (max-width: 900px) {
  .story-card {
    flex: 0 0 300px;
    height: 420px;
  }

  .stories-track-wrapper {
    padding: 0 1.5rem;
  }
}

@media (max-width: 600px) {
  .story-card {
    flex: 0 0 82vw;
    height: 380px;
  }

  .stories-track-wrapper {
    padding: 0 1.25rem;
  }
}

/* ─────────────────────────────────────────────── */
.transformation-strip {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.transformation-text {
  background-color: var(--color-dark-rosewood);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Faint pattern watermark, repositioned to bottom-right corner */
.transformation-text::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 260px;
  height: 260px;
  background-image: url('../images/patterns.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

/* Vertical gold accent bar on the left edge */
.transformation-text::after {
  content: '';
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--color-antique-gold) 30%, var(--color-antique-gold) 70%, transparent);
}

.transformation-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-antique-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.transformation-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background-color: var(--color-antique-gold);
  flex-shrink: 0;
}

.transformation-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--color-soft-ivory);
  line-height: 1.15;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.transformation-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(250, 244, 239, 0.72);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 3rem;
}

.btn-explore {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-soft-ivory);
  border: 1px solid var(--color-antique-gold);
  padding: 0.75rem 2.25rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  width: fit-content;
}

.btn-explore:hover {
  background: var(--color-antique-gold);
  color: var(--color-dark-rosewood);
}

.transformation-image {
  position: relative;
  overflow: hidden;
}

.transformation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.9s ease;
}

.transformation-strip:hover .transformation-image img {
  transform: scale(1.04);
}

/* Smooth gradient fade on left edge of image blending into the text panel */
.transformation-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, var(--color-dark-rosewood), transparent);
  z-index: 2;
}

/* ─────────────────────────────────────────────── */
.quote-section {
  background-color: var(--color-blush-parchment);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-flower-left,
.quote-flower-right {
  position: absolute;
  top: 50%;
  width: 220px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(107, 61, 54, 0.1));
  opacity: 0.6;
}

.quote-flower-left {
  left: -20px;
  transform: translateY(-50%);
}

.quote-flower-right {
  right: -20px;
  transform: translateY(-50%) scaleX(-1);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-antique-gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.75;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  color: var(--color-dark-rosewood);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-mauve);
  font-weight: 700;
}

/* ─────────────────────────────────────────────── */
/* ─── Affiliates Section ─────────────────────────── */
.affiliates-section {
  background-color: var(--color-blush-parchment);
  border-top: 1px solid rgba(196, 168, 130, 0.25);
  border-bottom: 1px solid rgba(196, 168, 130, 0.25);
  padding: 5.5rem 2rem;
  text-align: center;
}

.affiliates-inner {
  width: 100%;
  margin: 0 auto;
}

.affiliates-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-warm-mauve);
  margin-bottom: 0.5rem;
}

.affiliates-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--color-dark-rosewood);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

/* Desktop: static row of 5 */
.affiliates-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.affiliate-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  filter: grayscale(0.25);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.affiliate-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.06);
}

.affiliate-logo-item img {
  height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* Mobile: auto-scroll carousel — hidden on desktop */
.affiliates-carousel {
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.affiliates-carousel::before,
.affiliates-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.affiliates-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-soft-ivory), transparent);
}

.affiliates-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-soft-ivory), transparent);
}

@keyframes affiliates-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.affiliates-carousel-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: affiliates-scroll 12s linear infinite;
  padding: 0.5rem 0;
}

.affiliates-carousel-track:hover {
  animation-play-state: paused;
}

.carousel-logo {
  width: 42vw;
  max-width: 150px;
  height: 56px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .affiliates-grid {
    display: none;
  }

  .affiliates-carousel {
    display: block;
  }
}

/* ─────────────────────────────────────────────── */
.inner-mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-blush-parchment);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 2.5rem;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.inner-mobile-overlay.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Close button — absolute top-right */
.mobile-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
}

/* Logo + nav grouped and truly centred in the available space */
.mobile-overlay-centre {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Journeys row: link + chevron toggle side-by-side */
.mobile-overlay-dropdown {
  text-align: center;
}

.mobile-overlay-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem 0.2rem;
  color: var(--color-dark-rosewood);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.2s ease;
}

.mobile-dropdown-toggle.open {
  transform: rotate(180deg);
}

.mobile-dropdown-toggle:hover {
  color: var(--color-warm-mauve);
}

.mobile-dropdown-toggle svg {
  width: 18px;
  height: 18px;
}

/* Sub-items — hidden until toggled, revealed with a smooth slide-down */
.mobile-overlay-subitems {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
}

.mobile-overlay-subitems.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(196, 168, 130, 0.3);
}

.mobile-overlay-subitems a {
  font-size: 0.95rem !important;
  color: var(--color-body-text) !important;
  letter-spacing: 0.04em !important;
}

.mobile-overlay-subitems a:hover {
  color: var(--color-warm-mauve) !important;
}

.mobile-overlay-logo {
  display: flex;
  justify-content: center;
}

.mobile-overlay-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.mobile-overlay-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  color: var(--color-dark-rosewood);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.mobile-overlay-close:hover {
  color: var(--color-warm-mauve);
}

.mobile-overlay-close svg {
  width: 26px;
  height: 26px;
}

.mobile-overlay-socials {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

/* Nav links in centre */
.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.inner-mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-dark-rosewood);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.inner-mobile-overlay a:hover {
  color: var(--color-warm-mauve);
}

@media (max-width: 480px) {
  .mobile-overlay-nav {
    gap: 1.2rem;
  }

  .mobile-overlay-nav a {
    font-size: 1.05rem;
  }
}

/* Social icons at the bottom */
.mobile-overlay-socials {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.mobile-overlay-socials a {
  font-size: inherit;
  color: var(--color-warm-mauve);
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
  letter-spacing: 0;
}

.mobile-overlay-socials a:hover {
  color: var(--color-dark-rosewood);
}

.mobile-overlay-socials svg {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 860px) {

  .inner-nav-left,
  .inner-nav-right {
    display: none;
  }

  .inner-mobile-btn {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  /* Logo stays left on mobile navbar */
  .inner-nav-logo {
    grid-column: 1;
    justify-self: start;
  }

  .inner-nav-container {
    grid-template-columns: auto 1fr auto;
  }

  .inner-navbar {
    background-color: var(--color-blush-parchment);
    border-bottom: 1px solid rgba(196, 168, 130, 0.25);
  }

  .inner-mobile-btn {
    color: var(--color-dark-rosewood);
  }

  .transformation-strip {
    grid-template-columns: 1fr;
  }

  .transformation-image {
    min-height: 300px;
  }

  .transformation-text {
    padding: 3.5rem 2rem;
  }

  .transformation-desc {
    max-width: 100%;
  }

  .quote-flower-left,
  .quote-flower-right {
    width: 140px;
    opacity: 0.35;
  }
}

@media (max-width: 640px) {
  .inner-hero-content {
    bottom: 8%;
    max-width: 90%;
  }

  .transformation-text {
    padding: 3.5rem 2rem;
  }

  .journey-types-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 420px) {
  .journey-types-grid {
    grid-template-columns: 1fr;
  }

  .jt-body {
    padding: 1.4rem 1.5rem 1.75rem;
    gap: 0.7rem;
  }

  .jt-name {
    font-size: 1.2rem;
  }

  .jt-desc {
    font-size: 0.9rem;
  }

  .jt-cta {
    font-size: 0.6rem;
    padding: 0.55rem 1.25rem;
  }
}

/* ─────────────────────────────────────────────── */

.bhutan-map-section {
  background: #F5E8E0;
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Eyebrow & title use brand dark tones on light bg */
.bhutan-map-section .section-eyebrow {
  color: var(--color-warm-mauve);
  opacity: 1;
}

.bhutan-map-section .section-title {
  color: var(--color-dark-rosewood);
  padding-bottom: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.bhutan-map-section .section-title::after {
  display: none;
}

.bhutan-map-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-body-text);
  opacity: 0.85;
  line-height: 1.8;
  max-width: 540px;
  margin: -0.75rem auto 3.5rem;
}

/* ─────────────────────────────────────────────── */
.map-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.map-container {
  position: relative;
  flex: 1 1 680px;
  max-width: 820px;
}

.map-container svg {
  width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────── */
.map-container svg .district {
  fill: #ffffff;
  /* resting */
  stroke: var(--color-dark-rosewood);
  stroke-width: 0.9;
  cursor: pointer;
  transition: fill 0.22s ease, opacity 0.22s ease,
    stroke-width 0.2s ease, filter 0.22s ease;
}

/* Hovered / active district pops to a soft blush tone */
.map-container svg .district:hover,
.map-container svg .district.active {
  fill: #EBD5CB !important;
  opacity: 1 !important;
  stroke: var(--color-dark-rosewood);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 8px rgba(201, 150, 138, 0.45));
}

/* District text labels - always visible */
.map-container svg .district-label {
  font-family: var(--font-sans);
  font-size: 7px;
  fill: var(--color-dark-rosewood);
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
  transition: fill 0.22s ease;
}


/* ─────────────────────────────────────────────── */
.map-tooltip {
  position: fixed;
  background: var(--color-soft-ivory);
  border: 1px solid rgba(196, 168, 130, 0.45);
  border-radius: 6px;
  padding: 0.85rem 1.3rem 0.9rem;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
  min-width: 200px;
  max-width: 275px;
  box-shadow: 0 8px 28px rgba(107, 61, 54, 0.14), 0 2px 8px rgba(107, 61, 54, 0.08);
  text-align: left;
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

.map-tooltip-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark-rosewood);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.map-tooltip-desc {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--color-body-text);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* Arrow pointing down toward the hovered district */
.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--color-soft-ivory);
  border-right: 1px solid rgba(196, 168, 130, 0.45);
  border-bottom: 1px solid rgba(196, 168, 130, 0.45);
}

/* ─────────────────────────────────────────────── */
.map-facts-panel {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-fact-card {
  background: var(--color-soft-ivory);
  border: 1px solid rgba(196, 168, 130, 0.32);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.map-fact-card:hover {
  background: var(--color-blush-parchment);
  border-color: var(--color-antique-gold);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(107, 61, 54, 0.08);
}

.map-fact-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark-rosewood);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.map-fact-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-warm-mauve);
  font-weight: 600;
}

.map-decorative-line {
  display: none;
}

/* ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .map-layout {
    flex-direction: column;
    gap: 1.25rem;
  }

  .map-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .map-facts-panel {
    flex: none;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .bhutan-map-section {
    padding: 3rem 1rem 2.5rem;
  }

  .map-layout {
    gap: 0.75rem;
  }

  .map-container {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .map-container svg .district-label {
    font-size: 3.5px;
  }

  .map-tooltip {
    min-width: 140px;
    padding: 0.5rem 0.8rem;
  }

  .map-tooltip-name {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

  .map-tooltip-desc {
    font-size: 0.6rem;
  }

  .bhutan-map-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .map-facts-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .map-fact-number {
    font-size: 1.3rem;
  }

  .map-fact-card {
    padding: 0.6rem 0.8rem;
  }
}


/* ============================================================
   GLOBAL FONT OVERRIDE
   Headings / titles / hero / names → Canela, weight 300, normal
   Body / nav / labels / buttons / eyebrows → Montserrat, weight 400, normal
   No italic, no bold, no weight above 400 anywhere.
   ============================================================ */

/* ── 1. Strip italic from every element (safe for icon fonts) ── */
*:not(.ti):not([class^="ti-"]):not([class*=" ti-"]) {
  font-style: normal !important;
}

/* ── 2. Headings & display text → Canela 300 ───────────────── */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.inner-hero-title,
.journey-types-title,
.transformation-heading,
.about-title,
.about-eyebrow+h2,
.stories-title,
.affiliates-title,
.comm-hero-title,
.comm-grid-title,
.about-story-title,
.about-values-title,
.about-team-title,
.about-cta-title,
.about-stat-number,
.map-tooltip-name,
.map-fact-number,
.jt-name,
.story-card-title,
.dzongkhag-name,
.quote-text,
.landing-title,
.inner-hero-sub,
.journey-title,
.transformation-heading {
  font-family: 'Canela', serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
}

/* ── 3. Body / nav / ui text → Montserrat 400 ──────────────── */
body,
p,
span,
a,
button,
li,
label,
input,
textarea,
select,
small,
strong,
b,
em,
i,
blockquote,
.section-eyebrow,
.journey-types-eyebrow,
.transformation-eyebrow,
.about-eyebrow,
.stories-eyebrow,
.affiliates-eyebrow,
.comm-hero-eyebrow,
.comm-grid-eyebrow,
.comm-hero-sub,
.about-story-eyebrow,
.about-team-role,
.about-team-bio,
.about-stat-label,
.about-story-lead,
.about-story-body,
.about-desc,
.transformation-desc,
.jt-desc,
.story-card-desc,
.story-card-tag,
.dzongkhag-region,
.map-fact-label,
.map-tooltip-desc,
.bhutan-map-subtitle,
.journey-desc,
.journey-badge,
.link-arrow,
.btn,
.btn-hero,
.btn-inquire,
.btn-about,
.btn-explore,
.btn-white,
.dzongkhag-cta,
.inner-nav-left a,
.inner-nav-right a,
.nav-dropdown a,
.footer-contact-item,
.footer-bottom-info,
.inner-mobile-overlay a,
.mobile-overlay-nav a,
.landing-subtitle,
.inner-hero-content,
.map-fact-label {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* ── 4. Ensure strong/b/em never bold or italic ─────────────── */
strong,
b {
  font-weight: 400 !important;
}

em,
i {
  font-style: normal !important;
}


.footer-contact-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.footer-contact-phone {
  justify-self: center; /* keeps the phone number visually centered in the row */
}
.footer-contact-email {
  justify-self: start;
}
.footer-socials {
  justify-self: end;
  display: flex;
  gap: 12px;
}
@media (max-width: 640px) {
  .footer-contact-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}