/* ============================================================
   EXPLORE BHUTAN — Design System v3 (Bold & Adventurous)
   Fonts: Playfair Display (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES — Light Mode ===== */
:root {
  --primary:        #1a6b3c;
  --primary-light:  #2fa060;
  --primary-dark:   #0e4525;
  --accent:         #d4801a;
  --accent-light:   #f5a623;
  --accent-hot:     #e85d2f;

  --bg:             #f0ebe3;
  --bg-card:        #ffffff;
  --bg-side:        #e2dbd0;
  --bg-header:      rgba(10, 22, 15, 0.94);
  --bg-header-scrolled: rgba(6, 14, 9, 0.98);

  --text-primary:   #111111;
  --text-secondary: #3d3d3d;
  --text-muted:     #7a7068;
  --text-inv:       #ffffff;

  --heading:        #0a2e18;
  --border:         #d4ccc0;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.13);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.2);
  --shadow-card:    0 4px 0 0 var(--primary);

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Outfit', system-ui, sans-serif;
  --speed:          0.25s;
  --header-h:       72px;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --bg:             #0c1610;
  --bg-card:        #182218;
  --bg-side:        #090f0b;
  --bg-header:      rgba(4, 10, 6, 0.98);
  --bg-header-scrolled: rgba(2, 6, 3, 0.99);
  --text-primary:   #eae5dd;
  --text-secondary: #aca49a;
  --text-muted:     #6a6258;
  --heading:        #6dd49a;
  --border:         #263326;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.75);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  margin: 0; padding: var(--header-h) 0 0;
  background: var(--bg); color: var(--text-primary);
  line-height: 1.6;
  transition: background 0.4s, color 0.4s;
}
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-track { background: transparent; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--bg-header);
  backdrop-filter: blur(18px);
  padding: 0 36px;
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--speed), box-shadow var(--speed);
}
header.scrolled {
  background: var(--bg-header-scrolled);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
header nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 14px;
}
.logo a { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: white; letter-spacing: 0.01em;
}
header nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
header nav ul li a {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500;
  padding: 6px 13px; border-radius: var(--radius-pill);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color var(--speed), background var(--speed);
}
header nav ul li a:hover, header nav ul li a:focus {
  color: white; background: rgba(255,255,255,0.1); outline: none;
}
#search-form {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 14px; gap: 4px;
  transition: background var(--speed), border-color var(--speed);
}
#search-form:focus-within { background: rgba(255,255,255,0.14); border-color: var(--accent-light); }
#search-input[type="search"] {
  background: none; border: none; outline: none;
  color: white; font-size: 0.87rem; width: 155px; font-family: var(--font-body);
}
#search-input::placeholder { color: rgba(255,255,255,0.35); }
#search-button {
  background: var(--accent); color: white; border: none;
  width: 32px; height: 32px; border-radius: var(--radius-pill);
  cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--speed);
}
#search-button:hover { background: var(--accent-hot); }
#search-hint { font-size: 0.75rem; color: var(--accent-light); white-space: nowrap; }
#search-hint:empty { display: none; }
#dark-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white; width: 38px; height: 38px;
  border-radius: var(--radius-pill); cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--speed);
}
#dark-toggle:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100vh; min-height: 640px;
  background: url('images/travel-image.jpg') no-repeat center center / cover;
  display: flex; align-items: flex-end; justify-content: flex-start;
  text-align: left; color: white; position: relative;
  padding-bottom: 100px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(5,20,10,0.55) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
/* diagonal texture overlay */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 0 60px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 20px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 32px; height: 2px;
  background: var(--accent-light);
}
.hero-content h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 900; margin: 0 0 6px;
  letter-spacing: -0.02em; line-height: 1.0;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-content h1 em {
  font-style: italic; font-weight: 400;
  color: var(--accent-light); display: block;
}
.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300;
  margin: 20px 0 40px; opacity: 0.85; max-width: 460px;
  animation: fadeUp 1s 0.3s ease both; line-height: 1.7;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}
