/* ============================================================
   Morocco Steps Travel — Design System
   Palette: ivory ground / ink text / copper accent / olive depth
   Type: EB Garamond (display) + Inter (body/UI)
   ============================================================ */

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

/* ---- TOKENS ---- */
:root {
  --copper:       #BD5B24;
  --copper-dark:  #8D3F18;
  --olive:        #34412C;
  --olive-light:  #4a5c3e;
  --teal:         #1f6f6a;
  --sand:         #E8BD82;
  --sand-light:   #F2D9A8;
  --ivory:        #FBF8F2;
  --ivory-dark:   #F2EDE3;
  --ink:          #20130E;
  --ink-soft:     #3d2618;

  --display: clamp(2.8rem, 6vw, 5rem);
  --h1:      3.2rem;
  --h2:      2.35rem;
  --h3:      1.45rem;
  --h4:      1.1rem;
  --body:    1rem;
  --sm:      0.875rem;
  --xs:      0.75rem;

  --space-2:  0.5rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --zellige-tile: none;
  --zellige-soft:
    linear-gradient(160deg, rgba(251,248,242,0.97) 0%, rgba(242,237,227,0.93) 100%),
    var(--ivory);

  --t: 0.25s ease;
  --t-slow: 0.45s ease;
  --shadow-sm: 0 1px 8px rgba(32,19,14,0.07);
  --shadow-md: 0 4px 24px rgba(32,19,14,0.10);
  --shadow-lg: 0 12px 48px rgba(32,19,14,0.13);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: var(--body);
  color: var(--ink);
  background: var(--zellige-soft);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}
.display {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: var(--display);
  line-height: 1.04;
  letter-spacing: 0;
}
.h1 { font-size: var(--h1); }
.h2 { font-size: var(--h2); }
.h3 { font-size: var(--h3); }
em { font-style: italic; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
}
.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}
.body-serif {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container-wide {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container-narrow {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

/* ---- SECTION PATTERNS ---- */
.section {
  padding-block: var(--space-24);
  position: relative;
}
.section-sm { padding-block: var(--space-16); }
.section-lg { padding-block: var(--space-32); }
.section-dark {
  background: var(--olive);
  color: var(--ivory);
}
.section-dark .eyebrow { color: var(--sand); }
.section-dark .lead { color: rgba(251,248,242,0.75); }
.section-ink {
  background: var(--ink);
  color: var(--ivory);
}
.section-sand {
  background: rgba(242,237,227,0.55);
}

.section-header {
  margin-bottom: var(--space-16);
}
.section-header h2 {
  font-size: var(--h2);
  margin-top: var(--space-2);
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

/* Decorative divider — single copper rule with diamond center */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-16);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--copper);
  opacity: 0.3;
}
.divider-gem {
  width: 8px;
  height: 8px;
  background: var(--copper);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 78px;
  background: rgba(251,248,242,0.90);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid rgba(189,91,36,0.12);
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t), border-color var(--t), transform var(--t);
}
.site-header.scrolled {
  background: rgba(251,248,242,0.72);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom-color: rgba(189,91,36,0.20);
  box-shadow: 0 10px 36px rgba(32,19,14,0.12);
}
.site-header.scrolling-down {
  background: rgba(251,248,242,0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.header-inner {
  height: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}
.logo-image {
  width: clamp(88px, 9vw, 116px);
  height: 66px;
  object-fit: contain;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}
.site-nav a {
  font-size: var(--sm);
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t);
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width var(--t);
}
.site-nav a:hover { color: var(--copper); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--olive);
  color: var(--ivory);
  font-size: var(--sm);
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp-header:hover {
  background: var(--copper);
  transform: translateY(-1px);
}
.btn-whatsapp-header svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--ivory);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--copper);
  padding: var(--space-6);
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
  z-index: 199;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(32,19,14,0.08);
  transition: color var(--t), padding-left var(--t);
}
.mobile-nav a:hover { color: var(--copper); padding-left: 0.5rem; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-wa {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--copper) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: var(--sm) !important;
  font-weight: 500;
}
.mobile-nav-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- FLOATING WHATSAPP ---- */
.wa-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(189,91,36,0.45);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  border: 2px solid rgba(255,255,255,0.2);
  animation: softGlow 4s ease-in-out infinite;
}
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }
.wa-float:hover {
  background: var(--copper-dark);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(189,91,36,0.5);
}
.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
@keyframes softGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(189,91,36,0.28); }
  50% { box-shadow: 0 10px 34px rgba(189,91,36,0.42); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: var(--sm);
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t), border-color var(--t);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--copper);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--copper-dark);
  box-shadow: 0 4px 16px rgba(189,91,36,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--copper);
  border: 1.5px solid var(--copper);
}
.btn-secondary:hover {
  background: var(--copper);
  color: var(--ivory);
}
.btn-olive {
  background: var(--olive);
  color: var(--ivory);
}
.btn-olive:hover { background: var(--olive-light); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(251,248,242,0.4);
}
.btn-ghost:hover {
  border-color: var(--ivory);
  background: rgba(251,248,242,0.1);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  gap: 0.5rem;
}
.btn-wa:hover { background: #1DB954; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: var(--xs); }
.btn-icon-right svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - 68px);
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(160deg, rgba(20,10,5,0.70) 0%, rgba(32,19,14,0.52) 55%, rgba(52,65,44,0.60) 100%),
    url('../img/desert-dunes.png') center / cover no-repeat;
  color: var(--ivory);
}
.hero-text-panel {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: var(--space-24) var(--space-6) var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Hero text overrides for dark background */
.hero .eyebrow { color: var(--sand); }
.hero .hero-display { color: var(--ivory); }
.hero .hero-display em { color: var(--sand); }
.hero .hero-subtitle { color: rgba(251,248,242,0.82); }
.hero .hero-proof {
  border-top-color: rgba(251,248,242,0.18);
}
.hero .hero-proof-num { color: var(--sand); }
.hero .hero-proof-label { color: rgba(251,248,242,0.62); }
.hero .btn-secondary {
  color: var(--ivory);
  border-color: rgba(251,248,242,0.55);
}
.hero .btn-secondary:hover {
  background: rgba(251,248,242,0.12);
  border-color: var(--ivory);
  color: var(--ivory);
}
.hero-display {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  max-width: 13ch;
}
.hero-display em {
  color: var(--copper);
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(32,19,14,0.1);
  max-width: 620px;
}
.hero-proof-item {}
.hero-proof-num {
  font-family: 'EB Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--copper);
  line-height: 1;
}
.hero-proof-label {
  font-size: var(--xs);
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hero-quick-filter {
  position: relative;
  width: min(100%, 760px);
  background: rgba(251,248,242,0.97);
  border: 1px solid rgba(189,91,36,0.2);
  border-radius: 8px;
  padding: var(--space-4) var(--space-6);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-8);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.hero-quick-filter:hover {
  transform: translateY(-3px);
  border-color: rgba(189,91,36,0.34);
  box-shadow: var(--shadow-lg);
}
.hero-filter-label {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-4);
}
.hero-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--space-4);
  align-items: end;
}
.hero-filter-field label {
  display: block;
  font-size: var(--xs);
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.hero-filter-field select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(32,19,14,0.15);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  font-size: var(--sm);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23BD5B24'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}
.hero-filter-field select:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}

