/* ==========================================================================
   EXCURSIONS MAROC — Modern Travel Site
   Author: Mavis
   Architecture: mobile-first, design tokens, modern CSS
   ========================================================================== */

/* Design tokens */
:root {
  /* Brand palette — Morocco-inspired */
  --color-saffron: #d97706;          /* saffron, Marrakesh */
  --color-saffron-dark: #b45309;
  --color-terracotta: #c2410c;
  --color-ocre: #ca8a04;
  --color-zellige-blue: #1e40af;
  --color-zellige-teal: #0f766e;
  --color-medina-red: #b91c1c;
  --color-atlas-green: #15803d;
  --color-desert-gold: #f59e0b;

  /* Neutrals */
  --color-bg: #fffbf3;               /* warm off-white */
  --color-bg-alt: #fdf6e9;           /* lighter sand */
  --color-surface: #ffffff;
  --color-surface-2: #fef9f0;
  --color-text: #1c1917;
  --color-text-soft: #44403c;
  --color-text-muted: #78716c;
  --color-border: #e7e5e4;
  --color-border-soft: #f1ede5;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-sm: 0 2px 6px rgba(28, 25, 23, 0.06), 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 6px 18px rgba(28, 25, 23, 0.08), 0 2px 4px rgba(28, 25, 23, 0.04);
  --shadow-lg: 0 18px 40px rgba(28, 25, 23, 0.12), 0 4px 12px rgba(28, 25, 23, 0.06);
  --shadow-xl: 0 30px 60px rgba(28, 25, 23, 0.18);
  --shadow-glow: 0 0 0 4px rgba(217, 119, 6, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 999px;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Typography — system font stack for maximum performance (zero font requests) */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', 'Inter', 'Roboto', 'Liberation Sans', Arial, sans-serif;
  --font-display: ui-serif, 'Iowan Old Style', 'Apple Garamond', 'Baskerville', 'Times New Roman', 'Droid Serif', Times, 'Source Serif Pro', serif;
  --font-arabic: 'Geeza Pro', 'Traditional Arabic', 'Lotus Linotype', serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4.5rem;

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;
  --header-height: 80px;

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

/* Dark mode (auto) */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #0c0a09;
    --color-bg-alt: #1c1917;
    --color-surface: #1c1917;
    --color-surface-2: #292524;
    --color-text: #fafaf9;
    --color-text-soft: #d6d3d1;
    --color-text-muted: #a8a29e;
    --color-border: #292524;
    --color-border-soft: #1c1917;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

a:hover { color: var(--color-saffron-dark); }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p { line-height: var(--lh-relaxed); }

.text-gradient {
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-terracotta) 50%, var(--color-medina-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-base);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-glow);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-terracotta));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
  filter: brightness(1.05);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  background: var(--color-surface-2);
  border-color: var(--color-saffron);
  color: var(--color-saffron);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
}

.btn--ghost:hover {
  background: var(--color-surface-2);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--fs-lg); }
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--fs-sm); }
.btn--block { width: 100%; }

/* Section helpers */
.section {
  padding-block: var(--space-20);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-24); }
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 720px;
  margin-inline: auto;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-saffron);
  margin-bottom: var(--space-3);
}

.section__title {
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
}