.btn-primary {
  background: var(--accent); color: white;
  padding: 14px 36px; border: none; cursor: pointer;
  font-size: 0.88rem; font-weight: 700; border-radius: var(--radius-pill);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed);
  box-shadow: 0 6px 24px rgba(212,128,26,0.45);
}
.btn-primary:hover { background: var(--accent-hot); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(212,128,26,0.55); }
.btn-outline {
  background: transparent; color: white;
  padding: 13px 32px; border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer; font-size: 0.88rem; font-weight: 600;
  border-radius: var(--radius-pill); letter-spacing: 0.08em; text-transform: uppercase;
  transition: all var(--speed);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* hero stat strip */
.hero-stats {
  position: absolute; bottom: 110px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; gap: 18px;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-stat {
  text-align: right;
  border-right: 3px solid var(--accent-light);
  padding-right: 16px;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: white; line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

.hero-scroll {
  position: absolute; bottom: 155px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.45; animation: fadeUp 1s 0.9s ease both;
}
.hero-scroll span { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; } 50% { opacity: 1; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.content-wrapper {
  background: var(--bg-card); margin: 0 auto;
  max-width: 1440px; padding: 80px 0 0;
  position: relative; z-index: 2;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  transition: background 0.4s;
  overflow: clip;
  overflow-clip-margin: 0;
}
body::before, body::after {
  content: ''; position: fixed; top: 0; bottom: 0;
  width: calc((100% - 1440px) / 2);
  background: var(--bg-side); z-index: -1;
}
body::before { left: 0; } body::after { right: 0; }

/* ---- section baseline ---- */
.section { padding: 80px 0; }
.section + .section { border-top: 1px solid var(--border); }

/* ---- bold section headings ---- */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 60px; margin-bottom: 10px; gap: 20px; flex-wrap: wrap;
}
.section h2,
.section-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--heading);
  padding-left: 0; margin-bottom: 0;
  letter-spacing: -0.02em; line-height: 1.05;
  position: relative;
}
/* bold underline accent on headings */
.section h2::after,
.section-header h2::after {
  content: '';
  display: block; width: 48px; height: 4px;
  background: var(--accent); border-radius: 2px;
  margin-top: 10px;
}
/* section labels above headings */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  padding: 0 60px; margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--accent);
}
.section-subtitle {
  font-size: 0.93rem; color: var(--text-muted);
  padding-left: 60px; margin-bottom: 44px; margin-top: 10px;
}

/* ---- old padding-left 2cm → 60px ---- */
.section h2 { padding-left: 60px; }
.section-header h2 { padding-left: 0; }

.search-highlight {
  outline: 3px solid var(--accent); outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   CARDS & SLIDERS
   ============================================================ */
.slider-container { position: relative; max-width: 100%; overflow: hidden; }
.card-container {
  display: flex; overflow-x: auto; scroll-behavior: smooth;
  padding: 20px 60px 32px; gap: 20px; cursor: grab;
}
.card-container:active { cursor: grabbing; }
.card-container::-webkit-scrollbar { display: none; }

/* ---- redesigned card ---- */
.card {
  flex: 0 0 auto; width: 320px; height: 440px;
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  background: var(--bg-card); box-shadow: var(--shadow-md);
  border: none;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s;
}
.card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease; z-index: 4;
}
.card:hover { transform: translateY(-12px) scale(1.01); box-shadow: var(--shadow-lg); }
.card:hover::after { transform: scaleX(1); }
.card-image { width: 100%; height: 100%; position: relative; overflow: hidden; }
.card-image img, .card-image video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.card:hover .card-image img, .card:hover .card-image video { transform: scale(1.1); }
.card-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: white; padding: 50px 20px 22px;
  overflow-wrap: break-word;
}
.card-text h3 {
  font-size: 1.5rem; font-weight: 700; margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.card-text p { font-size: 0.82rem; margin: 0; opacity: 0.82; font-weight: 300; line-height: 1.5; }

/* destination number badge */
.card-number {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: white; background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill); padding: 3px 10px;
  z-index: 3; letter-spacing: 0.06em;
}

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--heading); color: white;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer;
  border: none; z-index: 2;
  box-shadow: var(--shadow-md);
  transition: background var(--speed), transform var(--speed);
}
.slider-arrow:hover, .slider-arrow:focus {
  background: var(--accent); outline: none; transform: translateY(-50%) scale(1.08);
}
.left { left: 14px; } .right { right: 14px; }