/* ---- JOURNEY CARDS — ARCH-TOP ---- */
.journey-card {
  background: var(--ivory);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(32,19,14,0.07);
}
.journey-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(189,91,36,0.26);
}
.journey-card-image-wrap {
  position: relative;
  overflow: hidden;
  /* Arch top — the Moroccan motif */
  border-radius: 52% 52% 0 0 / 22% 22% 0 0;
  aspect-ratio: 4/3;
}
.journey-card-image-wrap::after,
.city-card::before,
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(251,248,242,0.30) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
  z-index: 1;
}
.journey-card:hover .journey-card-image-wrap::after,
.city-card:hover::before,
.team-card:hover .team-photo::after {
  transform: translateX(120%);
}
.journey-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.journey-card:hover .journey-card-image-wrap img {
  transform: scale(1.06);
}
.journey-card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--copper);
  color: var(--ivory);
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.journey-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.journey-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}
.journey-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--xs);
  color: var(--ink-soft);
}
.journey-card-meta-item svg { width: 13px; height: 13px; stroke: var(--copper); fill: none; stroke-width: 2; flex-shrink: 0; }
.journey-card h3 {
  font-size: var(--h4);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.journey-card-desc {
  font-size: var(--sm);
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  flex: 1;
}
.journey-card-route {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--xs);
  color: var(--copper);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.journey-card-route-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
.journey-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(32,19,14,0.08);
}
.journey-card-price {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink);
}
.journey-card-price span {
  font-size: var(--xs);
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Journey card grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
}

/* ---- INTRO / PITCH SECTION ---- */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.intro-image-stack {
  position: relative;
  padding: var(--space-6) 0 var(--space-6) var(--space-6);
}
.intro-image-main {
  border-radius: 52% 52% 12px 12px / 22% 22% 12px 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}
