:root {
  /* WanderWheel color palette */
  --color-yellow: #FFD93D;
  --color-yellow-light: #FFE566;
  --color-yellow-dark: #E0C000;
  --color-blue: #4A90E2;
  --color-blue-light: #6BA5E7;
  --color-blue-dark: #3A7BC8;
  --color-red: #E94B3C;
  --color-red-light: #EE6A5D;
  --color-red-dark: #D43D2E;
  --color-cream: #FFFEF7;
  --color-cream-dark: #FDF9E8;

  /* Neutral palette */
  --color-white: #ffffff;
  --color-sand: #f7f4ed;
  --color-stone: #6b6b6b;
  --color-charcoal: #2D3748;
  --color-charcoal-light: #4A5568;

  /* Semantic colors */
  --color-primary: var(--color-blue);
  --color-primary-light: var(--color-blue-light);
  --color-accent: var(--color-yellow);
  --color-accent-dark: var(--color-yellow-dark);
  --color-highlight: var(--color-red);
  --color-highlight-dark: var(--color-red-dark);

  /* Typography - Playful & friendly */
  --font-display: 'Patrick Hand', cursive;
  --font-heading: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Shadows - playful offset style */
  --shadow-sm: 2px 2px 0 var(--color-charcoal);
  --shadow-md: 4px 4px 0 var(--color-charcoal);
  --shadow-lg: 6px 6px 0 var(--color-charcoal);
  --shadow-xl: 8px 8px 0 var(--color-charcoal);
  --shadow-color: 6px 6px 0 var(--color-red);
  --shadow-soft: 0 10px 40px rgba(45, 55, 72, 0.1);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -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;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   Wavy Border Classes - Hand-drawn effect
   -------------------------------------------------------------------------- */
.wavy-border {
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.wavy-border-sm {
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
}

.wavy-border-lg {
  border: 4px solid var(--color-charcoal);
  border-radius: 255px 20px 225px 20px / 20px 225px 20px 255px;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-8px) rotate(6deg); }
}

.wheel-spin {
  animation: spin-slow 20s linear infinite;
}

.floaty {
  animation: float 4s ease-in-out infinite;
}

.blob-bg {
  border-radius: 42% 58% 70% 30% / 30% 30% 70% 70%;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

.handwritten {
  font-family: var(--font-display);
}

/* Scribble underline effect */
.scribble-underline {
  position: relative;
  display: inline-block;
}

.scribble-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 25 10, 50 5 T 100 5' stroke='%23E94B3C' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.header__logo:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.header__logo-icon {
  width: 48px;
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon svg {
  width: 100%;
  height: 100%;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo-text span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-blue);
  margin-top: -2px;
}

/* Header Language Selector */
.header .lang-selector {
  margin-left: auto;
  margin-right: var(--space-md);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-md);
}

.header__nav-link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-charcoal);
  transition: all var(--transition-fast);
  padding: var(--space-sm) var(--space-md);
  border-radius: 100px;
}

.header__nav-link:hover {
  color: var(--color-red);
  background: var(--color-cream);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  margin-left: var(--space-sm);
}

.header__cta:hover {
  background: var(--color-white);
  color: var(--color-red);
  border-color: var(--color-red);
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  background: var(--color-white);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header__menu-toggle:hover {
  background: var(--color-yellow);
  transform: scale(1.05);
}

.header__menu-toggle:active {
  transform: scale(0.95);
}

.header__menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header .lang-selector {
    margin-right: var(--space-md);
  }

  .header__menu-toggle {
    display: flex;
  }

  /* Open state */
  .header--menu-open .header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: var(--space-lg);
    right: var(--space-lg);
    margin-top: var(--space-sm);
    border-radius: 16px 4px 16px 4px / 4px 16px 4px 16px;
    padding: var(--space-md);
    z-index: 99;
  }

  .header--menu-open .header__nav-link {
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    font-size: 1.0625rem;
  }

  /* Hamburger → X animation */
  .header--menu-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header--menu-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header--menu-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* --------------------------------------------------------------------------
   Hero Section - Playful & Energetic
   -------------------------------------------------------------------------- */
.hero {
  padding: calc(var(--space-4xl) + 80px) 0 var(--space-4xl);
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: var(--color-yellow);
  opacity: 0.4;
  border-radius: 42% 58% 70% 30% / 30% 30% 70% 70%;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: var(--color-blue);
  opacity: 0.2;
  border-radius: 42% 58% 70% 30% / 30% 30% 70% 70%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
}