/* ============== HEADER ============== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 243, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-base);
  height: var(--header-height);
}

.site-header.is-scrolled {
  background: rgba(255, 251, 243, 0.95);
  border-bottom-color: var(--color-border-soft);
  box-shadow: var(--shadow-sm);
}

@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(12, 10, 9, 0.85); }
  .site-header.is-scrolled { background: rgba(12, 10, 9, 0.95); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .nav__logo { font-size: 1.05rem; gap: 0.5rem; }
  .nav__logo-icon { width: 32px; height: 32px; font-size: 1rem; }
}

.nav__logo:hover { color: var(--color-saffron); }

.nav__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-saffron), var(--color-terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.nav__menu {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .nav__menu { display: flex; }
}

.nav__link {
  color: var(--color-text-soft);
  font-weight: 500;
  font-size: var(--fs-base);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--t-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-saffron);
  transition: all var(--t-base);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-saffron);
}

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

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

.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-soft);
  transition: all var(--t-fast);
}

.lang-switcher__btn:hover {
  background: var(--color-surface-2);
  color: var(--color-saffron);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base);
}

.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  text-align: left;
  transition: background var(--t-fast);
  text-decoration: none;
}

.lang-switcher__option:hover {
  background: var(--color-surface-2);
  color: var(--color-saffron);
}

.lang-switcher__option.is-active {
  background: var(--color-surface-2);
  color: var(--color-saffron);
  font-weight: 600;
}

.lang-switcher__flag {
  font-size: 1.1rem;
  line-height: 1;
}

.nav__cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav__cta { display: inline-flex; }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}

.nav__toggle:hover { background: var(--color-surface-2); }

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

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

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 999;
  padding: var(--space-8) var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-base);
}

.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.mobile-menu__link {
  display: block;
  padding: var(--space-4) var(--space-3);
  font-size: var(--fs-2xl);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-soft);
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  color: var(--color-saffron);
}

.mobile-menu__langs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.mobile-menu__lang {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-soft);
  text-decoration: none;
}

.mobile-menu__lang.is-active {
  background: var(--color-saffron);
  color: #fff;
  border-color: var(--color-saffron);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-12);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(12, 10, 9, 0.45) 0%, rgba(12, 10, 9, 0.65) 100%),
    url("../images/hero/hero-00.webp") center/cover no-repeat;
  background-color: #44403c;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__bg {
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
}

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

.hero__container {
  width: 100%;
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: var(--space-12);
  }
}

.hero__content {
  color: #fff;
  text-align: center;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
  animation: fadeUp 0.8s var(--t-base) backwards;
}

.hero__title {
  font-size: clamp(1.75rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-6);
  animation: fadeUp 0.8s 0.1s var(--t-base) backwards;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__title-accent {
  display: inline-block;
  font-style: italic;
  color: var(--color-desert-gold);
}

.hero__subtitle {
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
  animation: fadeUp 0.8s 0.2s var(--t-base) backwards;
}

@media (min-width: 1024px) {
  .hero__subtitle { margin-inline: 0; }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-10);
  animation: fadeUp 0.8s 0.3s var(--t-base) backwards;
}

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

.hero__cta .btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero__cta .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeUp 0.8s 0.4s var(--t-base) backwards;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-desert-gold);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-1);
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.9);
  animation: fadeUp 0.8s 0.05s var(--t-base) backwards;
}

.hero__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-desert-gold);
}

.hero__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  animation: fadeUp 0.8s 0.4s var(--t-base) backwards;
  color: var(--color-text);
}

@media (prefers-color-scheme: dark) {
  .hero__card { background: rgba(28, 25, 23, 0.95); }
}

.hero__card-title {
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.hero__card-sub {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.hero__card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}

.hero__card-item-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  color: var(--color-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* ============== TOURS GRID ============== */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
}

.tour-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-soft);
  position: relative;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-saffron);
}

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

.tour-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t-base);
}

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

.tour-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-saffron);
  color: #fff;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.tour-card__duration {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tour-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card__location {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-sm);
  color: var(--color-saffron);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.tour-card__title {
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: var(--lh-snug);
}

.tour-card__summary {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.tour-card__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-text-soft);
  font-weight: 500;
}

.tour-card__rating-stars {
  color: var(--color-desert-gold);
  letter-spacing: -1px;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-soft);
  margin-top: auto;
}

.tour-card__price {
  display: flex;
  flex-direction: column;
}

.tour-card__price-from {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-card__price-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.tour-card__price-value span {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.tour-card__cta {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  border-radius: var(--radius-pill);
  background: var(--color-saffron);
  color: #fff;
  font-weight: 600;
  transition: all var(--t-fast);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.tour-card__cta:hover {
  background: var(--color-saffron-dark);
  color: #fff;
  transform: translateX(2px);
}

/* ============== WHY US ============== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-soft);
  transition: all var(--t-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-saffron);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-saffron), var(--color-terracotta));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.why-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.why-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
}

/* ============== DESTINATIONS ============== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--t-base);
  min-height: 160px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) {
  .dest-card {
    grid-row: span 2;
  }
  .dest-card--wide {
    grid-column: span 2;
  }
  .dest-card--tall {
    grid-row: span 3;
  }
}

.dest-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t-base);
}

.dest-card:hover .dest-card__image {
  transform: scale(1.1);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  color: #fff;
}

.dest-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-1);
}

.dest-card__count {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
}

/* ============== TESTIMONIALS ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.testimonial {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
  position: relative;
}

.testimonial__stars {
  color: var(--color-desert-gold);
  margin-bottom: var(--space-4);
  font-size: var(--fs-lg);
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-soft);
  margin-bottom: var(--space-5);
  font-style: italic;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-saffron), var(--color-terracotta));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  color: var(--color-text);
}

.testimonial__country {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ============== BOOKING FORM ============== */
.booking {
  position: relative;
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-block: var(--space-12);
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 768px) {
  .booking { padding: var(--space-12); }
}

.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 119, 6, 0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(194, 65, 12, 0.3), transparent 50%);
  z-index: -1;
}

.booking__layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .booking__layout {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
  }
}