.intro-image-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-image-main,
.intro-image-accent,
.city-card,
.team-photo {
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.intro-image-stack:hover .intro-image-main,
.city-card:hover,
.team-card:hover .team-photo {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.intro-image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50% 50% 4px 4px;
  overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-md);
}
.intro-image-accent img { width: 100%; height: 100%; object-fit: cover; }
.intro-content .eyebrow { margin-bottom: var(--space-4); }
.intro-content h2 { font-size: var(--h2); margin-bottom: var(--space-6); }
.intro-content p { color: var(--ink-soft); margin-bottom: var(--space-4); }
.intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.intro-pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.intro-pillar-icon {
  width: 36px;
  height: 36px;
  background: rgba(189,91,36,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.intro-pillar-icon svg { width: 18px; height: 18px; stroke: var(--copper); fill: none; stroke-width: 1.5; }
.intro-pillar h4 { font-family: 'EB Garamond', serif; font-size: 1.05rem; }
.intro-pillar p { font-size: var(--sm); color: var(--ink-soft); }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  padding: var(--space-8);
  border-radius: 8px;
  background: rgba(251,248,242,0.07);
  border: 1px solid rgba(251,248,242,0.12);
  transition: background var(--t), transform var(--t), border-color var(--t);
}
.service-card:hover {
  background: rgba(251,248,242,0.12);
  border-color: rgba(232,189,130,0.34);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px 24px 6px 6px;
  background: rgba(232,189,130,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--sand); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.2rem; color: var(--ivory); margin-bottom: var(--space-2); }
.service-card p { font-size: var(--sm); color: rgba(251,248,242,0.7); line-height: 1.6; }

/* ---- PROCESS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(to right, var(--copper), transparent);
  opacity: 0.3;
}
.process-step { text-align: center; }
.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 6px 6px;
  background: var(--copper);
  color: var(--ivory);
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}
.process-step h4 { font-size: 1rem; margin-bottom: var(--space-2); }
.process-step p { font-size: var(--sm); color: var(--ink-soft); }

/* ---- DEPARTURE CITIES ---- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.city-card {
  position: relative;
  border-radius: 52% 52% 12px 12px / 22% 22% 12px 12px;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
}
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.city-card:hover img { transform: scale(1.05); }
.city-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,19,14,0.8) 0%, transparent 50%);
}
.city-card-label {
  position: absolute;
  bottom: var(--space-6);
  left: 0; right: 0;
  text-align: center;
  color: var(--ivory);
  z-index: 1;
}
.city-card-name {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  display: block;
}
.city-card-count {
  font-size: var(--xs);
  opacity: 0.75;
  letter-spacing: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--ivory);
  border-radius: 8px;
  padding: var(--space-8);
  border: 1px solid rgba(32,19,14,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(189,91,36,0.22);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--sand); }
.testimonial-text {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 4px 4px;
  background: var(--sand-light);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 500; font-size: var(--sm); }
.testimonial-detail { font-size: var(--xs); color: var(--ink-soft); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(32,19,14,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(32,19,14,0.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  text-align: left;
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t);
}
.faq-question:hover { color: var(--copper); }
.faq-question[aria-expanded="true"] { color: var(--copper); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-icon svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--t); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--copper); border-color: var(--copper); color: var(--ivory); }
.faq-question[aria-expanded="true"] .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: var(--space-6);
  font-size: var(--sm);
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info h2 { font-size: var(--h2); margin-bottom: var(--space-6); }
.contact-info p { color: var(--ink-soft); margin-bottom: var(--space-8); }
.contact-channels { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--ivory-dark);
  border-radius: 8px;
  border: 1px solid rgba(32,19,14,0.08);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.contact-channel:hover {
  border-color: var(--copper);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 20px 20px 4px 4px;
  background: var(--copper);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-channel-label { font-size: var(--xs); color: var(--ink-soft); }
.contact-channel-value { font-weight: 500; font-size: var(--sm); }

/* Form */
.form-card {
  background: white;
  border-radius: 8px;
  padding: var(--space-8);
  border: 1px solid rgba(32,19,14,0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.form-card:hover {
  border-color: rgba(189,91,36,0.22);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(32,19,14,0.15);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  font-size: var(--sm);
  transition: border-color var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23BD5B24'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-consent {
  font-size: var(--xs);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: var(--space-2);
}
.form-consent a { color: var(--copper); }
.form-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-6); }
.form-note {
  font-size: var(--xs);
  color: var(--ink-soft);
  text-align: center;
  margin-top: var(--space-4);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding-top: var(--space-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(251,248,242,0.1);
}
.footer-brand p {
  font-size: var(--sm);
  color: rgba(251,248,242,0.6);
  margin-top: var(--space-4);
  max-width: 28ch;
  line-height: 1.65;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
}
.footer-logo-image {
  width: min(190px, 100%);
  height: auto;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.24));
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--sm);
  color: rgba(251,248,242,0.7);
  margin-top: var(--space-2);
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--copper); flex-shrink: 0; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a {
  font-size: var(--sm);
  color: rgba(251,248,242,0.6);
  transition: color var(--t);
  display: block;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-6);
  font-size: var(--xs);
  color: rgba(251,248,242,0.4);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(251,248,242,0.55); transition: color var(--t); }
.footer-bottom a:hover { color: var(--ivory); }

/* ---- JOURNEY PAGE — SINGLE ---- */
.journey-hero {
  padding-top: 0;
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.journey-hero-pattern {
  background: linear-gradient(135deg, var(--ink) 0%, var(--olive) 100%);
}
.journey-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 82vh;
  position: relative;
}
.journey-hero-content {
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.journey-hero-content .eyebrow { color: var(--sand); }
.journey-hero-content h1 { font-size: var(--h1); color: var(--ivory); margin-block: var(--space-4); }
.journey-hero-content p { color: rgba(251,248,242,0.8); max-width: 45ch; margin-bottom: var(--space-6); }
.journey-hero-badges {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.journey-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(251,248,242,0.1);
  border: 1px solid rgba(251,248,242,0.2);
  color: var(--ivory);
  font-size: var(--xs);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}
.journey-badge svg { width: 12px; height: 12px; stroke: var(--sand); fill: none; stroke-width: 2; }
.journey-private-badge {
  background: var(--copper);
  border-color: var(--copper);
  font-weight: 500;
}
.journey-hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.journey-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23,17,13,0.94) 0%, rgba(23,17,13,0.76) 34%, rgba(23,17,13,0.32) 62%, rgba(23,17,13,0.10) 100%),
    linear-gradient(180deg, rgba(23,17,13,0.18) 0%, rgba(23,17,13,0.18) 62%, rgba(23,17,13,0.44) 100%);
  z-index: 1;
}