/* Sunburst background */
.hero .sunburst {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    var(--color-yellow) 0deg 10deg,
    transparent 10deg 20deg
  );
  opacity: 0.08;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (min-width: 900px) {
  .hero__content {
    text-align: left;
  }
}

.hero__eyebrow {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-charcoal);
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  font-weight: 700;
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero__title {
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  line-height: 1.1;
}

.hero__title em {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--color-red);
  display: inline-block;
  transform: rotate(-1deg);
  font-size: 1.1em;
}

.hero__description {
  font-size: 1.25rem;
  color: var(--color-charcoal-light);
  font-weight: 500;
  max-width: 520px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

@media (min-width: 900px) {
  .hero__stats {
    justify-content: flex-start;
  }
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--color-charcoal);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-stone);
}

/* Hero two-column grid */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

/* Route card visual (right column) */
.hero__visual {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

@media (max-width: 899px) {
  .hero__visual {
    order: -1;
  }

  .hero__route-card {
    max-width: 360px;
  }
}

.hero__route-card {
  background: var(--color-white);
  border: 3px solid var(--color-charcoal);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  width: 100%;
  max-width: 420px;
  transform: rotate(1.5deg);
  transition: transform var(--transition-base);
}

.hero__route-card:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.hero__route-badge {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-sm);
}

.hero__route-distance {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-charcoal);
  font-weight: 700;
}

.hero__route-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animated route progress line */
.hero__route-walked {
  animation: drawRoute 3s ease-in-out 1s forwards;
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 200;
  }
}

/* Bike icon bounce */
.hero__route-bike {
  animation: bikeBounce 2s ease-in-out infinite;
}

@keyframes bikeBounce {
  0%, 100% { transform: translate(130px, 190px); }
  50% { transform: translate(130px, 187px); }
}

.hero__route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px dashed var(--color-charcoal);
}

.hero__route-poi-count,
.hero__route-elevation {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

/* --------------------------------------------------------------------------
   Tours Section
   -------------------------------------------------------------------------- */
.tours {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Polka dot background */
.tours::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-yellow) 8%, transparent 8%);
  background-position: 0 0;
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.tours__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.tours__title {
  color: var(--color-charcoal);
  position: relative;
}

.tours__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--color-red);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

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

.tours__filter {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 2px solid var(--color-charcoal);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.tours__filter:hover {
  background: var(--color-cream);
}

.tours__filter--active {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.tours__filter--active:hover {
  background: var(--color-blue-light);
  border-color: var(--color-blue-light);
}

/* --------------------------------------------------------------------------
   Tour Grid & Cards - Playful style
   -------------------------------------------------------------------------- */
.tours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.tour-card {
  background: var(--color-white);
  overflow: hidden;
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transition: all var(--transition-base);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
  box-shadow: var(--shadow-lg);
}

.tour-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.tour-card:hover {
  transform: rotate(-1deg) translateY(-8px);
  box-shadow: 8px 8px 0 var(--color-charcoal);
}

.tour-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-sand);
  overflow: hidden;
}

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

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

.tour-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  color: var(--color-white);
  font-size: 4rem;
  opacity: 0.9;
}

.tour-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-white);
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

.tour-card__badge--guided {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

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

.tour-card__location {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-stone);
  margin-bottom: var(--space-sm);
}

.tour-card__location svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.tour-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.tour-card:hover .tour-card__title {
  color: var(--color-blue);
}

.tour-card__description {
  font-size: 0.9375rem;
  color: var(--color-stone);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-cream);
}

.tour-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.tour-card__duration,
.tour-card__price {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

.tour-card__duration {
  color: var(--color-stone);
  font-weight: 600;
}

.tour-card__duration svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.tour-card__price {
  font-weight: 800;
  color: var(--color-red);
  font-size: 1rem;
}

.tour-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-blue);
  transition: gap var(--transition-fast);
}

.tour-card__link:hover {
  gap: var(--space-sm);
}

.tour-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.tour-card__link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .tours__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Loading & Error States
   -------------------------------------------------------------------------- */
.tours__loading,
.tours__error,
.tours__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.tours__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-cream);
  border-top-color: var(--color-blue);
  border-right-color: var(--color-yellow);
  border-bottom-color: var(--color-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.tours__loading-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-stone);
}

.tours__error {
  background: #fef2f2;
  border: 3px solid var(--color-red);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.tours__error-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
}

.tours__error-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-red-dark);
  margin-bottom: var(--space-sm);
}