.favorite-btn {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.95); border: none; border-radius: 50%;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 3; color: #ccc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2); transition: transform var(--speed), background var(--speed);
}
.favorite-btn:hover { transform: scale(1.18); }
.favorite-btn.favorited { color: #e74c3c; background: #fff5f5; }

/* ============================================================
   STORIES
   ============================================================ */
/* ============================================================
   VISUAL STORIES — Editorial Portrait Tiles
   ============================================================ */
.stories-section {
  padding: 80px 0 90px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.stories-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 60px 40px;
}
.eyebrow-stories {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.eyebrow-stories::before { content: ''; width: 24px; height: 2px; background: var(--accent); display: block; }
.stories-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--heading); letter-spacing: -0.025em;
  line-height: 1; margin-bottom: 8px;
}
.stories-title::after {
  content: ''; display: block; width: 44px; height: 4px;
  background: var(--accent); border-radius: 2px; margin-top: 12px;
}
.stories-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-top: 14px; }
.stories-ig-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; white-space: nowrap; flex-shrink: 0;
}
.stories-ig-link:hover { color: var(--accent); border-color: var(--accent); }

/* GRID — masonry-like with two tall featured tiles */
.stories-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1.1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
  padding: 0 60px;
}

/* Tall tiles span 2 rows */
.story-tile--tall { grid-row: span 2; }

/* TILE BASE */
.story-tile {
  position: relative; overflow: hidden; border-radius: 14px;
  cursor: pointer; background: none; border: none; padding: 0;
  isolation: isolate;
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}
.story-tile:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 60px rgba(0,0,0,0.22); z-index: 2; }

/* Background photo */
.story-tile__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  transition: transform 0.65s var(--ease);
}
.story-tile__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-tile:hover .story-tile__bg { transform: scale(1.07); }

/* Gradient scrim */
.story-tile__scrim {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(4,10,6,0.96) 0%,
    rgba(4,10,6,0.55) 45%,
    rgba(4,10,6,0.05) 100%
  );
  transition: background 0.38s;
}
.story-tile:hover .story-tile__scrim {
  background: linear-gradient(
    to top,
    rgba(4,10,6,0.98) 0%,
    rgba(4,10,6,0.65) 50%,
    rgba(4,10,6,0.1) 100%
  );
}

/* Body content */
.story-tile__body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  pointer-events: none;
  padding: 20px 18px; display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}

.story-tile__location {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

.story-tile__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: #fff; line-height: 1.35;
  /* scale quote size by tile type */
  font-size: 0.88rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.story-tile--tall .story-tile__quote {
  font-size: 1.05rem; -webkit-line-clamp: 4;
}

.story-tile__author {
  display: flex; align-items: center; justify-content: space-between; margin-top: 4px;
}
.story-tile__handle {
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.story-tile__play {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s;
}
.story-tile:hover .story-tile__play {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* STORY MODAL — redesigned */
.story-modal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.28s var(--ease);
}
.story-modal.active { display: flex; opacity: 1; }
.story-modal__inner {
  position: relative; width: 500px; max-width: 95vw;
  background: #fafafa; border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.32s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.story-modal.active .story-modal__inner { transform: scale(1) translateY(0); }
.story-modal__close {
  position: fixed; top: 20px; right: 20px; z-index: 9010;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.7); border: none; color: #fff;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.story-modal__close:hover { background: rgba(0,0,0,0.9); }
.story-modal__content { width: 100%; background: #fafafa; }
.story-embed-wrap {
  display: flex; justify-content: center;
  padding: 12px; background: #fafafa;
}

/* Responsive */
@media (max-width: 1100px) {
  .stories-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .story-tile--tall { grid-row: span 2; }
  /* hide 4th & 5th tiles on medium screens */
  .stories-grid .story-tile:nth-child(4) { display: none; }
  .story-tile--tall:last-child { display: block; grid-row: span 2; }
}
@media (max-width: 760px) {
  .stories-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 24px 32px; }
  .stories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
    padding: 0 24px;
    gap: 8px;
  }
  .story-tile--tall { grid-row: span 2; }
  .stories-grid .story-tile:nth-child(4),
  .stories-grid .story-tile:nth-child(5) { display: none; }
}
@media (max-width: 480px) {
  .stories-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .story-tile, .story-tile--tall { height: 260px; grid-row: span 1; }
  .stories-grid .story-tile:nth-child(4),
  .stories-grid .story-tile:nth-child(5) { display: block; }
}

/* ============================================================
   GALLERY MODAL
   ============================================================ */
.gallery-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.gallery-modal.active { opacity: 1; pointer-events: auto; }
.gallery-modal-content { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); overflow: hidden; }
.gallery-modal img, .gallery-modal video { max-width: 100%; max-height: 90vh; object-fit: contain; }
.gallery-modal-close {
  position: absolute; top: 22px; right: 26px;
  font-size: 22px; color: white; cursor: pointer;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--speed);
}
.gallery-modal-close:hover { background: var(--accent-hot); }