.journey-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
  padding-block: var(--space-16);
}
.journey-sidebar {
  position: sticky;
  top: calc(68px + var(--space-4));
}
.sidebar-card {
  background: var(--ivory);
  border: 1px solid rgba(32,19,14,0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-card-header {
  background: var(--olive);
  color: var(--ivory);
  padding: var(--space-6);
}
.sidebar-card-price {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
}
.sidebar-card-price-note { font-size: var(--xs); opacity: 0.7; margin-top: 2px; }
.sidebar-contact-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.sidebar-card-body { padding: var(--space-6); }
.sidebar-meta { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.sidebar-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--sm);
}
.sidebar-meta-item svg { width: 16px; height: 16px; stroke: var(--copper); fill: none; stroke-width: 2; flex-shrink: 0; }
.sidebar-meta-label { color: var(--ink-soft); font-size: var(--xs); }
.sidebar-meta-value { font-weight: 500; }
.sidebar-actions { display: flex; flex-direction: column; gap: var(--space-2); }
.sidebar-actions .btn { justify-content: center; width: 100%; }

.journey-section { margin-bottom: var(--space-12); }
.journey-section h2 { font-size: 1.8rem; margin-bottom: var(--space-6); padding-bottom: var(--space-4); border-bottom: 1px solid rgba(32,19,14,0.1); }
.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--ivory-dark);
  border-radius: 8px;
  border: 1px solid rgba(32,19,14,0.08);
}
.quick-fact div {
  font-size: var(--xs);
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.quick-fact strong {
  font-size: var(--sm);
}
.route-ribbon {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  color: var(--copper-dark);
}
.route-ribbon span {
  border: 1px solid rgba(189,91,36,0.25);
  background: rgba(251,248,242,0.85);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: var(--xs);
  font-weight: 600;
}
.route-ribbon i {
  width: 18px;
  height: 1px;
  background: var(--copper);
  opacity: 0.45;
}
.price-panel {
  background: var(--olive);
  color: var(--ivory);
  border-radius: 8px;
  padding: var(--space-8);
}
.price-panel h2 {
  color: var(--ivory);
  font-size: 1.6rem;
  border-bottom-color: rgba(251,248,242,0.14);
}
.price-panel p {
  color: rgba(251,248,242,0.8);
  font-size: var(--sm);
}
.itinerary-day {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  position: relative;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -24px;
  width: 1px;
  background: rgba(189,91,36,0.2);
}
.itinerary-day:last-child::before { display: none; }
.itinerary-day-num {
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 6px 6px;
  background: var(--ivory-dark);
  border: 2px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--copper);
  flex-shrink: 0;
}
.itinerary-day-content h4 { font-family: 'EB Garamond', serif; font-size: 1.15rem; margin-bottom: var(--space-2); }
.itinerary-day-content p { font-size: var(--sm); color: var(--ink-soft); line-height: 1.7; }
.itinerary-highlights {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.itinerary-highlight {
  font-size: var(--xs);
  background: rgba(189,91,36,0.1);
  color: var(--copper-dark);
  padding: 2px 8px;
  border-radius: 100px;
}

.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.inclusions-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--sm);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}
.inclusion-item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.included .inclusion-item::before { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2334412C'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%23FBF8F2' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.excluded .inclusion-item::before { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23E8E4E0'/%3E%3Cpath d='M5.5 5.5l5 5M10.5 5.5l-5 5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ---- FILTERS BAR ---- */
.filters-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-block: var(--space-6);
  border-bottom: 1px solid rgba(32,19,14,0.1);
  margin-bottom: var(--space-12);
  background: var(--ivory-dark);
  margin-inline: calc(var(--space-6) * -1);
  padding-inline: var(--space-6);
}
.filter-group {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.filter-group label {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.filter-select {
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  border: 1.5px solid rgba(32,19,14,0.15);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  font-size: var(--sm);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23BD5B24'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  transition: border-color var(--t);
}
.filter-select:focus { outline: none; border-color: var(--copper); }
.filter-count {
  margin-left: auto;
  font-size: var(--sm);
  color: var(--ink-soft);
}
.filter-reset {
  font-size: var(--sm);
  color: var(--copper);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color var(--t);
}
.filter-reset:hover { color: var(--copper-dark); }
.no-results {
  text-align: center;
  padding: var(--space-16);
  color: var(--ink-soft);
}
.no-results h3 { font-size: var(--h3); margin-bottom: var(--space-4); }

/* ---- ABOUT PAGE ---- */
.about-hero {
  padding-top: 68px;
  background: var(--olive);
  color: var(--ivory);
  padding-block: var(--space-32) var(--space-24);
}
.about-hero h1 { font-size: var(--h1); max-width: 16ch; margin-block: var(--space-4) var(--space-6); }
.about-hero p { max-width: 48ch; color: rgba(251,248,242,0.8); font-size: 1.1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.value-card {
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(32,19,14,0.08);
  border-radius: 8px;
}
.value-card-letter {
  font-family: 'EB Garamond', serif;
  font-size: 3rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.value-card h4 { margin-bottom: var(--space-2); }
.value-card p { font-size: var(--sm); color: var(--ink-soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.team-card {}
.team-photo {
  position: relative;
  border-radius: 52% 52% 12px 12px / 22% 22% 12px 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: var(--space-4);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'EB Garamond', serif; font-size: 1.2rem; }
.team-role { font-size: var(--xs); color: var(--copper); letter-spacing: 0; text-transform: uppercase; margin-block: 2px var(--space-2); }
.team-bio { font-size: var(--sm); color: var(--ink-soft); line-height: 1.6; }

/* ---- LEGAL PAGES ---- */
.legal-hero {
  padding-top: calc(68px + var(--space-16));
  padding-bottom: var(--space-12);
  background: var(--ivory-dark);
}
.legal-hero h1 { font-size: var(--h2); }
.legal-content {
  padding-block: var(--space-12) var(--space-24);
  background: var(--ivory);
}
.legal-content h2 { font-size: 1.3rem; margin-top: var(--space-8); margin-bottom: var(--space-4); color: var(--copper); }
.legal-content h3 { font-size: 1.1rem; margin-top: var(--space-6); margin-bottom: var(--space-2); }
.legal-content p { margin-bottom: var(--space-4); color: var(--ink-soft); font-size: var(--sm); line-height: 1.75; }
.legal-content ul { margin-bottom: var(--space-4); }
.legal-content ul li { padding-left: var(--space-6); position: relative; font-size: var(--sm); color: var(--ink-soft); margin-bottom: var(--space-2); }
.legal-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--copper); }

/* ---- 404 PAGE ---- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16);
  padding-top: calc(68px + var(--space-16));
  background: var(--ivory);
}
.page-404-inner { text-align: center; max-width: 480px; }
.page-404-num {
  font-family: 'EB Garamond', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--copper);
  opacity: 0.25;
  margin-bottom: var(--space-4);
}
.page-404 h1 { font-size: var(--h2); margin-bottom: var(--space-4); }
.page-404 p { color: var(--ink-soft); margin-bottom: var(--space-8); }
.page-404-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--xs);
  color: rgba(251,248,242,0.6);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: rgba(251,248,242,0.6); transition: color var(--t); }
.breadcrumb a:hover { color: var(--ivory); }
.breadcrumb-sep { opacity: 0.4; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- UTILITIES ---- */
.text-copper { color: var(--copper); }
.text-sand { color: var(--sand); }
.text-soft { color: var(--ink-soft); }
.text-ivory { color: var(--ivory); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.gap-4 { gap: var(--space-4); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .process-steps::before { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .journey-body { grid-template-columns: 1fr; }
  .journey-sidebar { position: static; }
  .sidebar-actions { flex-direction: row; }
  .sidebar-actions .btn { flex: 1; }
}

@media (max-width: 900px) {
  .hero-text-panel {
    padding: var(--space-16) var(--space-6) var(--space-12);
  }
  .hero-quick-filter {
    width: 100%;
  }
  .hero-filter-row { grid-template-columns: 1fr 1fr; }

  .intro-section { grid-template-columns: 1fr; }
  .intro-image-stack { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .journey-hero-inner { grid-template-columns: minmax(0, 1fr); min-height: 78vh; }
  .journey-hero-photo { height: auto; min-height: 0; }
  .journey-hero-content { padding: var(--space-8) var(--space-6); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --h1: 2.25rem; --h2: 1.8rem; --h3: 1.25rem; }
  .site-nav, .btn-whatsapp-header { display: none; }
  .nav-toggle { display: flex; }
  .logo-image {
    width: 76px;
    height: 50px;
  }
  .wa-float {
    width: 50px;
    height: 50px;
    right: var(--space-4);
    bottom: var(--space-4);
  }
  .wa-float svg { width: 22px; height: 22px; }

  .section { padding-block: var(--space-16); }
  .section-lg { padding-block: var(--space-24); }
  .container { padding-inline: var(--space-4); }

  .form-grid { grid-template-columns: 1fr; }
  .hero-filter-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .journey-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: var(--space-6); }
  .sidebar-actions { flex-direction: column; }
  .sidebar-actions .btn { flex: none; }
}

@media (max-width: 480px) {
  :root { --display: 2.55rem; --h1: 1.9rem; --h2: 1.55rem; }
  .cities-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .wa-float-pulse { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   2026 Full Redesign Layer
   Modern Moroccan editorial: cinematic media, zellige texture,
   glass surfaces, animated cards, soft depth.
   ============================================================ */

:root {
  --clay: #c65f27;
  --clay-dark: #8f3919;
  --mint: #d7e4d5;
  --aqua: #1f6f6a;
  --night: #17110d;
  --cream: #fffaf0;
  --paper: rgba(255,250,240,0.86);
  --glass: rgba(255,250,240,0.72);
  --line: rgba(198,95,39,0.18);
  --deep-shadow: 0 28px 80px rgba(32,19,14,0.18);
  --soft-shadow: 0 18px 48px rgba(32,19,14,0.12);
  --modern-zellige: none;
}

@keyframes floatTile {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-14px, 18px, 0) rotate(3deg); }
}

@keyframes patternSlide {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 64px 64px, -64px 64px, 64px 0, 0 64px, 0 0; }
}

@keyframes imageBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes buttonSheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

body {
  background:
    radial-gradient(ellipse at 15% 8%, rgba(255,250,240,0.86), transparent 38%),
    radial-gradient(ellipse at 88% 20%, rgba(215,228,213,0.34), transparent 35%),
    linear-gradient(180deg, rgba(255,250,240,0.96), rgba(242,237,227,0.86)),
    var(--modern-zellige),
    var(--cream);
  background-attachment: fixed;
}

.site-header {
  top: 14px;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  border: 1px solid rgba(255,250,240,0.34);
  border-radius: 999px;
  background: rgba(255,250,240,0.72);
  box-shadow: 0 18px 48px rgba(32,19,14,0.10);
  transform: translateX(-50%);
}

.site-header.scrolled,
.site-header.scrolling-down {
  background:
    linear-gradient(90deg, rgba(255,250,240,0.72), rgba(242,237,227,0.56)),
    var(--modern-zellige);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 20px 60px rgba(32,19,14,0.16);
}

.header-inner {
  padding-inline: 1.15rem;
}

.logo-image { height: 66px; }

.site-nav {
  gap: 0.5rem;
  padding: 0.25rem;
  border: 1px solid rgba(32,19,14,0.07);
  border-radius: 999px;
  background: rgba(255,250,240,0.42);
}

.site-nav a {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  transition: background var(--t), color var(--t), transform var(--t);
}

.site-nav a::after { display: none; }
.site-nav a:hover,
.site-nav a.active {
  color: var(--clay-dark);
  background: rgba(198,95,39,0.10);
  transform: translateY(-1px);
}

.btn-whatsapp-header,
.btn,
.wa-float {
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-header {
  background: var(--night);
  box-shadow: 0 12px 32px rgba(23,17,13,0.18);
}

.btn-primary,
.btn-secondary:hover,
.btn-wa {
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  color: var(--cream);
  border-color: transparent;
}

.btn::after,
.btn-whatsapp-header::after {
  content: '';
  position: absolute;
  inset-block: 0;
  width: 42%;
  left: -50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-18deg);
}

.btn:hover::after,
.btn-whatsapp-header:hover::after {
  animation: buttonSheen 0.85s ease;
}

.hero {
  min-height: 100vh;
  padding-top: 0;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(23,17,13,0.80), rgba(23,17,13,0.28) 48%, rgba(23,17,13,0.46)),
    radial-gradient(ellipse at 23% 48%, rgba(198,95,39,0.28), transparent 42%),
    var(--modern-zellige),
    url('../img/desert-dunes.png') center / cover no-repeat;
  color: var(--cream);
  animation: none;
}

.hero::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(34vw, 520px);
  border-left: 1px solid rgba(255,250,240,0.18);
  background:
    linear-gradient(180deg, rgba(255,250,240,0.12), rgba(255,250,240,0.03)),
    var(--modern-zellige);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: patternSlide 30s linear infinite;
}

.hero::after {
  width: 260px;
  right: clamp(1.5rem, 11vw, 10rem);
  top: 34%;
  opacity: 0.50;
  filter: blur(0.2px);
  animation: floatTile 9s ease-in-out infinite;
}

.hero-text-panel {
  width: min(100%, 1240px);
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: var(--space-12);
}

.hero-text-panel::after {
  color: rgba(255,250,240,0.52);
}

.hero .eyebrow {
  color: var(--sand);
}

.hero-display {
  max-width: 10ch;
  color: var(--cream);
  text-shadow: 0 18px 54px rgba(0,0,0,0.28);
}

.hero-display em {
  color: #f7b56e;
}

.hero-subtitle {
  color: rgba(255,250,240,0.84);
  font-size: 1.18rem;
  max-width: 52ch;
}

.hero-proof {
  border-top-color: rgba(255,250,240,0.18);
}

.hero-proof-num {
  color: #f7b56e;
}

.hero-proof-label {
  color: rgba(255,250,240,0.72);
}

.hero-quick-filter,
.filters-bar,
.form-card,
.sidebar-card,
.testimonial-card,
.journey-card,
.value-card,
.contact-channel,
.service-card {
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

.hero-quick-filter {
  width: min(100%, 900px);
  padding: 1.1rem;
  background: rgba(255,250,240,0.76);
  border: 1px solid rgba(255,250,240,0.42);
  box-shadow: var(--deep-shadow);
}

.section,
.section-sand {
  background:
    linear-gradient(180deg, rgba(255,250,240,0.84), rgba(242,237,227,0.78)),
    var(--modern-zellige),
    var(--cream);
}

.section-dark,
.section-ink,
.site-footer,
.journey-hero,
.about-hero,
body > div[style*="background:var(--olive)"] {
  background:
    linear-gradient(135deg, rgba(23,17,13,0.94), rgba(52,65,44,0.88)),
    var(--modern-zellige),
    var(--night) !important;
}

body > div[style*="background:var(--ivory-dark)"],
.legal-hero,
.legal-content,
.page-404 {
  background:
    linear-gradient(180deg, rgba(255,250,240,0.88), rgba(242,237,227,0.76)),
    var(--modern-zellige),
    var(--cream) !important;
}

.section-header h2,
.section-header-row h2,
.intro-content h2,
.journey-section h2 {
  letter-spacing: 0;
}

.intro-section {
  gap: var(--space-24);
}

.intro-image-main {
  border-radius: 44% 44% 24px 24px / 18% 18% 24px 24px;
  box-shadow: var(--deep-shadow);
}

.intro-image-accent {
  border-color: var(--cream);
  box-shadow: var(--soft-shadow);
}

.intro-pillar,
.process-step,
.value-card,
.team-card {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255,250,240,0.58);
  border: 1px solid rgba(198,95,39,0.12);
}

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

.journey-card {
  border-radius: 22px;
  border: 1px solid rgba(255,250,240,0.72);
  background: rgba(255,250,240,0.74);
  box-shadow: var(--soft-shadow);
}

.journey-card-image-wrap {
  border-radius: 22px 22px 0 0;
  aspect-ratio: 16/11;
}

.journey-card-badge {
  top: 1rem;
  left: 1rem;
  background: rgba(23,17,13,0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.journey-card-footer {
  align-items: center;
  gap: 1rem;
}

.journey-card .btn-sm {
  min-height: 42px;
}

.service-card {
  border-radius: 22px;
  background: rgba(255,250,240,0.08);
  border: 1px solid rgba(255,250,240,0.16);
}

.service-icon,
.process-step-num,
.contact-channel-icon {
  border-radius: 50% 50% 12px 12px;
}

.cities-grid {
  gap: var(--space-6);
}

.city-card {
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
}

.city-card::after {
  background: linear-gradient(to top, rgba(23,17,13,0.84), rgba(23,17,13,0.08) 62%);
}

.process-step {
  background: rgba(255,250,240,0.64);
}

.testimonial-card,
.form-card,
.sidebar-card,
.contact-channel {
  border-radius: 22px;
  background: rgba(255,250,240,0.72);
  border: 1px solid rgba(255,250,240,0.72);
  box-shadow: var(--soft-shadow);
}

.faq-question {
  border-radius: 16px;
  padding-inline: 1rem;
}

.faq-question:hover {
  background: rgba(198,95,39,0.08);
}

.filters-bar {
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(90deg, rgba(255,250,240,0.82), rgba(242,237,227,0.70)),
    var(--modern-zellige);
  box-shadow: 0 16px 44px rgba(32,19,14,0.06);
}

.filter-select,
.hero-filter-field select,
.form-field input,
.form-field select,
.form-field textarea {
  min-height: 46px;
  border-radius: 14px;
  background-color: rgba(255,250,240,0.78);
}

.journey-hero-inner {
  min-height: 82vh;
}

.journey-hero-photo img {
  animation: imageBreath 12s ease-in-out infinite;
}

.sidebar-card-header {
  background:
    linear-gradient(135deg, rgba(198,95,39,0.95), rgba(23,17,13,0.88)),
    var(--modern-zellige);
}

.quick-facts-grid,
.price-panel {
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.wa-float {
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  box-shadow: 0 18px 48px rgba(198,95,39,0.34);
}

.mobile-nav {
  top: 86px;
  left: 16px;
  right: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,250,240,0.52);
  box-shadow: var(--deep-shadow);
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero::before {
    width: 54%;
    opacity: 0.38;
  }

  .hero-text-panel {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-display {
    max-width: 12ch;
  }

  .hero-quick-filter {
    background: rgba(255,250,240,0.82);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }

  .mobile-nav {
    top: 82px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(23,17,13,0.66), rgba(23,17,13,0.40)),
      var(--modern-zellige),
      url('../img/desert-dunes.png') center / cover no-repeat;
  }

  .hero-proof {
    justify-content: space-between;
  }

  .filters-bar {
    margin-inline: calc(var(--space-4) * -1);
    border-radius: 0 0 22px 22px;
  }

  .journey-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .journey-card-footer .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions .btn,
  .hero-filter-btn {
    min-height: 52px;
  }
}

/* Crisp card geometry for the refreshed visual system */
.journey-card,
.service-card,
.testimonial-card,
.value-card,
.city-card,
.form-card,
.sidebar-card,
.summary-card,
.legal-card,
.itinerary-day,
.included-box,
.contact-channel {
  border-radius: 8px;
}

.journey-card-image-wrap,
.service-card-icon,
.city-card img,
.form-card-header,
.sidebar-card-header {
  border-radius: 8px 8px 0 0;
}

.lang-toggle-wrap {
  position: relative;
  flex: 0 0 auto;
}

.lang-mobile-float {
  display: none;
}

.lang-trigger {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.42rem;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255,250,240,0.72);
  color: var(--night);
  border: 1px solid rgba(32,19,14,0.13);
  box-shadow: 0 10px 26px rgba(32,19,14,0.08), inset 0 1px 0 rgba(255,255,255,0.65);
  cursor: pointer;
  font: 800 0.72rem/1 'Inter', sans-serif;
  outline: none;
  padding: 0 0.72rem 0 0.58rem;
  transition: background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
}

.lang-trigger:hover,
.lang-toggle-wrap.open .lang-trigger {
  background: var(--ivory);
  border-color: rgba(189,91,36,0.28);
  box-shadow: 0 14px 34px rgba(32,19,14,0.12), inset 0 1px 0 rgba(255,255,255,0.72);
}

.lang-trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(189,91,36,0.22), 0 14px 34px rgba(32,19,14,0.12);
}

.lang-trigger-current {
  min-width: 2.1rem;
  border-radius: 999px;
  background: var(--night);
  color: var(--ivory);
  padding: 0.42rem 0.52rem;
  text-align: center;
}

.lang-trigger-chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--t);
}

.lang-toggle-wrap.open .lang-trigger-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 350;
  min-width: 178px;
  padding: 0.35rem;
  border: 1px solid rgba(32,19,14,0.12);
  border-radius: 8px;
  background: rgba(255,250,240,0.98);
  box-shadow: 0 22px 54px rgba(32,19,14,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t);
}

.lang-toggle-wrap.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0.58rem 0.62rem;
  text-align: left;
  transition: background var(--t), color var(--t);
}

