@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* WanderWheel color palette */
  --color-yellow: #FFC81F;
  --color-yellow-light: #FFF3D2;
  --color-yellow-dark: #E8A300;
  --color-blue: #3E7BE6;
  --color-blue-light: #E8F0FE;
  --color-blue-dark: #2F64C8;
  --color-red: #EE5A4D;
  --color-red-light: #FDE7E4;
  --color-red-dark: #C9382E;
  --color-cream: #FAF7F0;
  --color-cream-dark: #ECEAE2;

  /* Neutral palette */
  --color-white: #ffffff;
  --color-sand: #F3F0E8;
  --color-stone: #6B7185;
  --color-charcoal: #1A2236;
  --color-charcoal-light: #4D566C;

  /* 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: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', -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: 0.8rem;
  --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: 22px;
  --border-radius-xl: 28px;

  /* Shadows - playful offset style */
  --shadow-sm: 0 1px 4px rgba(20, 28, 48, 0.05);
  --shadow-md: 0 1px 2px rgba(20, 28, 48, 0.04), 0 6px 20px rgba(20, 28, 48, 0.06);
  --shadow-lg: 0 8px 28px rgba(20, 28, 48, 0.08);
  --shadow-xl: 0 18px 46px rgba(20, 28, 48, 0.12);
  --shadow-color: 0 1px 2px rgba(20, 28, 48, 0.04), 0 6px 20px rgba(20, 28, 48, 0.06);
  --shadow-soft: 0 10px 40px rgba(20, 28, 48, 0.09);

  /* 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);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.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);
}

.header__nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--color-red, #E94B3C);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header__nav-link:hover::after { width: 100%; }

/* Solid header (scrolled, or pages without a hero) */
.header--solid {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(45, 55, 72, 0.10);
}

.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;
    background: rgba(255, 248, 240, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.12);
    border: 2px solid var(--color-charcoal);
  }

  .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__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

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

.tours__sort {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--color-white);
  border: 2px solid var(--color-charcoal);
  border-radius: 100px;
}

.tours__sort-btn {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-charcoal);
  background: transparent;
  border-radius: 100px;
  transition: all var(--transition-fast);
}

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

.tours__sort-btn--active,
.tours__sort-btn--active:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.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__badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  z-index: 1;
}

