/* ========================================
   EXPLORE MOUNTAIN — Global Design Tokens
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-accent: #3A652D;
  --color-accent-hover: #2d5022;
  --color-accent-light: rgba(58, 101, 45, 0.08);
  --color-bg: #faf8f5;
  --color-bg-alt: #f3efe8;
  --color-bg-card: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #5a5a5a;
  --color-text-muted: #8a8a8a;
  --color-border: #e5e0d8;
  --color-border-light: #ede9e1;
  --nav-bg: #faf8f5;
  --color-gold: #d4a843;
  --color-danger: #c0392b;
  --color-easy: #3A652D;
  --color-moderate: #d4a843;
  --color-difficult: #c0392b;

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --text-xs: 0.72rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.35rem;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Z-index */
  --z-nav: 1000;
  --z-scroll-top: 900;
  --z-float: 800;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  height: 77px;
  min-height: 77px;
  max-height: 77px;
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  width: 100%;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.nav__logo-name {
  font-family: var(--font-heading, 'Lora', serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__logo-name--dark { color: var(--color-text); }
.nav__logo-name--gold { color: var(--color-gold); }

.nav__logo-tagline {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted, #8a8a8a);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .nav__logo-img { height: 44px; }
  .nav__logo-tagline { display: none; }
  .nav__logo-name { font-size: 18px; }
}

.nav__logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__center {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__treks-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  padding: 0;
  white-space: nowrap;
}

.nav__treks-btn svg {
  transition: transform 0.15s;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.15s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  color: var(--color-text);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  border: none;
  background: transparent;
  z-index: 101;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58, 101, 45, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--lg {
  padding: 14px 28px;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 8px 16px;
  font-size: var(--text-xs);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: 77px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__mist {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  max-width: 700px;
  margin-top: -60px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: heroFadeUp 1s ease-out;
}

.hero__title-accent {
  color: #fff;
}

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

.hero__search-wrap {
  margin-top: var(--space-xl);
  animation: heroFadeUp 1s ease-out 0.3s both;
}

.hero__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  max-width: 560px;
}

.hero__search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  outline: none;
  padding: 12px 0;
}

.hero__search-input::placeholder {
  color: var(--color-text-muted);
}

.hero__search-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hero__search-btn:hover {
  background: var(--color-accent-hover);
}

/* Hero Best Rated Places */
.hero__places {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.hero__places-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero__places-row {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}

.hero__places-row::-webkit-scrollbar {
  display: none;
}

.hero__place {
  flex-shrink: 0;
  width: 110px;
  cursor: pointer;
}

.hero__place-thumb {
  width: 110px;
  height: 75px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 6px;
  transition: transform 0.2s;
}

.hero__place:hover .hero__place-thumb {
  transform: scale(1.05);
}

.hero__place-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Hero Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator span {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
  padding: 60px var(--space-md);
  background: var(--color-bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stats__item {
  padding: var(--space-xl) var(--space-md);
}

.stats__number {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
}

.stats__label {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
}

/* ========================================
   SECTION HEADERS (Shared)
   ======================================== */
.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.section-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 580px;
  font-style: italic;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

/* ========================================
   TREK CARDS / DISCOVER TRAIL
   ======================================== */
.treks {
  padding: 80px 0;
  background: linear-gradient(180deg, #dde7f6 0%, #e8ecf4 30%, #f3efe8 100%);
}

.treks__filters {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  border: 1px solid var(--color-border);
}

.filter-group {
  margin-bottom: var(--space-lg);
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%231a1a1a' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.filter-chips {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.chip {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.2s;
}

.chip--active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.chip:hover:not(.chip--active) {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.treks__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Trek Card */
.trek-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.trek-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.trek-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.trek-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.trek-card:hover .trek-card__image img {
  transform: scale(1.05);
}

.trek-card__badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge--easy {
  background: var(--color-easy);
  color: #fff;
}

.badge--moderate {
  background: var(--color-moderate);
  color: #fff;
}

.badge--difficult {
  background: var(--color-difficult);
  color: #fff;
}

.badge--rating {
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.badge--rating .star {
  color: #f4c542;
}

.badge--beginner {
  background: var(--color-accent);
  color: #fff;
}

.badge--discount {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-danger);
  color: #fff;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 0.72rem;
  font-weight: 700;
}

.trek-card__date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.trek-card__date-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.trek-card__body {
  padding: var(--space-lg);
}

.trek-card__region {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.trek-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.trek-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.trek-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trek-card__meta-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.trek-card__divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-lg);
}

.trek-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.trek-card__price-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.trek-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}

.trek-card__price-old {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}

.trek-card__price-per {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.trek-card__cancel {
  font-size: var(--text-xs);
  color: var(--color-accent);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trek-card__cancel svg {
  width: 12px;
  height: 12px;
}

.load-more {
  text-align: center;
  margin-top: var(--space-2xl);
}

.load-more__btn {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  background: transparent;
  border: none;
  padding: var(--space-md) var(--space-xl);
  cursor: pointer;
  transition: color 0.2s;
}

.load-more__btn:hover {
  color: var(--color-accent);
}

/* ========================================
   HAPPY CUSTOMERS
   ======================================== */
.happy-customers {
  padding: 80px var(--space-md);
  background: var(--color-bg-alt);
}

.happy-customers__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.happy-customers__tag {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.happy-customers__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.happy-customers__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.happy-customers__carousel {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.happy-customers__image {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.happy-customers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.happy-customers__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.happy-customers__image-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
}

.happy-customers__image-trek {
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* ========================================
   TREK STORIES / TESTIMONIALS
   ======================================== */
.stories {
  padding: 80px 0;
  background: var(--color-bg);
}

.stories__carousel-wrap {
  position: relative;
}

.stories__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.story-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.story-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  user-select: none;
}

.story-card__info {
  flex: 1;
  min-width: 0;
}

.story-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.story-card__verified {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.story-card__rating {
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.story-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.story-card__footer {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.story-card__footer strong {
  color: var(--color-text);
  font-weight: 600;
}

.stories__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
}

.stories__dot {
  height: 8px;
  border-radius: var(--radius-full);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.stories__dot--active {
  width: 24px;
  background: var(--color-accent);
}

.stories__dot:not(.stories__dot--active) {
  width: 8px;
  background: var(--color-border);
}

.stories__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  color: var(--color-text);
}

.stories__arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.stories__arrow--prev {
  left: -20px;
}

.stories__arrow--next {
  right: -20px;
}

/* ========================================
   EXPLORE BY REGION
   ======================================== */
.regions {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.regions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.region-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.region-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.region-card:hover .region-card__bg {
  transform: scale(1.1);
}

.region-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%);
}

.region-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  color: #fff;
}

.region-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.region-card__count {
  font-size: var(--text-sm);
  opacity: 0.85;
}

/* ========================================
   TREK BY SEASON
   ======================================== */
.seasons {
  padding: 80px 0;
  background: var(--color-bg);
}

.seasons__tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
  scrollbar-width: none;
}

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

.seasons__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: all 0.2s;
}

.seasons__tab--active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.seasons__tab:hover:not(.seasons__tab--active) {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.seasons__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.seasons__info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.seasons__info p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.seasons__date-range {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.seasons__stats {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-md) 0;
  padding-top: var(--space-sm);
}

.seasons__stat-num {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1;
}

.seasons__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.seasons__months {
  display: flex;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.seasons__month {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 600;
}

.seasons__treks {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.seasons__treks p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 12px 0;
}

/* ========================================
   FEATURED / BEST PLACES
   ======================================== */
.featured {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.featured__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
  padding: 80px 0;
  background: var(--color-bg);
}

.why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.why-us__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.why-us__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.why-us__heading-accent {
  color: var(--color-accent);
}

.why-us__intro {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.why-us__metric {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.why-us__metric-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.why-us__metric-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.why-us__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.why-us__stat {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.why-us__stat-num {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.why-us__stat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.why-us__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.why-us__verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: var(--color-accent);
  font-weight: 600;
}

.why-us__trust {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.why-us__team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
  transition: gap 0.2s;
}

.why-us__team-link:hover {
  gap: 10px;
}

.why-us__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-us__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-us__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why-us__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.why-us__card-num {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.5;
}

.why-us__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.why-us__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.why-us__card-body {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq__item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--color-accent);
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.footer__brand-name span {
  color: var(--color-accent);
}

.footer__brand-tagline {
  font-size: var(--text-xs);
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: #999;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.2s;
}

.footer__social:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(58,101,45,0.1);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links li a {
  font-size: var(--text-sm);
  color: #888;
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: #666;
}

.footer__bottom a {
  color: var(--color-accent);
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-scroll-top);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: var(--color-text);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-float);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  color: #fff;
  border: none;
  transition: transform 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.talk-expert {
  position: fixed;
  bottom: 30px;
  right: 90px;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: var(--z-float);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border: none;
  transition: background 0.2s;
}

.talk-expert:hover {
  background: #444;
}

.talk-expert__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0 0 6px;
  opacity: 0.7;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

  .stories__arrow {
    display: none;
  }

  .regions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .why-us__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__scroll-indicator {
    display: none;
  }

  .btn--desktop {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

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

  .hero__places-row {
    gap: var(--space-sm);
  }

  .hero__place {
    width: 90px;
  }

  .hero__place-thumb {
    width: 90px;
    height: 60px;
  }
}

/* ========================================
   DARK MODE
   ======================================== */
body.dark {
  --color-bg: #12140f;
  --color-bg-alt: #1a1d16;
  --color-bg-card: #1e2118;
  --color-text: #f2efe9;
  --color-text-secondary: #c3bfb6;
  --color-text-muted: #8f8b81;
  --color-border: #33372c;
  --color-border-light: #2a2e24;
  --nav-bg: #12140f;
  --color-accent: #6fae57;
  --color-accent-hover: #7fbf66;
  --color-accent-light: rgba(111, 174, 87, 0.14);
}

body.dark .nav__logo-name--dark { color: var(--color-text); }
body.dark .hero__overlay { background: rgba(0,0,0,0.45); }
body.dark img.region-card__bg { filter: brightness(0.85); }
body,
body * { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }

/* ========================================
   MOBILE MENU (open state)
   ======================================== */
@media (max-width: 1024px) {
  .nav__links.nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: auto;
    width: min(300px, calc(100vw - 32px));
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    gap: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    z-index: var(--z-nav);
    animation: navMenuIn 0.22s ease;
  }
  .nav__links.nav__links--open .nav__link {
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
  }
  .nav__links.nav__links--open .nav__link:last-child { border-bottom: none; }

  /* hamburger turns into an ✕ */
  .nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
  .nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@keyframes navMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   STORIES SLIDER (functional carousel)
   ======================================== */
.stories__carousel.is-slider {
  display: flex;
  overflow: hidden;
  grid-template-columns: none;
  scroll-behavior: smooth;
}
.stories__carousel.is-slider .story-card {
  flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
  margin-right: var(--space-lg);
}
@media (max-width: 1024px) {
  .stories__carousel.is-slider .story-card { flex: 0 0 100%; margin-right: var(--space-lg); }
}

/* ========================================
   FILTER / NO-RESULTS
   ======================================== */
.trek-card.is-hidden { display: none !important; }
.treks__no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
}
.treks__no-results button {
  margin-top: var(--space-md);
}

/* ========================================
   TOAST
   ======================================== */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ==================== ADVENTURE JOURNAL ==================== */
.journal { padding: var(--space-3xl, 96px) 0; background: var(--color-bg-alt, #f7f6f2); }
.journal__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.journal-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; }
.journal-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.journal-card__image { position: relative; height: 160px; overflow: hidden; }
.journal-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.journal-card:hover .journal-card__image img { transform: scale(1.06); }
.journal-card__cat { position: absolute; top: 12px; left: 12px; background: var(--color-gold); color: #1a1a1a; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 20px; }
.journal-card__body { display: flex; flex-direction: column; flex: 1; padding: var(--space-lg); }
.journal-card__meta { font-size: .75rem; color: var(--color-text-secondary, #777); margin-bottom: 8px; }
.journal-card__title { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.35; margin: 0 0 8px; }
.journal-card__excerpt { font-size: .85rem; line-height: 1.55; color: var(--color-text-secondary, #666); margin: 0 0 12px; flex: 1; }
.journal-card__link { color: var(--color-accent); font-weight: 700; font-size: .85rem; }
body.dark .journal { background: #161a16; }
body.dark .journal-card { background: #1f241f; color: #ddd; }

/* ==================== OWNER ==================== */
.owner { padding: var(--space-3xl, 96px) 0; }
.owner__card { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-2xl); align-items: center; background: var(--color-accent-light); border-radius: var(--radius-lg); padding: var(--space-2xl); margin-bottom: var(--space-2xl); }
.owner__card--reverse { direction: rtl; }
.owner__card--reverse > * { direction: ltr; }
.owner__bio { line-height: 1.7; color: var(--color-text-secondary, #555); }
.owner__profile { text-align: center; }
.owner__avatar { width: 140px; height: 140px; margin: 0 auto var(--space-md); border-radius: 50%; background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; }
.owner__avatar--photo { width: 220px; height: 290px; border-radius: var(--radius-lg, 16px); background: var(--color-bg-alt, #f2f1ec); padding: 0; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.owner__avatar--photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.owner__name { font-family: var(--font-heading); font-size: 1.4rem; margin: 0 0 4px; }
.owner__role { color: var(--color-accent); font-weight: 700; font-size: .9rem; margin-bottom: var(--space-md); }
.owner__stats { display: flex; justify-content: center; gap: var(--space-2xl); }
.owner__stat-num { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-accent); }
.owner__stat-label { font-size: .8rem; color: var(--color-text-secondary, #777); }
body.dark .owner__card { background: #1f241f; }

/* ==================== TEAM ==================== */
.team { padding: var(--space-3xl, 96px) 0; background: var(--color-bg-alt, #f7f6f2); }
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 360px)); gap: var(--space-lg); justify-content: center; }
.team-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-xl); text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.team-card__avatar { width: 110px; height: 110px; margin: 0 auto var(--space-md); border-radius: 50%; background: var(--color-gold); color: #1a1a1a; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.team-card__role { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-accent); margin-bottom: 4px; }
.team-card__name { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 2px; }
.team-card__region { font-size: .85rem; color: var(--color-text-secondary, #777); margin-bottom: var(--space-md); }
.team-card__bio { font-size: .88rem; line-height: 1.6; color: var(--color-text-secondary, #666); margin: 0; }
body.dark .team { background: #161a16; }
body.dark .team-card { background: #1f241f; color: #ddd; }

/* ==================== FAQ CTA ==================== */
.faq__cta { text-align: center; margin-top: var(--space-2xl); }
.faq__cta p { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: var(--space-md); }

/* ==================== FINAL CTA ==================== */
.cta-final { background: linear-gradient(135deg, var(--color-accent) 0%, #2d5022 100%); color: #fff; text-align: center; padding: 80px 0; }
.cta-final__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.25; margin: 0 0 var(--space-md); }
.cta-final__desc { max-width: 560px; margin: 0 auto var(--space-xl); color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.6; }
.cta-final__buttons { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-xl); }
.btn--gold { background: var(--color-gold); color: #1a1a1a; }
.btn--gold:hover { background: #c1963a; }
.btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.cta-final__badges { display: flex; gap: var(--space-lg); justify-content: center; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.8); }
.cta-final__badges span { display: inline-flex; align-items: center; gap: 6px; }
.cta-final__badges span::before { content: "✓"; color: var(--color-gold); font-weight: 700; }

/* ==================== FOOTER (heyhikers layout) ==================== */
.footer__grid { grid-template-columns: 1.6fr 1fr .9fr 1fr 1.1fr; }
.footer__contact li a { font-weight: 600; }
.footer__whatsapp-link { color: #25D366 !important; font-weight: 700; }
.footer__location { color: #999; }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } .journal__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .owner__card, .owner__card--reverse { grid-template-columns: 1fr; direction: ltr; } .journal__grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==================== HOME: FROM OUR BLOG + LATEST NEWS ==================== */
.blog-home { padding: var(--space-3xl, 96px) 0; }
.blog-home__grid { grid-template-columns: repeat(3, 1fr); }
.blog-home__viewall { color: var(--color-accent); font-weight: 700; text-decoration: none; white-space: nowrap; padding-bottom: 6px; }
.blog-home__viewall:hover { text-decoration: underline; }
.news-home { padding: 0 0 var(--space-3xl, 96px); }
.news-home__list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.news-home__item { display: flex; align-items: center; gap: 16px; background: var(--color-bg-alt, #f7f6f2); border-radius: var(--radius-lg); padding: 16px 20px; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.news-home__item:hover { transform: translateX(6px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.news-home__tag { flex-shrink: 0; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 10px; border-radius: 20px; background: var(--color-accent-light); color: var(--color-accent); }
.news-home__tag--gold { background: rgba(212,168,67,.15); color: #a97f1f; }
.news-home__tag--red { background: rgba(200,60,50,.12); color: #b03a30; }
.news-home__item-title { font-weight: 600; line-height: 1.4; }
.news-home__item-date { font-size: .78rem; color: var(--color-text-secondary, #888); margin-top: 2px; }
body.dark .news-home__item { background: #1f241f; }
@media (max-width: 1024px){ .blog-home__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px){ .blog-home__grid { grid-template-columns: 1fr; } .news-home__item { flex-direction: column; align-items: flex-start; gap: 8px; } }