.lang-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(32,19,14,0.07);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 900;
  height: 1.55rem;
}

.lang-option strong {
  font-size: 0.82rem;
  font-weight: 750;
}

.lang-option:hover,
.lang-option[aria-selected="true"] {
  background: rgba(189,91,36,0.11);
}

.lang-option[aria-selected="true"] span {
  background: var(--copper);
  color: var(--ivory);
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0.7rem;
  }

  .lang-header-control {
    margin-left: auto;
  }

  .lang-trigger {
    height: 32px;
    gap: 0.35rem;
    padding: 0 0.58rem;
  }

  .lang-trigger-current {
    min-width: 1.95rem;
    padding: 0.36rem 0.48rem;
    font-size: 0.68rem;
  }

  .lang-menu {
    right: -2.5rem;
    min-width: 164px;
  }

  .nav-toggle {
    margin-left: 0;
  }
}

/* Wavy section transitions */
.section {
  isolation: isolate;
}

.section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -54px;
  height: 56px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,250,240,0.84), rgba(242,237,227,0.78)),
    var(--modern-zellige),
    var(--cream);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 38C120 14 238 14 360 38C482 62 598 62 720 38C842 14 958 14 1080 38C1202 62 1320 62 1440 38V80H0Z' fill='black'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 38C120 14 238 14 360 38C482 62 598 62 720 38C842 14 958 14 1080 38C1202 62 1320 62 1440 38V80H0Z' fill='black'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-dark::before,