.tour-card__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-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__badge--self-guided {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.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__departure {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-bottom: var(--space-sm);
}

.tour-card__departure svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.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__badge--self-guided {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.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;
}

/* Auto-growing single-value textareas (e.g. organizer fields). Start at one
   row, grow with content up to ~6 rows, then scroll. Height is driven by JS
   (autoGrowTextarea); min/max-height here bound it and keep it at one row
   while empty or hidden. line-height 1.4 must match the JS assumptions. */
.form-input--autogrow {
  resize: none;
  overflow-y: hidden;
  line-height: 1.4;
  min-height: calc(1.4em + 2 * var(--space-md));
  max-height: calc(6 * 1.4em + 2 * var(--space-md));
}

/* Recently-used quick-fill chips shown under an organizer field. Each chip is
   truncated with an ellipsis; the full value is in its title tooltip. */
.org-recent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.org-recent__hint {
  font-size: 0.75rem;
  color: var(--color-stone);
}

.org-recent__chip {
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.15rem var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 1px solid var(--color-stone);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.org-recent__chip:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.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;
}

/* --------------------------------------------------------------------------
   Modern app visual refresh
   -------------------------------------------------------------------------- */
body {
  background: var(--color-cream-dark);
}

h1, h2, h3, h4,
.hero__route-distance,
.tour-card__title,
.individual__card-title,
.contact__success h3 {
  letter-spacing: 0;
}

.header__logo,
.header__nav,
.header__menu-toggle {
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.header__logo {
  padding: 10px 16px;
}

.header__nav {
  padding: 9px 12px;
}

.header__nav-link,
.header__cta {
  border-radius: 999px;
}

.header__cta {
  background: var(--color-charcoal);
  color: var(--color-white);
  border: 0;
}

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

.hero,
.individual,
.contact {
  background: var(--color-cream);
}

.tours,
.faq {
  background: var(--color-white);
}

.hero::before,
.hero::after,
.hero .sunburst,
.tours::before,
.faq::before {
  display: none;
}

.hero {
  min-height: auto;
  padding: calc(var(--space-3xl) + 76px) 0 var(--space-3xl);
}

.hero__eyebrow,
.individual__eyebrow,
.faq__eyebrow,
.contact__eyebrow {
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  transform: none;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-heading);
  font-weight: 800;
}

.hero__title em {
  font-family: var(--font-heading);
  color: var(--color-red);
  transform: none;
}

.scribble-underline::after {
  display: none;
}

.hero__description,
.contact__description,
.individual__card-text,
.faq__answer p,
.tour-card__description {
  color: var(--color-stone);
}

.hero__stat,
.hero__route-card,
.tour-card,
.individual__card,
.faq__item,
.contact__form,
.tours__error,
.booking-success,
.map-endpoint {
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.hero__route-card {
  transform: none;
}

.hero__route-card:hover,
.tour-card:hover,
.individual__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero__route-badge,
.tour-card__badge {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(20, 28, 48, 0.08);
  transform: none;
  letter-spacing: 0;
}

.hero__route-badge {
  background: var(--color-blue-light);
  color: var(--color-blue);
}

.tour-card__badge {
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-blue);
}

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

.tour-card__badge--self-guided {
  background: var(--color-blue-light);
  color: var(--color-blue);
}

.hero__route-footer,
.tour-card__footer {
  border-top: 1px solid rgba(20, 28, 48, 0.08);
}

.tours__title::after {
  background: var(--color-yellow);
  border-radius: 999px;
}

.tours__filter,
.btn,
.form-input,
.form-error-global {
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

.tours__filter {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tours__filter:hover {
  background: var(--color-cream);
  transform: translateY(-1px);
}

.tours__filter--active:hover {
  background: var(--color-charcoal);
  transform: translateY(-1px);
}

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

.tours__sort {
  border: 0;
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.tours__sort-btn {
  border-radius: 12px;
}

.tours__sort-btn--active,
.tours__sort-btn--active:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn {
  min-height: 46px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

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

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

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

.btn--green {
  background: var(--color-green, #1fa958);
}

.btn--danger {
  background: var(--color-red);
}

.btn--primary:hover:not(:disabled),
.btn--secondary:hover:not(:disabled),
.btn--green:hover:not(:disabled),
.btn--danger:hover:not(:disabled),
.btn--outline:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active:not(:disabled),
.btn--secondary:active:not(:disabled),
.btn--green:active:not(:disabled),
.btn--danger:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

.form-input {
  background: #fbfaf6;
  color: var(--color-charcoal);
}

.form-input:focus {
  box-shadow: 0 0 0 3px rgba(62, 123, 230, 0.18);
}

.individual__card--cta {
  background: var(--color-yellow-soft, #fff3d2);
}

.individual__icon,
.contact__success-icon,
.map-endpoint {
  border: 0;
  border-radius: 14px;
}

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

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

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

.faq__item {
  border-radius: 18px;
}

.faq__question {
  font-family: var(--font-heading);
}

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

@media (max-width: 768px) {
  .header--menu-open .header__nav {
    border-radius: 18px;
  }
}

/* ── Shared HappyByBike logo (matches expedition page) ───────────────────── */
.hbb-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 2.5px solid #1C1917;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: 4px 4px 0 #1C1917;
  text-decoration: none;
  color: #1C1917;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hbb-logo__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  animation: hbb-wheel-spin 20s linear infinite;
  transform-origin: 50% 50%;
  transition: filter 0.2s ease;
}
.hbb-logo:hover .hbb-logo__icon {
  animation: hbb-wheel-spin 3s linear infinite;
}
.hbb-logo__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #1C1917 !important;
}
.hbb-logo__text span {
  color: #C06C4F;
  font-style: italic;
}
@keyframes hbb-wheel-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 640px) {
  .hbb-logo { padding: 6px 14px 6px 8px; gap: 10px; }
  .hbb-logo__icon { width: 42px; height: 42px; }
  .hbb-logo__text { font-size: 22px; }
}
/* Footer brand: keep spacing the old .footer__logo provided below the mark */
.footer__brand .hbb-logo {
  margin-bottom: var(--space-md);
}

/* ── Home hero (redesign) ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: #FFF8F0;
  padding: 140px 0 80px;
  font-family: 'Space Grotesk', sans-serif;
  display: block;
}
.hero__blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  opacity: .32;
  z-index: 0;
  animation: hero-blob 12s ease-in-out infinite;
}
.hero__blob--1 { width: 480px; height: 480px; background: #E94B3C; top: -12%; left: -6%; }
.hero__blob--2 { width: 400px; height: 400px; background: #4A90E2; bottom: -12%; right: 8%; animation-delay: -4s; }
.hero__blob--3 { width: 300px; height: 300px; background: #FFD93D; top: 38%; right: -4%; animation-delay: -8s; }
@keyframes hero-blob {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(28px,-18px) rotate(2deg); }
  66% { transform: translate(-18px,28px) rotate(-2deg); }
}
.hero .hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #FFD93D;
  color: #2D3748;
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 #2D3748;
  transform: rotate(-2deg);
  animation: hero-wiggle 3s ease-in-out infinite;
}
@keyframes hero-wiggle {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-3px); }
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #E94B3C;
  border-radius: 50%;
  animation: hero-pulse 1.5s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}
.hero__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  color: #2D3748;
  margin: 1.3rem 0;
  opacity: 1;
  animation: none;
}
.hero__title-line { display: block; }
.hero__hl { position: relative; display: inline-block; color: #E94B3C; }
.hero__hl::after {
  content: '';
  position: absolute;
  bottom: 6%; left: -2%; right: -2%;
  height: 32%;
  background: #FFD93D;
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}
.hero__hl--blue { color: #4A90E2; }
.hero__hl--blue::after {
  bottom: 0; height: 8px; background: #4A90E2; opacity: .35; transform: none;
}
.hero__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2D3748;
  opacity: .82;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: none;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn--primary {
  background: #E94B3C; color: #fff;
  box-shadow: 6px 6px 0 #2D3748;
  border-radius: 14px;
}
.hero .btn--primary:hover { background: #d83f30; color: #fff; transform: translate(-2px,-2px); box-shadow: 8px 8px 0 #2D3748; }
.hero .btn--ghost {
  background: transparent; color: #2D3748;
  border: 3px solid #2D3748; border-radius: 14px;
  box-shadow: 4px 4px 0 #4A90E2;
}
.hero .btn--ghost:hover {
  transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #4A90E2;
  background: #4A90E2; color: #fff; border-color: #4A90E2;
}
.hero__visual { position: relative; min-height: 480px; display: block; opacity: 1; animation: none; }
.hero__routemap { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__route-bg { fill: none; stroke: #FFFFFF; stroke-width: 8; stroke-linecap: round; opacity: .7; }
.hero__route {
  fill: none; stroke: #2D3748; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: hero-draw 3s ease-out forwards;
}
@keyframes hero-draw { to { stroke-dashoffset: 0; } }
.hero__marker-dot { fill: #E94B3C; stroke: #2D3748; stroke-width: 3; }
.hero__marker-dot--blue { fill: #4A90E2; }
.hero__marker-dot--yellow { fill: #FFD93D; }
.hero__marker-pulse { fill: none; stroke: #E94B3C; stroke-width: 2; opacity: 0; animation: hero-marker 2s ease-out infinite; }
@keyframes hero-marker { 0% { r: 8; opacity: .6; } 100% { r: 20; opacity: 0; } }
.hero__card {
  position: absolute;
  background: #fff;
  border: 3px solid #2D3748;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 8px 8px 0 #2D3748;
  transform: rotate(var(--rot));
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  z-index: 3;
  text-decoration: none;
  display: block;
  visibility: hidden;
}
.hero__card[href]:hover { transform: rotate(0) scale(1.04) translateY(-4px); box-shadow: 12px 12px 0 #2D3748; }
.hero__card--1 { --rot: -4deg; top: 8%; left: 2%; }
.hero__card--2 { --rot: 3deg; top: 44%; right: -2%; }
.hero__card--3 { --rot: -2deg; bottom: 10%; left: 14%; }
.hero__card-label { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #E94B3C; margin-bottom: .25rem; }
.hero__card-title { display: block; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: #2D3748; }
.hero__card-meta { display: block; font-size: .8rem; color: #2D3748; opacity: .6; margin-top: .25rem; }
.hero__bike { position: absolute; bottom: 4%; right: 8%; width: 170px; z-index: 4; animation: hero-bike 2s ease-in-out infinite; }
@keyframes hero-bike { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(1deg); } }
@media (max-width: 900px) {
  .hero .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { min-height: 380px; order: -1; }
  .hero__bike { width: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__blob, .hero__badge, .hero__badge-dot, .hero__route, .hero__marker-pulse, .hero__bike { animation: none; }
  .hero__route { stroke-dashoffset: 0; }
}

/* ===== Reviews block ===== */
.reviews { padding: 64px 0; }
.reviews[hidden] { display: none; }
.reviews__header { margin-bottom: 28px; }
.reviews__eyebrow { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--color-highlight, #c4623d); font-weight: 700; }
.reviews__title { font-size: clamp(28px, 4vw, 42px); margin: 6px 0 0; }

.reviews__scroller {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
.reviews__scroller::-webkit-scrollbar { height: 8px; }
.reviews__scroller::-webkit-scrollbar-thumb { background: #d8d2cb; border-radius: 8px; }

.review {
  flex: 0 0 320px; scroll-snap-align: start;
  background: #fff; border: 1px solid #ece8e2; border-radius: 16px;
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.review__head { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #efece8; flex: 0 0 auto; }
.review__who { display: flex; flex-direction: column; min-width: 0; }
.review__name { font-weight: 700; }
.review__meta { font-size: 12px; color: #8a8178; display: flex; gap: 8px; align-items: center; }
.review__platform { text-transform: capitalize; }
.review__text { margin: 0; line-height: 1.5; color: #463f38; }
.review__media { border-radius: 12px; overflow: hidden; }
.review__media img, .review__media video { width: 100%; display: block; border-radius: 12px; }
.review__video { position: relative; display: block; }
.review__video img { width: 100%; display: block; }
.review__play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.55); border-radius: 50%; color: #fff;
}
.review__link { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--color-highlight, #c4623d); text-decoration: none; }
.review__link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .review { flex-basis: 82vw; }
}