/* ============================================================
   THINGS TO DO — Magazine Grid
   ============================================================ */

/* category colour tokens */
.act-section {
  --c-trek:    #2fa060;
  --c-adv:     #e85d2f;
  --c-fest:    #d4801a;
  --c-spirit:  #7c5fc8;
  --c-wild:    #2ea08a;
  --c-arts:    #c03a6e;
  --c-food:    #c83c3c;
  --c-village: #5a7fbf;
}

/* override .section padding — section handles its own internal spacing */
.act-section { padding: 80px 0 !important; }

/* ── Section header ── */
.act-header { padding: 0 60px 52px; }
.act-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.act-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--accent); }
.act-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; color: var(--heading);
  letter-spacing: -0.025em; line-height: 1.0; margin-bottom: 14px;
  padding-left: 0;
}
.act-header h2::after { content: ''; display: block; width: 56px; height: 4px; background: var(--accent); border-radius: 2px; margin-top: 14px; }
.act-header p { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* ── Count strip ── */
.act-count-strip {
  display: flex; gap: 0;
  padding: 0 60px 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 44px; overflow-x: auto;
}
.act-count-strip::-webkit-scrollbar { display: none; }
.count-item {
  flex: 0 0 auto; padding: 0 28px 0 0; margin-right: 28px;
  border-right: 1px solid var(--border); cursor: pointer; transition: opacity 0.2s;
}
.count-item:last-child { border-right: none; }
.count-item:hover { opacity: 0.65; }
.count-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; color: var(--heading); }
.count-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-top: 3px; }

/* ── Grid wrapper ── */
.mag-wrap { padding: 0 60px; display: flex; flex-direction: column; gap: 14px; }
.row-a { display: grid; grid-template-columns: 1.65fr 1fr 1fr; grid-template-rows: 520px; gap: 14px; }
.row-b { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 310px; gap: 14px; }
.row-c { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 300px; gap: 14px; }

/* ── Tile base ── */
.tile {
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; isolation: isolate; background: #101a13;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
.tile:hover { transform: translateY(-5px) scale(1.008); box-shadow: 0 20px 60px rgba(0,0,0,0.24); z-index: 2; }
.tile__bg { position: absolute; inset: 0; transition: transform 0.65s cubic-bezier(0.22,0.61,0.36,1), filter 0.4s; }
.tile__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile:hover .tile__bg { transform: scale(1.08); filter: brightness(0.82); }
.tile__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(4,14,8,0.95) 0%, rgba(4,14,8,0.5) 42%, rgba(4,14,8,0.06) 100%);
}
.tile__stripe { position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4; }
.tile__body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 22px; display: flex; flex-direction: column; gap: 9px; }

.tile__cat { display: inline-flex; align-items: center; gap: 7px; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.tile__cat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.tile__title { font-family: var(--font-display); color: #fff; letter-spacing: -0.015em; line-height: 1.1; }
.tile--hero  .tile__title { font-size: 2.5rem; font-weight: 900; }
.tile--mid   .tile__title { font-size: 1.6rem;  font-weight: 700; }
.tile--wide  .tile__title { font-size: 1.9rem;  font-weight: 700; }
.tile--small .tile__title { font-size: 1.35rem; font-weight: 700; }
.tile--third .tile__title { font-size: 1.45rem; font-weight: 700; }
.tile__title em { font-style: italic; font-weight: 400; color: var(--accent-light); }

.tile__desc { font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.55; }
.tile--small .tile__desc { display: none; }

.tile__chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px); color: rgba(255,255,255,0.9);
  font-size: 0.7rem; font-weight: 500; padding: 4px 10px; border-radius: 999px;
  white-space: nowrap; transition: background 0.2s, transform 0.2s;
}
.chip:hover { background: rgba(255,255,255,0.2); transform: translateY(-1px); }