.tours__error-message {
  font-size: 1rem;
  color: var(--color-red);
  margin-bottom: var(--space-lg);
}

.tours__error-retry {
  padding: var(--space-md) var(--space-xl);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 3px solid var(--color-red);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.tours__error-retry:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.tours__empty {
  background: var(--color-cream);
  border: 3px dashed var(--color-stone);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.tours__empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.tours__empty-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.tours__empty-message {
  font-size: 1rem;
  color: var(--color-stone);
}

/* --------------------------------------------------------------------------
   Footer - Playful & Structured
   -------------------------------------------------------------------------- */
.footer {
  margin-top: auto;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 6px solid var(--color-yellow);
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__logo-text span {
  font-family: var(--font-display);
  color: var(--color-yellow);
  font-size: 1rem;
  font-weight: 400;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: #a0a0a0;
  line-height: 1.7;
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-yellow);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer__link {
  font-size: 0.9375rem;
  color: #a0a0a0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.875rem;
  color: #707070;
}

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

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  color: #a0a0a0;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.footer__social-link:hover {
  background: var(--color-yellow);
  color: var(--color-charcoal);
  border-color: var(--color-yellow);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Staggered animation delays for tour cards */
.tour-card:nth-child(1) { animation-delay: 0.05s; }
.tour-card:nth-child(2) { animation-delay: 0.1s; }
.tour-card:nth-child(3) { animation-delay: 0.15s; }
.tour-card:nth-child(4) { animation-delay: 0.2s; }
.tour-card:nth-child(5) { animation-delay: 0.25s; }
.tour-card:nth-child(6) { animation-delay: 0.3s; }
.tour-card:nth-child(7) { animation-delay: 0.35s; }
.tour-card:nth-child(8) { animation-delay: 0.4s; }
.tour-card:nth-child(9) { animation-delay: 0.45s; }

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  padding: var(--space-md) 0;
  background: var(--color-cream);
  border-bottom: 2px solid var(--color-charcoal);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-stone);
  font-weight: 600;
}

.breadcrumb__item:not(:last-child)::after {
  content: '→';
  color: var(--color-stone);
  opacity: 0.5;
}

.breadcrumb__link {
  color: var(--color-stone);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-blue);
}

.breadcrumb__item--current {
  color: var(--color-charcoal);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Tour Detail Page
   -------------------------------------------------------------------------- */
.tour-detail {
  padding: var(--space-2xl) 0 var(--space-4xl);
  background: var(--color-cream);
}

.tour-detail__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  min-height: 400px;
  color: var(--color-stone);
}

.tour-detail__error {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: #fef2f2;
  border: 3px solid var(--color-red);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  max-width: 500px;
  margin: 0 auto;
}

.tour-detail__error-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 800;
}

.tour-detail__error-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-red-dark);
  margin-bottom: var(--space-sm);
}

.tour-detail__error-message {
  color: var(--color-red);
  margin-bottom: var(--space-xl);
}

.tour-detail__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .tour-detail__grid {
    grid-template-columns: 1fr;
  }
}

/* Tour Detail Main Column */
.tour-detail__main {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.tour-detail__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-sand);
  margin-bottom: var(--space-xl);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-lg);
}

.tour-detail__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  color: var(--color-white);
  font-size: 6rem;
  opacity: 0.9;
}

.tour-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.tour-detail__info {
  padding: 0;
}

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

.tour-detail__badge {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-cream);
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
}

.tour-detail__badge--guided {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.tour-detail__location {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-stone);
}

.tour-detail__location svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.tour-detail__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.tour-detail__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.tour-detail__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-stone);
}

.tour-detail__meta-item svg {
  width: 22px;
  height: 22px;
  opacity: 0.7;
}

.tour-detail__meta-item--price {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.tour-detail__meta-item--price span:first-child {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
}

.tour-detail__price-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-stone);
}

.tour-detail__section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.tour-detail__section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-yellow);
  border-radius: 2px;
}

.tour-detail__description .markdown-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-stone);
}

/* --------------------------------------------------------------------------
   Booking Card & Form
   -------------------------------------------------------------------------- */
.tour-detail__sidebar {
  position: sticky;
  top: 100px;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.15s forwards;
}

.booking-card {
  background: var(--color-white);
  overflow: hidden;
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-lg);
}

.booking-card__header {
  padding: var(--space-xl);
  background: var(--color-yellow);
  color: var(--color-charcoal);
}

.booking-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.booking-card__subtitle {
  font-size: 0.875rem;
  opacity: 0.85;
}