.booking__title {
  color: #fff;
  margin-bottom: var(--space-4);
}

.booking__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-6);
}

.booking__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.booking__benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.9);
}

.booking__benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--color-saffron);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  margin-top: 2px;
}

.booking__form {
  background: var(--color-surface);
  color: var(--color-text);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .booking__form { padding: var(--space-8); }
}

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

@media (min-width: 640px) {
  .form-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

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

.form-field__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-field__label--required::after {
  content: " *";
  color: var(--color-medina-red);
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--fs-base);
  transition: all var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: var(--shadow-glow);
}

.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: var(--color-text-muted);
}

.form-field__textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field__select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%2378716c' d='M8 11L3 6h10z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-field__error {
  font-size: var(--fs-xs);
  color: var(--color-medina-red);
  display: none;
}

.form-field.has-error .form-field__input,
.form-field.has-error .form-field__select,
.form-field.has-error .form-field__textarea {
  border-color: var(--color-medina-red);
}

.form-field.has-error .form-field__error {
  display: block;
}

/* Honeypot - hidden from real users */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-saffron);
  flex-shrink: 0;
  cursor: pointer;
}

.form-submit {
  margin-top: var(--space-2);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-align: center;
}

.form-status {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  display: none;
  text-align: center;
}

.form-status.is-success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-status.is-error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* ============== CTA SECTION ============== */
.cta-banner {
  position: relative;
  padding: var(--space-16) var(--space-6);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  text-align: center;
  color: #fff;
  isolation: isolate;
  margin-block: var(--space-12);
  background: var(--color-text);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217, 119, 6, 0.85), rgba(194, 65, 12, 0.85)),
    url("../images/destinations/sahara/sahara-02.webp") center/cover no-repeat;
  z-index: -1;
}

.cta-banner__title {
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-banner__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  font-size: var(--fs-lg);
}

/* ============== FOOTER ============== */
.site-footer {
  background: #0c0a09;
  color: #d6d3d1;
  padding-block: var(--space-16) var(--space-8);
  margin-top: var(--space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: #fff;
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: #a8a29e;
  max-width: 320px;
}

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

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: #d6d3d1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  text-decoration: none;
}

.footer__social:hover {
  background: var(--color-saffron);
  color: #fff;
  transform: translateY(-2px);
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  color: #a8a29e;
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
  text-decoration: none;
}

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

.footer__newsletter {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.footer__newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid #44403c;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: var(--fs-sm);
  min-width: 0;
}

.footer__newsletter-input::placeholder { color: #78716c; }

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--color-saffron);
}

.footer__newsletter-btn {
  padding: var(--space-3) var(--space-4);
  background: var(--color-saffron);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}

.footer__newsletter-btn:hover { background: var(--color-saffron-dark); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid #292524;
  text-align: center;
  font-size: var(--fs-sm);
  color: #78716c;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer__legal { justify-content: flex-end; }
}

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.whatsapp-float__tooltip {
  background: var(--color-surface);
  color: var(--color-text);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float__btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--t-base);
  position: relative;
}

.whatsapp-float__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: #25d366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover .whatsapp-float__btn {
  transform: scale(1.05);
  background: #1ebe5b;
}

/* ============== TOUR DETAIL ============== */
.tour-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-block: var(--space-12) var(--space-8);
  color: #fff;
  isolation: isolate;
  margin-top: var(--header-height);
}

.tour-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%),
    var(--bg-img) center/cover no-repeat;
  background-color: #292524;
}

.tour-hero__content {
  max-width: 800px;
}

.tour-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.tour-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.tour-hero__breadcrumb a:hover { color: #fff; }

.tour-hero__title {
  color: #fff;
  margin-bottom: var(--space-4);
  font-size: clamp(1.5rem, 3.5vw, 3.25rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tour-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.9);
}

.tour-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.tour-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .tour-layout {
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-12);
    align-items: start;
  }
}

.tour-content h2,
.tour-content h3 {
  margin-block: var(--space-8) var(--space-3);
}

.tour-content p {
  margin-bottom: var(--space-4);
  line-height: var(--lh-relaxed);
  color: var(--color-text-soft);
}