.section-ink::before {
  background:
    linear-gradient(135deg, rgba(23,17,13,0.94), rgba(52,65,44,0.88)),
    var(--modern-zellige),
    var(--night);
}

.hero + .section::before,
main + .section::before {
  top: -64px;
  height: 66px;
}

@media (max-width: 768px) {
  .section::before {
    top: -38px;
    height: 40px;
  }

  .hero + .section::before,
  main + .section::before {
    top: -42px;
    height: 44px;
  }
}

/* Keep WhatsApp available as a true viewport float on every page. */
.wa-float {
  position: fixed !important;
  right: clamp(1rem, 2vw, 1.5rem) !important;
  bottom: clamp(1rem, 2vw, 1.5rem) !important;
  z-index: 9999 !important;
}

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

  .nav-toggle {
    margin-left: auto;
  }

  .wa-float {
    left: clamp(1rem, 4vw, 1.25rem) !important;
    right: auto !important;
    bottom: clamp(1rem, 4vw, 1.25rem) !important;
  }

  .lang-mobile-float {
    display: block;
    position: fixed;
    right: clamp(1rem, 4vw, 1.25rem);
    bottom: clamp(1rem, 4vw, 1.25rem);
    z-index: 9998;
    margin-left: 0;
  }

  .lang-trigger {
    height: 46px;
    min-width: 58px;
    padding: 0 0.78rem;
    background: var(--night);
    color: var(--ivory);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 14px 34px rgba(32,19,14,0.24);
  }

  .lang-trigger-current {
    background: transparent;
    color: currentColor;
    padding: 0;
  }

  .lang-menu {
    top: auto;
    right: 0;
    bottom: calc(100% + 0.55rem);
  }
}