.booking-form {
  padding: var(--space-xl);
}

/* Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.form-required {
  color: var(--color-red);
}

.form-input {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 2px solid var(--color-charcoal);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--color-stone);
  opacity: 0.6;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-input--error {
  border-color: var(--color-red);
}

.form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(233, 75, 60, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232D3748' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
}

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

.form-error {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-red);
  margin-top: var(--space-xs);
  min-height: 1.2em;
}

.form-error-global {
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  background: #fef2f2;
  border: 2px solid var(--color-red);
  border-radius: var(--border-radius);
  color: var(--color-red);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Buttons - Playful bouncy style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 3px solid var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-charcoal);
  box-shadow: var(--shadow-color);
}

.btn--primary:hover:not(:disabled) {
  background: var(--color-yellow-light);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--color-red);
}

.btn--primary:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--color-red);
}

.btn--secondary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
  box-shadow: 4px 4px 0 var(--color-blue-dark);
}

.btn--secondary:hover:not(:disabled) {
  background: var(--color-blue-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-blue-dark);
}

.btn--secondary:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-blue-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn--outline:hover:not(:disabled) {
  background: var(--color-cream);
}

.btn--green {
  background: #2e7d32;
  color: var(--color-white);
  border-color: #1b5e20;
  box-shadow: 4px 4px 0 #1b5e20;
}

.btn--green:hover:not(:disabled) {
  background: #388e3c;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #1b5e20;
}

.btn--green:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #1b5e20;
}

.btn--danger {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
  box-shadow: 4px 4px 0 var(--color-red-dark);
}

.btn--danger:hover:not(:disabled) {
  background: var(--color-red-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-red-dark);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

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

.spinner--small {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

/* --------------------------------------------------------------------------
   Booking Success State
   -------------------------------------------------------------------------- */
.booking-success {
  padding: var(--space-2xl);
  text-align: center;
  background: var(--color-white);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-lg);
}

.booking-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: var(--color-blue);
  border-radius: 50%;
  border: 3px solid var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.5rem;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.booking-success__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.booking-success__message {
  font-size: 0.9375rem;
  color: var(--color-stone);
  max-width: 320px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.booking-success__reference {
  padding: var(--space-lg);
  background: var(--color-cream);
  border-radius: var(--border-radius);
  border: 2px solid var(--color-charcoal);
  margin-bottom: var(--space-xl);
}

.booking-success__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-stone);
  margin-bottom: var(--space-xs);
}

.booking-success__id {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-blue);
  font-weight: 800;
}

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

/* --------------------------------------------------------------------------
   Language Selector
   -------------------------------------------------------------------------- */
.lang-selector {
  position: relative;
}

.lang-selector__toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 2px solid var(--color-charcoal);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-selector__toggle:hover {
  background: var(--color-white);
}

.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 140px;
  background: var(--color-white);
  border: 2px solid var(--color-charcoal);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  z-index: 200;
}

.lang-selector__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-selector__option {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: left;
  transition: background var(--transition-fast);
}

.lang-selector__option:hover {
  background: var(--color-cream);
}

.lang-selector__option.active {
  background: var(--color-blue);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-blue { color: var(--color-blue); }
.text-yellow { color: var(--color-yellow); }
.text-red { color: var(--color-red); }
.bg-blue { background: var(--color-blue); }
.bg-yellow { background: var(--color-yellow); }
.bg-red { background: var(--color-red); }

/* --------------------------------------------------------------------------
   Individual / Why Choose Us Section
   -------------------------------------------------------------------------- */
.individual {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--color-cream);
  position: relative;
}

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