.tour-content ul {
  margin-bottom: var(--space-4);
  padding-left: 0;
  list-style: none;
}

.tour-content ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
}

.tour-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-saffron);
  font-weight: 700;
}

.tour-content strong { color: var(--color-text); font-weight: 600; }

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-block: var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tour-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--t-base);
  cursor: pointer;
}

.tour-gallery img:hover { transform: scale(1.05); }

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-soft);
}

.booking-sidebar__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-soft);
}

.booking-sidebar__price-value {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-saffron);
  line-height: 1;
}

.booking-sidebar__price-unit {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

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

/* Scroll reveal animation - items visible by default, animation only when JS adds is-visible */
[data-aos] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (prefers-reduced-motion: no-preference) {
  html.js [data-aos] {
    /* Default JS state: items in viewport get is-visible immediately; below-fold stay hidden until intersected */
    opacity: 0;
    transform: translateY(24px);
  }
  html.js [data-aos].is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
.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-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

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

/* Print */
@media print {
  .site-header, .whatsapp-float, .nav__toggle, .mobile-menu { display: none; }
  body { background: #fff; color: #000; }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-saffron);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus { top: 0; }

/* ============== LEGAL / STATIC PAGES ============== */
.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content ul {
  margin-bottom: 1rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}
.legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}
.legal-content strong { color: var(--color-text); font-weight: 600; }
.legal-content a { color: var(--color-saffron); }

/* ============== PAGE LOADER ============== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-saffron);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 950;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .cookie-banner.is-visible {
    flex-direction: row;
    align-items: center;
  }
}

.cookie-banner__text {
  flex: 1;
  line-height: var(--lh-relaxed);
}

.cookie-banner__accept {
  padding: var(--space-2) var(--space-4);
  background: var(--color-saffron);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__accept:hover { background: var(--color-saffron-dark); }

/* ============== ACTIVITIES GRID ============== */
.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
}
.activity-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-saffron);
}
.activity-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-2);
}
.activity-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t-base);
}
.activity-card:hover .activity-card__image { transform: scale(1.08); }
.activity-card__icon {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}
.activity-card__duration {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.activity-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.activity-card__title {
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
  line-height: 1.3;
}
.activity-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}
.activity-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft);
  font-size: var(--fs-sm);
}
.activity-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-saffron);
  line-height: 1;
}
.activity-card__price span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.activity-card__from {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}
.activity-card__cta {
  margin-top: var(--space-3);
  padding: var(--space-3);
  background: var(--color-saffron);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: background var(--t-fast);
}
.activity-card__cta:hover { background: var(--color-saffron-dark); color: #fff; }

/* ============== BLOG ============== */
.blog-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #fff;
  text-align: center;
}
.blog-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-4);
}
.blog-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-inline: auto;
  font-size: var(--fs-lg);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.blog-card__image-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-surface-2);
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t-base);
}
.blog-card:hover .blog-card__image { transform: scale(1.08); }
.blog-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card__category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.blog-card__title {
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.blog-card__read {
  color: var(--color-saffron);
  font-weight: 600;
}

.blog-post {
  max-width: 780px;
  margin-inline: auto;
  padding-block: var(--space-12);
}
.blog-post__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}
.blog-post__category {
  display: inline-block;
  background: var(--color-surface-2);
  color: var(--color-saffron);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}
.blog-post__title {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  color: var(--color-text);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}
.blog-post__excerpt {
  font-size: var(--fs-xl);
  color: var(--color-text-soft);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}
.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.blog-post__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-terracotta));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.blog-post__content {
  font-size: 1.0625rem;
  line-height: var(--lh-relaxed);
  color: var(--color-text-soft);
}
.blog-post__content h2 {
  font-size: 1.625rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
.blog-post__content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-text);
  font-weight: 700;
}
.blog-post__content p {
  margin-bottom: 1.25rem;
}
.blog-post__content ul, .blog-post__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.blog-post__content ul li, .blog-post__content ol li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.blog-post__content strong {
  color: var(--color-text);
  font-weight: 700;
}
.blog-post__content a {
  color: var(--color-saffron);
  text-decoration: underline;
}
.blog-cta {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-terracotta));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-12);
}
.blog-cta h3 { color: #fff; margin-bottom: var(--space-3); }
.blog-cta p { color: rgba(255,255,255,0.9); margin-bottom: var(--space-5); }
.blog-cta .btn--secondary { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.blog-cta .btn--secondary:hover { background: rgba(255,255,255,0.25); color: #fff; }
