/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

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

:root {
  /* Brand Colors */
  --color-charcoal: #0E0F12;
  --color-ember: #FF7A00;
  --color-alpine: #F4F5F7;
  --color-moss: #2F6F5E;
  --color-gold: #E9C46A;
  
  /* Functional Colors — Light Theme */
  --color-text: #1a1a1a;
  --color-text-muted: #555;
  --color-bg: #ffffff;
  --color-bg-soft: #F7F8FA;
  --color-bg-card: #ffffff;
  --color-primary: #FF7A00;
  --color-secondary: #2F6F5E;
  --color-border: rgba(14, 15, 18, 0.08);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 15, 18, 0.06);
  --shadow-md: 0 4px 20px rgba(14, 15, 18, 0.08);
  --shadow-lg: 0 8px 40px rgba(14, 15, 18, 0.10);
  --shadow-xl: 0 16px 48px rgba(14, 15, 18, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-sticky: 10;
  --z-overlay: 20;
  --z-modal: 30;
  --z-tooltip: 40;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

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

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-charcoal);
}

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

.section-link {
  font-weight: 600;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.section-link:hover {
  transform: translateX(4px);
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  transform-origin: 0%;
  z-index: var(--z-tooltip);
  transition: transform var(--transition-fast);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: var(--z-sticky);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-charcoal);
}

.logo-mountain {
  color: var(--color-primary);
  animation: mountainDraw 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.mountain-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: mountainLine 1.5s ease-out forwards;
}

@keyframes mountainLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes mountainDraw {
  to {
    opacity: 1;
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-xs);
  cursor: pointer;
  z-index: var(--z-overlay);
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-charcoal);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-lg);
  }
  
  .nav__menu.active {
    transform: translateX(0);
  }
}

.nav__link {
  position: relative;
  padding: var(--space-xs) 0;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

.nav__link.active {
  color: var(--color-charcoal);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .nav__link::after {
    transition: none;
  }
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: block;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
}

.btn--primary:hover {
  background: #e06a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.3);
}

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

.btn--ghost:hover {
  background: var(--color-charcoal);
  color: white;
}

/* Ghost variant for dark backgrounds (hero, CTA, footer) */
.hero .btn--ghost,
.cta-section .btn--ghost {
  color: white;
  border-color: white;
}

.hero .btn--ghost:hover,
.cta-section .btn--ghost:hover {
  background: white;
  color: var(--color-charcoal);
}

.btn--small {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn--large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
  
  .btn:active::before {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #0E0F12 0%, #1a1d24 50%, #0E0F12 100%);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
  opacity: 0.8;
  animation: kenBurns 30s infinite;
}

@keyframes kenBurns {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-20px, -20px);
  }
}

/* Mountain silhouette pattern overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  background:
    url('data:image/svg+xml,<svg width="1920" height="350" xmlns="http://www.w3.org/2000/svg"><path d="M0 350 L200 250 L400 280 L600 230 L800 260 L1000 200 L1200 240 L1400 180 L1600 220 L1920 190 L1920 350 L0 350 Z" fill="rgba(255,255,255,0.06)"/><path d="M0 350 L300 270 L600 300 L900 250 L1200 280 L1500 220 L1920 260 L1920 350 L0 350 Z" fill="rgba(255,122,0,0.08)"/><path d="M0 350 L150 290 L350 310 L550 270 L750 300 L950 260 L1150 280 L1350 240 L1550 270 L1750 250 L1920 270 L1920 350 L0 350 Z" fill="rgba(255,255,255,0.04)"/></svg>') bottom center/cover no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* Soft bottom fade from hero into white content */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, 
    var(--color-bg) 0%,
    rgba(255,255,255, 0.6) 40%,
    transparent 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

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

.hero__title {
  margin-bottom: var(--space-md);
  line-height: 1.1;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title span {
  display: block;
}

.hero__tagline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  font-weight: 600;
}

.hero__description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
}

.hero__cta .btn {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.hero__cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero__cta .btn:hover::before {
  left: 100%;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: white;
  font-size: 0.875rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WHY SECTION
   ============================================ */

.why {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.2);
}

.why-card__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.why-card__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.why-card__text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   TRIP CARDS
   ============================================ */

.featured-trips {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-soft);
}

.trip-carousel {
  position: relative;
  overflow: hidden;
}

.trip-carousel__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-md) 0;
}

.trip-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.trip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.2);
}

.trip-card__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.trip-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
  transition: opacity var(--transition-base);
}

.trip-card:hover .trip-card__image::after {
  opacity: 0.5;
}

.trip-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.trip-card:hover .trip-card__image img {
  transform: scale(1.08);
}

.trip-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 4px 12px;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.trip-card__content {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.trip-card__location {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trip-card__title {
  margin: var(--space-xs) 0;
  font-size: 1rem;
  color: var(--color-charcoal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trip-card__description {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.trip-card__meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-charcoal);
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.reviews__container {
  position: relative;
  margin-top: var(--space-2xl);
}

.reviews__slider {
  display: grid;
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__rating {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__author strong {
  font-weight: 700;
  color: var(--color-charcoal);
}

.testimonial-card__author span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

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

.reviews__rating {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.reviews__count {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.reviews__link {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  padding: var(--space-lg) 0;
  background: var(--color-bg-soft);
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.marquee__track {
  display: flex;
  gap: var(--space-xl);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  color: rgba(14, 15, 18, 0.12);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #0E0F12 0%, #1a1d24 50%, var(--color-moss) 100%);
  color: white;
}

.cta-card {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.cta-card__title {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: var(--space-md);
  color: white;
}

.cta-card__text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.cta-card__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--space-3xl) 0 var(--space-lg);
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.8);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: white;
}

.footer__tagline {
  margin-bottom: var(--space-lg);
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: white;
}

.social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer__subtitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: white;
}

.footer__address {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

/* ============================================
   JOURNAL CARDS
   ============================================ */

.journal-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.journal-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.08);
}

.journal-card__content {
  padding: var(--space-lg);
}

.journal-card__date {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-xs);
}

.journal-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-charcoal);
}

.journal-card__excerpt {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.journal-card__read {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ============================================
   FILTERS
   ============================================ */

.trips-filters {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-charcoal);
}

.filter-select {
  padding: var(--space-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.trips-grid-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-soft);
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

/* ============================================
   CONTACT FORM
   ============================================ */

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e63946;
}

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

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
  .hero__cta {
    flex-direction: column;
  }
  
  .hero__cta .btn {
    width: 100%;
  }
  
  .trip-carousel__track {
    grid-template-columns: 1fr;
  }
  
  .cta-card {
    padding: var(--space-lg);
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .filters {
    grid-template-columns: 1fr;
  }
  
  .contact-form button {
    width: 100%;
  }
}