.individual__eyebrow {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.individual__title {
  color: var(--color-charcoal);
}

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

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

@media (max-width: 560px) {
  .individual__grid {
    grid-template-columns: 1fr;
  }
}

.individual__card {
  background: var(--color-white);
  padding: var(--space-xl);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.individual__card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

.individual__card--cta {
  background: var(--color-yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.individual__card--cta .btn {
  margin-top: var(--space-lg);
  align-self: flex-start;
}

.individual__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border: 2px solid var(--color-charcoal);
  border-radius: 50%;
  margin-bottom: var(--space-md);
  color: var(--color-charcoal);
}

.individual__icon svg {
  width: 24px;
  height: 24px;
}

.individual__icon--blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.individual__icon--red {
  background: var(--color-red);
  color: var(--color-white);
}

.individual__icon--yellow {
  background: var(--color-yellow);
}

.individual__card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.individual__card-text {
  font-size: 0.9375rem;
  color: var(--color-stone);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--color-blue) 6%, transparent 6%);
  background-size: 48px 48px;
  opacity: 0.06;
  pointer-events: none;
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.faq__eyebrow {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.faq__title {
  color: var(--color-charcoal);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq__item {
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  margin-bottom: var(--space-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__item.active {
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-blue);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-stone);
  transition: transform var(--transition-base);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq__answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-stone);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--color-cream);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.contact__eyebrow {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-charcoal);
  padding: var(--space-xs) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-charcoal);
  border-radius: 200px 10px 200px 10px / 10px 200px 10px 200px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.contact__title {
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
}

.contact__description {
  font-size: 1.0625rem;
  color: var(--color-stone);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.contact__detail svg {
  width: 22px;
  height: 22px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.contact__form {
  background: var(--color-white);
  padding: var(--space-xl);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-lg);
}

.contact__success {
  text-align: center;
  padding: var(--space-xl) 0;
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: var(--color-blue);
  border-radius: 50%;
  border: 3px solid var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 800;
}

.contact__success h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.contact__success p {
  color: var(--color-stone);
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Markdown Content Styles
   -------------------------------------------------------------------------- */
.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4 {
  color: var(--color-charcoal);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.markdown-content h1 { font-size: 1.5rem; }
.markdown-content h2 { font-size: 1.25rem; }
.markdown-content h3 { font-size: 1.125rem; }
.markdown-content h4 { font-size: 1rem; }

.markdown-content p {
  margin-bottom: var(--space-md);
}

.markdown-content ul,
.markdown-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.markdown-content li {
  margin-bottom: var(--space-xs);
}

.markdown-content strong {
  font-weight: 700;
  color: var(--color-charcoal);
}

.markdown-content em {
  font-style: italic;
}

.markdown-content blockquote {
  border-left: 4px solid var(--color-yellow);
  padding: var(--space-sm) var(--space-lg);
  margin: var(--space-md) 0;
  background: var(--color-cream);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  color: var(--color-charcoal-light);
}

.markdown-content a {
  color: var(--color-blue);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.markdown-content a:hover {
  color: var(--color-blue-dark);
}

.markdown-content code {
  background: var(--color-cream-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: 'Menlo', 'Monaco', monospace;
}

.markdown-content pre {
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.markdown-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.markdown-content img {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin: var(--space-md) 0;
}

/* --------------------------------------------------------------------------
   Rich Content Sections
   -------------------------------------------------------------------------- */
.tour-rich-section {
  margin-top: var(--space-2xl);
}

.tour-rich-section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: var(--space-lg);
}

.tour-rich-section__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-yellow);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Photo Gallery
   -------------------------------------------------------------------------- */
.tour-gallery {
  position: relative;
}

.tour-gallery__viewport {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: var(--shadow-lg);
}

.tour-gallery__track {
  display: flex;
  transition: transform 0.4s ease;
}

.tour-gallery__slide {
  min-width: 100%;
  position: relative;
}

.tour-gallery__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.tour-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 600;
}

.tour-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 3px solid var(--color-charcoal);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
  color: var(--color-charcoal);
}

.tour-gallery__arrow:hover {
  background: var(--color-yellow);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.tour-gallery__arrow--prev { left: var(--space-md); }
.tour-gallery__arrow--next { right: var(--space-md); }

.tour-gallery__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.tour-gallery__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-cream-dark);
  border: 2px solid var(--color-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tour-gallery__dot--active {
  background: var(--color-yellow);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   Day-by-Day Itinerary
   -------------------------------------------------------------------------- */
.tour-itinerary {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tour-itinerary__day {
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.tour-itinerary__day:hover {
  box-shadow: var(--shadow-md);
}

.tour-itinerary__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.tour-itinerary__header:hover {
  color: var(--color-blue);
}

.tour-itinerary__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 var(--space-sm);
  background: var(--color-yellow);
  border: 2px solid var(--color-charcoal);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-charcoal);
  flex-shrink: 0;
  white-space: nowrap;
}

.tour-itinerary__title {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.tour-itinerary__distance {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-stone);
  white-space: nowrap;
}

.tour-itinerary__chevron {
  flex-shrink: 0;
  color: var(--color-stone);
  transition: transform var(--transition-base);
}

.tour-itinerary__day--open .tour-itinerary__chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.tour-itinerary__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 var(--space-xl);
}

.tour-itinerary__day--open .tour-itinerary__content {
  max-height: 2000px;
  padding: var(--space-lg) var(--space-xl);
  border-top: 2px solid var(--color-cream-dark);
}

.tour-itinerary__content--with-image {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.tour-itinerary__description {
  flex: 1;
  min-width: 0;
}

.tour-itinerary__image-wrap {
  flex-shrink: 0;
  max-width: 400px;
  max-height: 300px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
}

.tour-itinerary__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s ease;
}

.tour-itinerary__image-wrap:hover::after {
  background: rgba(0, 0, 0, 0.08);
}

.tour-itinerary__image {
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-cream-dark);
  transition: box-shadow 0.2s ease;
}

.tour-itinerary__image-wrap:hover .tour-itinerary__image {
  box-shadow: var(--shadow-md);
}

/* Day GPX mini-map */
.tour-itinerary__day-map {
  flex: 0 0 100%;
  height: clamp(180px, 35vh, 260px);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--color-yellow);
  box-shadow: 3px 3px 0 var(--color-charcoal);
  margin-top: var(--space-sm);
  position: relative;
}

.tour-itinerary__day-map .leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* Stats badges in itinerary header */
.tour-itinerary__stats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
  flex-shrink: 0;
}

.tour-itinerary__stat-badge {
  background: var(--color-yellow);
  border: 1.5px solid var(--color-charcoal);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-charcoal);
  white-space: nowrap;
}

/* Image Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
}

.image-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.image-lightbox--open .image-lightbox__img {
  transform: scale(1);
}

.image-lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

.image-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.image-lightbox__caption {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  max-width: 80vw;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .tour-itinerary__content--with-image {
    flex-direction: column-reverse;
  }

  .tour-itinerary__image-wrap {
    max-width: 100%;
  }

  .tour-itinerary__image {
    width: 100%;
    max-height: 200px;
  }
}

/* --------------------------------------------------------------------------
   Included / Not Included
   -------------------------------------------------------------------------- */
.tour-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

@media (max-width: 640px) {
  .tour-includes {
    grid-template-columns: 1fr;
  }
}

.tour-includes__column {
  padding: var(--space-xl);
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tour-includes__title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.tour-includes__title--yes {
  color: #16a34a;
}

.tour-includes__title--no {
  color: var(--color-red);
}

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

.tour-includes__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  padding: var(--space-sm) 0;
}

.tour-includes__item svg {
  flex-shrink: 0;
}

.tour-includes__item--yes svg {
  color: #16a34a;
}

.tour-includes__item--no svg {
  color: var(--color-red);
}

/* --------------------------------------------------------------------------
   Tour FAQ
   -------------------------------------------------------------------------- */
.tour-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tour-faq__item {
  border: 3px solid var(--color-charcoal);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.tour-faq__item:hover {
  box-shadow: var(--shadow-md);
}

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

.tour-faq__question:hover {
  color: var(--color-blue);
}

.tour-faq__chevron {
  flex-shrink: 0;
  color: var(--color-stone);
  transition: transform var(--transition-base);
}

.tour-faq__item--open .tour-faq__chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

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

.tour-faq__item--open .tour-faq__answer {
  max-height: 500px;
}

.tour-faq__answer-content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-stone);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Preparation Checklist
   -------------------------------------------------------------------------- */
.tour-preparation {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-sm);
}

.tour-preparation__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border: 2px solid var(--color-charcoal);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.tour-preparation__item:hover {
  background: var(--color-cream);
}

.tour-preparation__check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tour-preparation__box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--color-charcoal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.tour-preparation__check:checked + .tour-preparation__box {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.tour-preparation__check:checked + .tour-preparation__box::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.tour-preparation__check:checked ~ .tour-preparation__text {
  text-decoration: line-through;
  color: var(--color-stone);
}

.tour-preparation__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

/* =============================================
   Map — shared endpoint markers
   ============================================= */

.map-endpoint {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 2px 2px 0 var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--color-white);
  font-family: var(--font-display);
  line-height: 1;
}

.map-endpoint--start {
  background: #22c55e;
}

.map-endpoint--end {
  background: #ef4444;
}

/* Stats bar below feature-block map */
.feature-map__stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
  justify-content: center;
}

.feature-map__stats:empty {
  display: none;
}

/* Loading overlay for GPX day maps */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.tour-itinerary__day-map__overlay {
  position: absolute;
  inset: 0;
  z-index: 500;
  background: linear-gradient(90deg, #e8edf2 25%, #d0d8e0 50%, #e8edf2 75%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s linear infinite;
  pointer-events: none;
  border-radius: inherit;
}