.tile__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.tile__duration { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.tile__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: white; background: none; border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px; padding: 5px 14px; cursor: pointer; font-family: var(--font-body);
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.tile__cta:hover { background: var(--accent); border-color: var(--accent); transform: translateX(2px); }
.tile__cta svg { transition: transform 0.22s; }
.tile__cta:hover svg { transform: translateX(3px); }
.tile--small .tile__cta { display: none; }

/* ── Hover reveal panel ── */
.tile__reveal {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px;
  background: linear-gradient(to top, rgba(4,14,8,0.97) 0%, rgba(4,14,8,0.78) 52%, transparent 100%);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.32s cubic-bezier(0.22,0.61,0.36,1), transform 0.32s cubic-bezier(0.22,0.61,0.36,1);
  pointer-events: none;
}
.tile:hover .tile__reveal { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tile--small .tile__reveal { display: none; }

.reveal-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.reveal-row {
  display: flex; align-items: center; gap: 11px; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: padding-left 0.18s;
}
.reveal-row:last-child { border-bottom: none; }
.reveal-row:hover { padding-left: 4px; }
.reveal-icon { width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; background: rgba(255,255,255,0.07); }
.reveal-info { flex: 1; min-width: 0; }
.reveal-name { font-size: 0.86rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reveal-detail { font-size: 0.7rem; color: rgba(255,255,255,0.42); margin-top: 1px; }
.reveal-badge { font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.badge-easy     { background: rgba(46,160,96,0.22);   color: #5de09a; }
.badge-moderate { background: rgba(212,128,26,0.22);  color: #f5c06e; }
.badge-hard     { background: rgba(232,93,47,0.22);   color: #f5936e; }
.badge-unique   { background: rgba(124,95,200,0.22);  color: #bba8f5; }
.badge-seasonal { background: rgba(90,127,191,0.22);  color: #9dc4f5; }

/* ── Stripe gradients ── */
.stripe-trek    { background: linear-gradient(90deg, #2fa060, #1a5c38); }
.stripe-adv     { background: linear-gradient(90deg, #e85d2f, #c8391a); }
.stripe-fest    { background: linear-gradient(90deg, #d4801a, #b8620a); }
.stripe-spirit  { background: linear-gradient(90deg, #7c5fc8, #5838b8); }
.stripe-wild    { background: linear-gradient(90deg, #2ea08a, #1a7060); }
.stripe-arts    { background: linear-gradient(90deg, #c03a6e, #a02858); }
.stripe-food    { background: linear-gradient(90deg, #c83c3c, #a82020); }
.stripe-village { background: linear-gradient(90deg, #5a7fbf, #3a5fa0); }

/* ── Fallback backgrounds when images missing ── */
.bg-trek    { background: linear-gradient(155deg, #0e3d22 0%, #061508 100%); }
.bg-adv     { background: linear-gradient(155deg, #3d1806 0%, #1a0800 100%); }
.bg-fest    { background: linear-gradient(155deg, #3d2206 0%, #1a0e00 100%); }
.bg-spirit  { background: linear-gradient(155deg, #1a1640 0%, #0a0820 100%); }
.bg-wild    { background: linear-gradient(155deg, #0a3028 0%, #041410 100%); }
.bg-arts    { background: linear-gradient(155deg, #3d0e28 0%, #200618 100%); }
.bg-food    { background: linear-gradient(155deg, #3d0e0e 0%, #1a0400 100%); }
.bg-village { background: linear-gradient(155deg, #0e1e3a 0%, #060c1a 100%); }

/* ── Responsive overrides for activities grid ── */
@media (max-width: 1100px) {
  .row-a { grid-template-columns: 1.4fr 1fr; grid-template-rows: 440px 300px; }
  .row-a .tile:first-child { grid-row: 1 / 3; }
  .act-header, .act-count-strip, .mag-wrap { padding-left: 30px; padding-right: 30px; }
}
@media (max-width: 800px) {
  .row-a, .row-b, .row-c { grid-template-columns: 1fr; grid-template-rows: auto; }
  .row-a .tile { height: 420px; }
  .row-a .tile:first-child { grid-row: auto; }
  .row-b .tile, .row-c .tile { height: 300px; }
  .tile--small .tile__desc { display: block; }
  .tile--small .tile__cta  { display: inline-flex; }
  .act-header, .act-count-strip, .mag-wrap { padding-left: 18px; padding-right: 18px; }
  .tile__reveal { display: flex !important; }
}
@media (max-width: 480px) {
  .act-header h2 { font-size: 2.2rem; }
  .tile--hero .tile__title { font-size: 2rem; }
  .tile--mid  .tile__title { font-size: 1.4rem; }
}

/* ============================================================
   WEATHER WIDGET
   ============================================================ */
.weather-section { padding: 80px 0; border-top: 1px solid var(--border); }
.weather-section h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900;
  color: var(--heading); padding-left: 60px; margin-bottom: 0;
  letter-spacing: -0.02em;
}
.weather-section h2::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--accent); border-radius: 2px; margin-top: 10px;
}
.weather-subtitle { font-size: 0.93rem; color: var(--text-muted); padding-left: 60px; margin-bottom: 40px; margin-top: 10px; }
.weather-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; padding: 0 60px;
}
.weather-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 18px; text-align: center;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform var(--speed), box-shadow var(--speed);
}
.weather-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, transparent 50%); opacity: 0.04;
}
.weather-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.weather-city { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: 2px; }
.weather-region { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.weather-icon { font-size: 2.8rem; margin-bottom: 8px; }
.weather-temp { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.weather-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.weather-meta { display: flex; justify-content: space-around; padding-top: 12px; border-top: 1px solid var(--border); }
.weather-meta-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.weather-meta-label { font-size: 0.66rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.weather-meta-val { font-size: 0.84rem; font-weight: 700; color: var(--text-secondary); }
.weather-loading { color: var(--text-muted); padding: 30px 60px; font-size: 0.9rem; }
.weather-error { color: #e55; padding: 16px 60px; font-size: 0.85rem; }
.weather-updated { font-size: 0.7rem; color: var(--text-muted); padding: 12px 60px 0; }

/* ============================================================
   INTERACTIVE MAP
   ============================================================ */
.map-section { padding: 80px 0; border-top: 1px solid var(--border); }
.map-section h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900;
  color: var(--heading); padding-left: 60px; margin-bottom: 0; letter-spacing: -0.02em;
}
.map-section h2::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--accent); border-radius: 2px; margin-top: 10px;
}
.map-subtitle { font-size: 0.93rem; color: var(--text-muted); padding-left: 60px; margin-bottom: 40px; margin-top: 10px; }
.map-wrapper {
  margin: 0 60px; border-radius: var(--radius-md); overflow: hidden;
  border: none; box-shadow: var(--shadow-lg);
}
#bhutan-map { width: 100%; height: 480px; }
.map-legend {
  padding: 14px 24px; display: flex; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid var(--border); background: var(--bg-card);
}
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   TRIP PLANNER
   ============================================================ */
.planner-section { padding: 80px 0; border-top: 1px solid var(--border); }
.planner-section h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 900;
  color: var(--heading); padding-left: 60px; margin-bottom: 0; letter-spacing: -0.02em;
}
.planner-section h2::after {
  content: ''; display: block; width: 48px; height: 4px;
  background: var(--accent); border-radius: 2px; margin-top: 10px;
}
.planner-subtitle { font-size: 0.93rem; color: var(--text-muted); padding-left: 60px; margin-bottom: 40px; margin-top: 10px; }
.planner-container { margin: 0 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.planner-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm);
}
.planner-panel h3 { font-size: 1.4rem; font-weight: 700; color: var(--heading); margin: 0 0 22px; letter-spacing: -0.01em; }
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.9rem; font-family: var(--font-body);
  color: var(--text-primary); outline: none; transition: border-color var(--speed);
  box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 72px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--text-secondary); cursor: pointer; font-weight: 500; }
.checkbox-label input { width: auto; accent-color: var(--primary); }
.btn-generate {
  width: 100%; padding: 14px; background: var(--accent); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; margin-top: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed);
}
.btn-generate:hover { background: var(--accent-hot); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,128,26,0.35); }
.btn-generate:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.planner-output-wrap { display: flex; flex-direction: column; min-height: 380px; }
.planner-output-wrap .planner-panel { flex: 1; display: flex; flex-direction: column; }
#planner-output { flex: 1; overflow-y: auto; font-size: 0.88rem; line-height: 1.75; color: var(--text-secondary); max-height: 520px; }
.planner-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 260px; gap: 12px; color: var(--text-muted); text-align: center;
}
.planner-placeholder-icon { font-size: 2.8rem; opacity: 0.3; }
.planner-placeholder-text { font-size: 0.86rem; max-width: 230px; line-height: 1.6; }
.itin-day {
  background: var(--bg); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin-bottom: 12px;
}
.itin-day h4 { font-size: 0.96rem; font-weight: 700; color: var(--heading); margin: 0 0 5px; }
.itin-day p { margin: 0; font-size: 0.84rem; }
.typing-cursor::after { content: '▌'; animation: blink 0.7s infinite; color: var(--accent); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-posts {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px; padding: 0 60px;
}
.blog-post {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform var(--speed), box-shadow var(--speed);
  border-top: 4px solid var(--accent);
}
.blog-post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-post h3 { font-size: 1.3rem; font-weight: 700; color: var(--heading); margin: 0 0 14px; letter-spacing: -0.01em; }
.blog-post ul { margin: 0; padding-left: 18px; color: var(--text-secondary); font-size: 0.88rem; }
.blog-post li { margin-bottom: 7px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter.section {
  background: var(--heading);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: var(--radius-md); padding: 70px 60px; text-align: center; border-top: none;
  margin: 0 0;
}
#newsletter h2 { color: white; padding-left: 0; }
#newsletter h2::after { background: var(--accent-light); }
#newsletter p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 12px; }
#newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 32px 0 0; }
#newsletter-form input[type="email"] {
  padding: 13px 22px; border-radius: var(--radius-pill); border: none; outline: none;
  font-size: 0.93rem; font-family: var(--font-body); width: 320px;
  background: rgba(255,255,255,0.1); color: white;
  border: 2px solid rgba(255,255,255,0.15);
}
#newsletter-form input::placeholder { color: rgba(255,255,255,0.38); }
#newsletter-form input:focus { border-color: var(--accent-light); }
#newsletter-form button {
  background: var(--accent); color: white; padding: 13px 32px;
  border: none; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.08em;
  transition: background var(--speed), transform var(--speed);
}
#newsletter-form button:hover { background: var(--accent-hot); transform: translateY(-2px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonial-form {
  display: flex; flex-wrap: wrap; gap: 12px; padding: 0 60px; margin-bottom: 28px;
}
#testimonial-form input, #testimonial-form textarea {
  padding: 11px 15px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.88rem; font-family: var(--font-body);
  background: var(--bg); color: var(--text-primary);
  outline: none; transition: border-color var(--speed); flex: 1 1 200px;
}
#testimonial-form input:focus, #testimonial-form textarea:focus { border-color: var(--primary); }
#testimonial-form textarea { flex-basis: 100%; resize: vertical; }
#testimonial-form button {
  background: var(--heading); color: white; padding: 11px 26px;
  border: none; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background var(--speed);
}
#testimonial-form button:hover { background: var(--accent); }
.testimonials-container {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px; padding: 0 60px;
}
.testimonials-container blockquote {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 5px solid var(--accent); border-radius: var(--radius-sm);
  padding: 22px 22px 22px 24px; margin: 0;
  font-style: italic; color: var(--text-secondary); font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.testimonials-container blockquote span {
  display: block; margin-top: 12px; font-style: normal;
  font-weight: 700; font-size: 0.78rem; color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060e08; color: rgba(255,255,255,0.6);
  padding: 60px 60px 30px; margin-top: 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px;
}
footer h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: white; margin: 0 0 14px; letter-spacing: 0.01em;
}
footer p { font-size: 0.85rem; margin: 4px 0; }
footer a { color: rgba(255,255,255,0.5); transition: color var(--speed); }
footer a:hover { color: var(--accent-light); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; font-size: 0.85rem; }
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-links a {
  width: 36px; height: 36px; display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  font-size: 0.75rem; font-weight: 700;
  transition: background var(--speed), color var(--speed);
}
.social-links a:hover { background: var(--accent); color: white; }
.footer-bottom {
  max-width: 1200px; margin: 30px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: rgba(255,255,255,0.3);
}


/* ============================================================
   FAQ (Homepage)
   ============================================================ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 40px; padding: 0 60px;
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-col { display: flex; flex-direction: column; }
.faq-item-home { border-bottom: 1px solid var(--border); }
.faq-q-home {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 4px; cursor: pointer;
  font-size: 0.93rem; font-weight: 600; color: var(--heading);
  font-family: var(--font-body);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color var(--speed);
}
.faq-q-home:hover { color: var(--accent); }
.faq-q-home span { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; font-weight: 700; }
.faq-a-home {
  display: none; padding: 0 4px 18px;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8;
}

/* ============================================================
   WHERE TO STAY
   ============================================================ */
.stays-widget {
  margin: 0 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 34px 28px;
  box-shadow: var(--shadow-md);
}
.stays-controls {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
}
.stays-field {
  display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 120px;
}
.stays-field label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.stays-field select,
.stays-field input[type="date"] {
  padding: 11px 13px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; cursor: pointer; width: 100%;
  transition: border-color var(--speed), box-shadow var(--speed);
}
.stays-field select:focus,
.stays-field input[type="date"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}
.stays-platforms {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.stays-btn {
  flex: 1; min-width: 150px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border: none; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  cursor: pointer; color: white; letter-spacing: 0.05em; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.stays-btn:hover { opacity: 0.88; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stays-btn:active { transform: translateY(0); }
.stays-airbnb      { background: #FF5A5F; }
.stays-booking     { background: #003580; }
.stays-tripadvisor { background: #00AA6C; }
.stays-note {
  font-size: 0.8rem; color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 16px;
  margin: 0 0 26px; line-height: 1.6;
}
.stays-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 14px;
}
.stays-type-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 18px;
  border-top: 3px solid var(--accent);
  transition: transform var(--speed), box-shadow var(--speed);
}
.stays-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stays-type-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.stays-type-card h4 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--heading); margin: 0 0 6px;
}
.stays-type-card p {
  font-size: 0.81rem; color: var(--text-secondary); margin: 0; line-height: 1.6;
}
[data-theme="dark"] .stays-field select,
[data-theme="dark"] .stays-field input[type="date"] { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .stays-type-card { background: rgba(255,255,255,0.03); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .card { width: 300px; height: 420px; }
  .content-wrapper { padding: 60px 0 0; }
  .planner-container { grid-template-columns: 1fr; margin: 0 30px; }
  .section h2, .weather-section h2, .map-section h2, .planner-section h2 { padding-left: 30px; }
  .section-label, .section-subtitle, .weather-subtitle, .map-subtitle,
  .planner-subtitle, .weather-loading, .weather-error, .weather-updated { padding-left: 30px; }
  .weather-grid { padding-left: 30px; padding-right: 30px; }
  .map-wrapper, .stays-widget { margin: 0 30px; }
  .blog-posts, .testimonials-container, .faq-grid { padding-left: 30px; padding-right: 30px; }
  #testimonial-form { padding-left: 30px; padding-right: 30px; }
  .card-container { padding-left: 30px; }
  #newsletter.section { padding: 60px 30px; }
  .planner-container { margin: 0 30px; }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .card { width: 268px; height: 390px; }
  header nav ul { display: none; }
  #search-input { width: 110px; }
  .hero-content { padding: 0 24px; }
  .hero-stats { display: none; }
  .hero-content h1 { font-size: 2.6rem; }
  .weather-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .card { width: 82vw; }
  .weather-grid { grid-template-columns: 1fr; }
  .stays-types { grid-template-columns: 1fr 1fr; }
}
