:root {
  --ivory: #f8f1e7;
  --ivory-2: #fffaf1;
  --sand: #dfc49f;
  --terracotta: #a84f35;
  --terracotta-dark: #773522;
  --clay: #c98262;
  --sage: #7a8871;
  --espresso: #2b2018;
  --ink: #181715;
  --muted: #746a5f;
  --line: rgba(43, 32, 24, 0.14);
  --paper: rgba(255, 250, 241, 0.76);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-soft: 0 18px 40px rgba(67, 44, 28, 0.08), 0 48px 90px rgba(67, 44, 28, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--espresso);
  background:
    radial-gradient(circle at 14% 2%, rgba(168, 79, 53, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(122, 136, 113, 0.13), transparent 32rem),
    linear-gradient(180deg, var(--ivory-2), var(--ivory));
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(43, 32, 24, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 32, 24, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mix-blend-mode: multiply;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

::selection {
  color: var(--ivory-2);
  background: var(--terracotta);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: clamp(96px, 12vw, 170px) 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2,
.manifesto h2,
.map-layout h2,
.heritage-copy h2,
.final-cta h2,
.concierge-aside h2,
.about-story h2,
.image-led-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5.5vw, 5.4rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.eyebrow,
.section-kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.serif-accent-italic {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--terracotta);
  letter-spacing: 0;
}

.luxe-card-shadow {
  box-shadow: var(--shadow-soft);
}

.btn-legacy,
.btn-ghost {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 15px 24px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), color 420ms var(--ease), background-color 420ms var(--ease);
}

.btn-legacy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ivory-2);
  background: var(--terracotta);
  border-color: rgba(255, 250, 241, 0.28);
}

.btn-legacy::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 170%;
  z-index: -1;
  background: var(--espresso);
  border-radius: 45%;
  transform: translate3d(0, 76%, 0) rotate(5deg);
  transition: transform 640ms var(--ease);
}

.btn-legacy:hover::before,
.btn-legacy:focus-visible::before {
  transform: translate3d(0, 12%, 0) rotate(0deg);
}

.btn-legacy:active,
.btn-ghost:active {
  transform: translateY(1px) scale(0.985);
}

.btn-ghost {
  color: var(--espresso);
  background: rgba(255, 250, 241, 0.64);
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(168, 79, 53, 0.45);
  color: var(--terracotta-dark);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--terracotta-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  z-index: 80;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 241, 0.7);
  border-radius: 999px;
  background: rgba(168, 79, 53, 0.28);
  transform: translate3d(-30px, -30px, 0);
  transition: width 280ms var(--ease), height 280ms var(--ease), background-color 280ms var(--ease);
  mix-blend-mode: difference;
}

.cursor-dot.cursor-active {
  width: 42px;
  height: 42px;
  background: rgba(255, 250, 241, 0.08);
}

.site-header {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 40;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  width: min(1020px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 241, 0.38);
  background: rgba(43, 32, 24, 0.58);
  color: var(--ivory-2);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(20, 15, 10, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 280ms var(--ease), background-color 280ms var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory-2);
  background: rgba(255, 250, 241, 0.12);
}

.nav-cta {
  padding-inline: 18px;
  min-height: 46px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.12);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--ivory-2);
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  bottom: 17px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--espresso);
  color: var(--ivory-2);
}

.home-hero {
  min-height: 104dvh;
}

.hero-media,
.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.page-hero > img {
  filter: saturate(0.92) contrast(1.04);
}

.hero-shade,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(24, 23, 21, 0.86), rgba(24, 23, 21, 0.42) 52%, rgba(24, 23, 21, 0.68)),
    linear-gradient(180deg, rgba(24, 23, 21, 0.16), rgba(24, 23, 21, 0.72));
}

.sand-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  pointer-events: none;
}

.hero-content,
.page-hero-copy {
  position: relative;
  z-index: 3;
  width: min(940px, calc(100% - 44px));
  margin: 0 auto;
  padding: 150px 0 90px;
}

.home-hero .hero-content {
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  margin-right: auto;
  max-width: 850px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.7rem, 7vw, 7.6rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
  max-width: 980px;
  overflow-wrap: break-word;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.hero-copy,
.page-hero-copy p:last-child {
  max-width: 610px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-hero.compact {
  min-height: 72dvh;
}

.split-60 {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(36px, 8vw, 94px);
  align-items: start;
}

.manifesto-panel {
  grid-column: 2;
  width: min(520px, 100%);
  margin-left: auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
  border: 1px solid rgba(255, 250, 241, 0.72);
  background: rgba(255, 250, 241, 0.78);
}

.brand-positioning {
  padding-top: clamp(104px, 11vw, 150px);
}

.positioning-grid > .reveal p:not(.eyebrow) {
  max-width: 680px;
  color: #5e554d;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.positioning-note {
  background:
    linear-gradient(140deg, rgba(255, 250, 241, 0.9), rgba(223, 196, 159, 0.26)),
    rgba(255, 250, 241, 0.78);
}

.manifesto-panel .serif-accent-italic {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.22;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 18px;
}

.destination-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  color: var(--ivory-2);
  background: var(--espresso);
}

.destination-card:nth-child(1),
.destination-card:nth-child(4) {
  grid-row: span 2;
}

.destination-card img {
  position: absolute;
  inset: 0;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 23, 21, 0.08), rgba(24, 23, 21, 0.86)),
    linear-gradient(90deg, rgba(24, 23, 21, 0.26), transparent 58%);
}

.destination-card:hover img {
  transform: scale(1.065);
  filter: saturate(1.04) contrast(1.08);
}

.destination-card-content {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.destination-card-content h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.destination-card-content p {
  max-width: 24ch;
  margin: 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: 0.96rem;
  line-height: 1.55;
}

.map-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(34px, 7vw, 84px);
}

.morocco-map-wrap {
  min-height: 440px;
  border-radius: 34px;
  padding: clamp(20px, 4vw, 42px);
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.84), rgba(223, 196, 159, 0.28));
  border: 1px solid rgba(255, 250, 241, 0.82);
  box-shadow: var(--shadow-soft);
}

.route-examples {
  display: grid;
  gap: 10px;
  margin: 26px 0 8px;
}

.route-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.route-item:last-child {
  border-bottom: 1px solid var(--line);
}

.route-item span {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.route-item p {
  margin: 0;
  color: var(--espresso);
  font-weight: 700;
}

.morocco-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.map-land {
  fill: rgba(168, 79, 53, 0.10);
  stroke: rgba(43, 32, 24, 0.28);
  stroke-width: 2;
}

.map-route {
  fill: none;
  stroke: rgba(168, 79, 53, 0.38);
  stroke-width: 2;
  stroke-dasharray: 8 9;
}

.map-city {
  cursor: pointer;
}

.map-city circle {
  fill: var(--terracotta);
  stroke: var(--ivory-2);
  stroke-width: 4;
  transition: transform 320ms var(--ease), fill 320ms var(--ease);
  transform-box: fill-box;
  transform-origin: center;
}

.map-city:hover circle,
.map-city.active circle {
  transform: scale(1.25);
  fill: var(--espresso);
}

.map-city text {
  fill: var(--espresso);
  font: 700 13px "Plus Jakarta Sans", sans-serif;
}

.map-caption {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.heritage-band {
  min-height: 780px;
  display: grid;
  align-items: center;
  color: var(--ivory-2);
  overflow: hidden;
}

.heritage-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 23, 21, 0.82), rgba(24, 23, 21, 0.28) 64%, rgba(24, 23, 21, 0.58)),
    linear-gradient(180deg, rgba(24, 23, 21, 0.1), rgba(24, 23, 21, 0.68));
}

.heritage-image {
  position: absolute;
  inset: 0;
}

.heritage-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin-left: max(22px, calc((100vw - 1180px) / 2));
}

.heritage-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.84);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.tour-card {
  grid-column: span 4;
  display: grid;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid rgba(255, 250, 241, 0.82);
  color: var(--espresso);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.featured .tour-card:first-child {
  grid-column: span 7;
}

.featured .tour-card:nth-child(2),
.featured .tour-card:nth-child(3) {
  grid-column: span 5;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.tour-card-media {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
}

.tour-card-media img {
  transition: transform 800ms var(--ease);
}

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

.tour-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.tour-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.02;
}

.related-tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.related-tour-grid .tour-card {
  grid-column: auto;
  min-width: 0;
}

.related-tour-grid .tour-card-media {
  aspect-ratio: 1.35 / 1;
}

.related-tour-grid .tour-card-body {
  align-content: start;
}

.related-tour-grid .tour-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-wrap: balance;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(126, 81, 50, 0.14);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.contact-methods a,
.contact-methods span {
  display: block;
  color: var(--espresso);
  overflow-wrap: anywhere;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.policy-aside {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.62);
  border: 1px solid rgba(126, 81, 50, 0.12);
}

.policy-content {
  display: grid;
  gap: 28px;
}

.policy-content article {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(126, 81, 50, 0.14);
}

.policy-content h2 {
  margin-bottom: 12px;
}

.signature-section {
  background:
    radial-gradient(circle at 80% 16%, rgba(122, 136, 113, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 250, 241, 0.22), rgba(223, 196, 159, 0.16));
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(255, 250, 241, 0.92);
  box-shadow: 0 18px 44px rgba(67, 44, 28, 0.07);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.journey-card-media {
  min-height: 300px;
  aspect-ratio: 1.14 / 1;
  overflow: hidden;
  background: var(--sand);
}

.journey-card-media img {
  transition: transform 820ms var(--ease);
}

.journey-card:hover .journey-card-media img {
  transform: scale(1.055);
}

.journey-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.journey-card-body .section-label {
  margin-bottom: 0;
  font-size: 0.72rem;
}

.journey-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.08;
}

.journey-card p {
  margin: 0;
  color: #5e554d;
}

.journey-card .btn-ghost {
  justify-self: start;
  margin-top: 8px;
}

.tour-card p {
  margin: 0;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--espresso);
  background: rgba(223, 196, 159, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
}

.final-cta-inner {
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: start;
  border-radius: 38px;
  padding: clamp(36px, 8vw, 90px);
  color: var(--ivory-2);
  background:
    linear-gradient(110deg, rgba(43, 32, 24, 0.96), rgba(43, 32, 24, 0.68)),
    url("https://images.unsplash.com/photo-1624804823268-7d5454caa8c8?auto=format&fit=crop&w=1800&q=82") center/cover;
  overflow: hidden;
}

.final-cta-inner .serif-accent-italic {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 1.3rem;
}

.final-cta-inner > p:not(.serif-accent-italic) {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.82);
}

.page-hero-copy {
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.destination-modules {
  display: grid;
  gap: 80px;
}

.destination-module {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.destination-module:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.destination-module:nth-child(even) .destination-module-media {
  order: 2;
}

.destination-module-media {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 12px;
  min-height: 460px;
}

.destination-module-media img {
  border-radius: 30px;
  min-height: 100%;
}

.destination-module-media > div {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 100%;
}

.destination-module-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 0.98;
}

.related-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.airport-grid,
.faq-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.airport-card,
.faq-grid article,
.values-grid article {
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(255, 250, 241, 0.86);
  box-shadow: 0 18px 44px rgba(67, 44, 28, 0.06);
}

.airport-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
}

.archive-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  border-radius: 30px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(255, 250, 241, 0.9);
}

.filters label,
.concierge-form label {
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 800;
}

.filters input,
.filters select,
.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  width: 100%;
  border: 1px solid rgba(43, 32, 24, 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--espresso);
  background: rgba(255, 250, 241, 0.76);
  transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease), background-color 260ms var(--ease);
}

.filters input:focus,
.filters select:focus,
.concierge-form input:focus,
.concierge-form select:focus,
.concierge-form textarea:focus {
  border-color: rgba(168, 79, 53, 0.56);
  box-shadow: 0 0 0 4px rgba(168, 79, 53, 0.11);
  outline: none;
  background: var(--ivory-2);
}

.mini-map {
  min-height: 260px;
}

.archive-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.archive-meta p:first-child {
  color: var(--espresso);
  font-weight: 800;
}

.archive .tour-card {
  grid-column: span 4;
}

.empty-state {
  margin-top: 28px;
  border-radius: 30px;
  padding: 42px;
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(255, 250, 241, 0.92);
}

.detail-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--ivory-2);
  overflow: hidden;
  background: var(--espresso);
}

.detail-hero img {
  position: absolute;
  inset: 0;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 23, 21, 0.78), rgba(24, 23, 21, 0.22)), linear-gradient(180deg, rgba(24, 23, 21, 0.08), rgba(24, 23, 21, 0.72));
}

.detail-hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 44px));
  margin-left: max(22px, calc((100vw - 1180px) / 2));
  padding: 150px 0 86px;
}

.detail-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.88;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.detail-specs div,
.spec-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.13);
  border: 1px solid rgba(255, 250, 241, 0.2);
}

.detail-specs span,
.spec-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-body {
  display: grid;
  gap: 90px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.spec-grid div {
  background: rgba(255, 250, 241, 0.78);
  border-color: rgba(255, 250, 241, 0.92);
}

.spec-grid span {
  color: var(--terracotta);
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 7vw, 84px);
}

.bullet-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.itinerary {
  display: grid;
  gap: 28px;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.itinerary-day img {
  aspect-ratio: 1.35 / 1;
  border-radius: 28px;
}

.itinerary-day h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.concierge-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.concierge-aside {
  position: sticky;
  top: 130px;
}

.concierge-form {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(255, 250, 241, 0.92);
}

.form-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--espresso);
  font-weight: 800;
}

.form-progress div {
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 32, 24, 0.12);
  overflow: hidden;
}

.form-progress i {
  display: block;
  width: 11.11%;
  height: 100%;
  border-radius: inherit;
  background: var(--terracotta);
  transition: transform 360ms var(--ease), width 360ms var(--ease);
}

.form-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-step.active {
  display: grid;
  gap: 14px;
  animation: formIn 360ms var(--ease);
}

@keyframes formIn {
  from {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.form-step legend {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-error {
  min-height: 24px;
  margin: 16px 0;
  color: var(--terracotta-dark);
  font-weight: 800;
}

.form-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.date-range input[type="date"] {
  min-height: 54px;
  font-variant-numeric: tabular-nums;
}

.date-range input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
}

.language-switcher {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 80;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.language-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid oklch(97.2% 0.018 82 / 0.32);
  border-radius: 999px;
  color: var(--ivory-2);
  background: oklch(22% 0.026 54 / 0.88);
  box-shadow: 0 18px 48px oklch(8% 0.02 55 / 0.28);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.06em;
  backdrop-filter: blur(16px);
  transition: transform 240ms var(--ease), background-color 240ms var(--ease), border-color 240ms var(--ease);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateX(2px);
  border-color: oklch(97.2% 0.018 82 / 0.52);
  background: oklch(25% 0.03 54 / 0.94);
  outline: none;
}

.language-menu {
  display: grid;
  gap: 6px;
  width: 168px;
  padding: 10px;
  border: 1px solid oklch(97.2% 0.018 82 / 0.28);
  border-radius: 20px;
  background: oklch(22% 0.026 54 / 0.94);
  box-shadow: 0 24px 70px oklch(8% 0.02 55 / 0.34);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 13px;
  padding: 10px 11px;
  color: oklch(97.2% 0.018 82 / 0.76);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}

.language-menu button span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 26px;
  border-radius: 999px;
  color: var(--ivory-2);
  background: oklch(97.2% 0.018 82 / 0.1);
  font-size: 0.74rem;
  font-weight: 900;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.active {
  color: var(--ivory-2);
  background: oklch(97.2% 0.018 82 / 0.1);
  outline: none;
}

.language-menu button.active span {
  background: var(--terracotta);
}

.goog-te-banner-frame,
.goog-te-gadget-icon,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
}

.success-state {
  border-radius: 22px;
  padding: 18px;
  background: rgba(122, 136, 113, 0.16);
}

.editorial-pair {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
}

.overlap-photo {
  min-height: 560px;
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
}

.values-grid article h3,
.faq-grid article h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.image-led {
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory-2);
}

.image-led > img {
  position: absolute;
  inset: 0;
}

.image-led::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 23, 21, 0.78), rgba(24, 23, 21, 0.22), rgba(24, 23, 21, 0.58));
}

.image-led-copy {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.image-led-copy p {
  color: rgba(255, 250, 241, 0.82);
}

.site-footer {
  padding: 70px 0 44px;
  color: var(--ivory-2);
  background: var(--espresso);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: end;
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.95;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 250, 241, 0.75);
  font-weight: 700;
}

.footer-inner p {
  color: rgba(255, 250, 241, 0.62);
}

/* Cohesive homepage system */
.section-container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.home-page {
  --home-radius: 28px;
  --home-radius-lg: 34px;
  --home-card: rgba(255, 250, 241, 0.84);
  --home-shadow: 0 18px 45px rgba(67, 44, 28, 0.07), 0 42px 90px rgba(67, 44, 28, 0.08);
}

.home-page p {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.78;
}

.home-page .section {
  padding: clamp(96px, 9vw, 132px) 0;
}

.home-page .section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.home-page .section-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
}

.home-page .section-head h2,
.home-page .manifesto h2,
.home-page .map-layout h2,
.home-page .heritage-copy h2,
.home-page .final-cta h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  line-height: 1.06;
}

.home-page .section-label,
.home-page .eyebrow {
  color: var(--terracotta-dark);
  font-size: 0.79rem;
  letter-spacing: 0.13em;
  line-height: 1.45;
}

.site-header {
  inset: 20px 0 auto 0;
}

.nav-shell {
  width: min(1120px, calc(100% - 36px));
  min-height: 64px;
  gap: 16px;
  padding: 8px 9px 8px 20px;
  background: rgba(43, 32, 24, 0.72);
  border-color: rgba(255, 250, 241, 0.26);
  box-shadow: 0 20px 70px rgba(20, 15, 10, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.brand {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--ivory-2);
  background: rgba(255, 250, 241, 0.13);
}

.nav-cta {
  min-height: 48px;
  padding-inline: 22px;
}

.home-hero {
  min-height: clamp(720px, 92dvh, 920px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 23, 21, 0.88), rgba(24, 23, 21, 0.48) 48%, rgba(24, 23, 21, 0.72)),
    linear-gradient(180deg, rgba(24, 23, 21, 0.10), rgba(24, 23, 21, 0.78));
}

.home-hero .hero-media img {
  filter: saturate(0.9) contrast(1.06);
  object-position: center center;
}

.home-hero .hero-content {
  width: min(1160px, calc(100% - 48px));
  max-width: 1160px;
  margin-inline: auto;
  padding: 148px 0 86px;
}

.home-hero .hero-content > * {
  max-width: 760px;
}

.home-hero h1 {
  font-size: clamp(3.85rem, 6.35vw, 6.75rem);
  line-height: 1.03;
  text-wrap: balance;
}

.home-hero .hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
}

.btn-legacy,
.btn-ghost {
  min-height: 52px;
  padding: 16px 25px;
  font-size: 0.96rem;
}

.btn-ghost {
  background: rgba(255, 250, 241, 0.76);
  border-color: rgba(43, 32, 24, 0.16);
  color: var(--espresso);
}

.brand-positioning {
  padding-top: clamp(92px, 8vw, 124px);
}

.home-page .positioning-grid {
  grid-template-columns: 0.34fr 1.36fr 0.86fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.home-page .positioning-grid .section-kicker {
  align-self: start;
  padding-top: 10px;
}

.positioning-grid > .reveal p:not(.eyebrow) {
  margin-bottom: 0;
  color: #5d5148;
}

.home-page .manifesto-panel {
  grid-column: auto;
  width: 100%;
  margin: 0;
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--home-radius);
  background:
    linear-gradient(140deg, rgba(255, 250, 241, 0.92), rgba(223, 196, 159, 0.20)),
    var(--home-card);
  border: 1px solid rgba(84, 57, 38, 0.10);
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.manifesto-panel .serif-accent-italic {
  font-size: clamp(1.38rem, 2vw, 1.92rem);
  line-height: 1.34;
}

.destination-grid {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 286px;
  gap: 16px;
}

.destination-card {
  grid-column: span 4;
  min-height: 286px;
  border-radius: var(--home-radius);
  box-shadow: 0 14px 38px rgba(20, 15, 10, 0.10);
}

.destination-card:nth-child(1),
.destination-card:nth-child(4) {
  grid-row: span 1;
}

.destination-card:nth-child(1),
.destination-card:nth-child(6) {
  grid-column: span 5;
}

.destination-card:nth-child(2),
.destination-card:nth-child(5) {
  grid-column: span 3;
}

.destination-card::after {
  background:
    linear-gradient(180deg, rgba(24, 23, 21, 0.08), rgba(24, 23, 21, 0.88)),
    linear-gradient(90deg, rgba(24, 23, 21, 0.38), rgba(24, 23, 21, 0.08) 66%);
}

.destination-card-content {
  padding: 24px;
}

.destination-card-content h3 {
  margin-bottom: 9px;
}

.destination-card-content p {
  max-width: 28ch;
  color: rgba(255, 250, 241, 0.92);
  font-size: 1rem;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.map-preview {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0), rgba(223, 196, 159, 0.16), rgba(255, 250, 241, 0));
}

.map-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 6vw, 74px);
}

.route-copy > p:not(.eyebrow) {
  max-width: 610px;
}

.morocco-map-wrap {
  min-height: 500px;
  border-radius: var(--home-radius-lg);
  padding: clamp(22px, 3.4vw, 38px);
  background:
    radial-gradient(circle at 74% 24%, rgba(168, 79, 53, 0.12), transparent 14rem),
    linear-gradient(145deg, rgba(255, 250, 241, 0.9), rgba(245, 231, 211, 0.76));
  border: 1px solid rgba(84, 57, 38, 0.10);
  box-shadow: var(--home-shadow);
}

.morocco-map {
  min-height: 390px;
}

.map-land {
  fill: rgba(168, 79, 53, 0.12);
  stroke: rgba(43, 32, 24, 0.34);
  stroke-width: 2;
}

.map-route {
  stroke: rgba(168, 79, 53, 0.55);
  stroke-width: 2.4;
  stroke-dasharray: 9 8;
}

.map-city circle {
  r: 9px;
  stroke-width: 3;
}

.map-city text {
  fill: #2b2018;
  font: 800 14px "Plus Jakarta Sans", sans-serif;
  paint-order: stroke;
  stroke: rgba(255, 250, 241, 0.78);
  stroke-width: 5px;
  stroke-linejoin: round;
}

.map-caption {
  color: #5d5148;
  font-weight: 700;
}

.route-examples {
  margin: 28px 0 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(43, 32, 24, 0.10);
  background: rgba(255, 250, 241, 0.48);
}

.route-item {
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-top: 0;
  border-bottom: 1px solid rgba(43, 32, 24, 0.10);
}

.route-item:last-child {
  border-bottom: 0;
}

.heritage-band {
  min-height: clamp(560px, 62vw, 720px);
  border-radius: 0;
}

.heritage-band::after {
  background:
    linear-gradient(90deg, rgba(24, 23, 21, 0.88), rgba(24, 23, 21, 0.34) 62%, rgba(24, 23, 21, 0.70)),
    linear-gradient(180deg, rgba(24, 23, 21, 0.18), rgba(24, 23, 21, 0.72));
}

.heritage-copy {
  width: min(1160px, calc(100% - 48px));
  max-width: 1160px;
  margin-inline: auto;
}

.heritage-copy > * {
  max-width: 720px;
}

.heritage-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.88);
}

.heritage-copy .btn-legacy {
  margin-top: 20px;
}

.signature-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(122, 136, 113, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(223, 196, 159, 0.13));
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.journey-card {
  min-height: 100%;
  border-radius: var(--home-radius);
  background: var(--home-card);
  border: 1px solid rgba(84, 57, 38, 0.10);
  box-shadow: 0 14px 38px rgba(67, 44, 28, 0.06);
}

.journey-card-media {
  min-height: 0;
  aspect-ratio: 1.18 / 1;
}

.journey-card-body {
  min-height: 330px;
  padding: 26px;
}

.journey-card h3 {
  font-size: clamp(1.75rem, 2.2vw, 2.28rem);
  line-height: 1.12;
}

.journey-card .tour-meta {
  margin-top: 2px;
}

.journey-card .btn-ghost {
  align-self: end;
  margin-top: 10px;
}

.final-cta {
  padding-top: clamp(96px, 8vw, 124px);
}

.final-cta-inner {
  min-height: clamp(440px, 46vw, 570px);
  border-radius: var(--home-radius-lg);
  padding: clamp(34px, 6vw, 78px);
  box-shadow: var(--home-shadow);
  background:
    linear-gradient(105deg, rgba(43, 32, 24, 0.96), rgba(43, 32, 24, 0.74) 46%, rgba(43, 32, 24, 0.38)),
    url("https://images.unsplash.com/photo-1624804823268-7d5454caa8c8?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.final-cta-inner h2 {
  max-width: 760px;
}

.final-cta-inner > p:not(.serif-accent-italic) {
  margin: 18px 0 26px;
  color: rgba(255, 250, 241, 0.88);
}

.site-footer {
  padding: clamp(54px, 7vw, 82px) 0 42px;
  background:
    linear-gradient(180deg, #2b2018, #211812);
}

.footer-inner {
  width: min(1160px, calc(100% - 48px));
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.8fr) auto;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  max-width: 560px;
  font-size: clamp(2rem, 3.6vw, 4.1rem);
  line-height: 1;
}

.footer-brand-block p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.68);
}

.footer-links,
.footer-contact {
  display: grid;
  justify-content: start;
  gap: 12px;
  font-style: normal;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 250, 241, 0.76);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--sand);
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .nav-links {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 22px;
    border-radius: 30px;
    background: rgba(43, 32, 24, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 90px rgba(20, 15, 10, 0.24);
  }

  .menu-open .nav-links a {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }

  .destination-grid,
  .tour-grid,
  .archive .tour-card,
  .featured .tour-card:first-child,
  .featured .tour-card:nth-child(2),
  .featured .tour-card:nth-child(3) {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-card,
  .archive .tour-card,
  .featured .tour-card:first-child,
  .featured .tour-card:nth-child(2),
  .featured .tour-card:nth-child(3) {
    grid-column: span 6;
  }

  .archive-layout,
  .concierge-layout,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: relative;
    top: auto;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .journey-card-media {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .filters,
  .concierge-aside {
    position: relative;
    top: auto;
  }

  .home-page .section {
    padding: clamp(76px, 9vw, 104px) 0;
  }

  .home-page .positioning-grid {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
  }

  .home-page .manifesto-panel {
    grid-column: 2;
  }

  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 310px;
  }

  .destination-card,
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(3),
  .destination-card:nth-child(4),
  .destination-card:nth-child(5),
  .destination-card:nth-child(6) {
    grid-column: auto;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .morocco-map-wrap {
    min-height: 460px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  html,
  body,
  .home-page {
    max-width: 100%;
    overflow-x: hidden;
  }

  .cursor-dot {
    display: none;
  }

  .container {
    width: min(680px, calc(100% - 28px));
  }

  .section-container {
    width: min(680px, calc(100% - 32px));
    max-width: calc(100vw - 32px);
  }

  .section {
    padding: 84px 0;
  }

  .home-page .section {
    padding: 72px 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-shell {
    width: calc(100% - 22px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 58px 6px 16px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: block !important;
    flex: 0 0 42px;
    position: absolute;
    top: 50%;
    right: 7px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 250, 241, 0.26);
    background: rgba(255, 250, 241, 0.16);
    transform: translateY(-50%);
  }

  .hero-content,
  .page-hero-copy,
  .detail-hero-copy {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding-bottom: 70px;
  }

  .home-hero .hero-content {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    padding-top: 132px;
    padding-bottom: 58px;
  }

  .home-hero .hero-content > * {
    width: 100%;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(3rem, 12vw, 4.6rem);
    line-height: 1;
    max-width: 100%;
  }

  .home-hero .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero {
    min-height: clamp(660px, 84dvh, 780px);
  }

  .home-hero h1 {
    font-size: clamp(2.32rem, 8.8vw, 3rem);
    line-height: 1.08;
    text-wrap: auto;
  }

  .split-60,
  .map-layout,
  .destination-module,
  .destination-module:nth-child(even),
  .two-column,
  .editorial-pair {
    grid-template-columns: 1fr;
  }

  .manifesto-panel {
    grid-column: auto;
  }

  .home-page .positioning-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page .manifesto-panel {
    grid-column: auto;
    max-width: 100%;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .destination-card:nth-child(1),
  .destination-card:nth-child(4) {
    grid-row: span 1;
  }

  .destination-module:nth-child(even) .destination-module-media {
    order: 0;
  }

  .destination-module-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .destination-module-media img {
    aspect-ratio: 1.2 / 1;
  }

  .morocco-map-wrap {
    order: -1;
    min-height: 330px;
    padding: 16px;
  }

  .morocco-map {
    min-height: 310px;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .related-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card {
    grid-template-columns: 1fr;
  }

  .journey-card-media {
    min-height: 280px;
    aspect-ratio: 1.22 / 1;
  }

  .tour-card,
  .archive .tour-card,
  .related-tour-grid .tour-card,
  .featured .tour-card:first-child,
  .featured .tour-card:nth-child(2),
  .featured .tour-card:nth-child(3) {
    grid-column: auto;
  }

  .airport-grid,
  .faq-grid,
  .values-grid,
  .detail-specs,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-day {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 58px 6px 16px;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
    max-width: calc(100% - 58px);
  }

  .related-tour-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .policy-aside {
    border-radius: 22px;
    padding: 22px;
  }

  .menu-toggle {
    display: block !important;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 250, 241, 0.26);
    background: rgba(255, 250, 241, 0.16);
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.12em;
    line-height: 1.55;
  }

  .hero,
  .home-hero,
  .page-hero,
  .detail-hero {
    min-height: clamp(640px, 82dvh, 740px);
  }

  .home-page .section {
    padding: 64px 0;
  }

  .page-hero.compact {
    min-height: 64dvh;
  }

  .hero h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(2.08rem, 8.8vw, 2.56rem);
    line-height: 1.08;
    text-wrap: auto;
  }

  .home-hero .hero-copy {
    font-size: 1rem;
    line-height: 1.68;
  }

  .section-head h2,
  .manifesto h2,
  .map-layout h2,
  .heritage-copy h2,
  .final-cta h2,
  .concierge-aside h2,
  .about-story h2,
  .image-led-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 1.04;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .destination-card-content {
    padding: 22px;
  }

  .journey-card-body {
    min-height: auto;
    padding: 22px;
  }

  .journey-card-media {
    min-height: 245px;
  }

  .route-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-city text {
    font-size: 12px;
    stroke-width: 4px;
  }

  .final-cta-inner {
    min-height: 500px;
    padding: 34px 24px;
    border-radius: 26px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .archive-meta {
    display: block;
  }
}

/* Refined Journeys filter */
.journey-filter-head {
  max-width: var(--journey-container);
}

.route-finder-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid oklch(72% 0.048 69 / 0.32);
  border-radius: 34px;
  background:
    linear-gradient(135deg, oklch(98% 0.017 86 / 0.96), oklch(94.8% 0.031 79 / 0.82)),
    var(--journey-surface);
  box-shadow:
    0 30px 90px oklch(24% 0.032 50 / 0.09),
    inset 0 1px 0 oklch(100% 0 0 / 0.72);
}

.route-finder-copy {
  max-width: 520px;
}

.route-finder-copy h2 {
  margin-bottom: 14px;
}

.route-finder-copy p:not(.section-label) {
  max-width: 46ch;
}

.route-finder-controls {
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid oklch(76% 0.044 72 / 0.26);
  border-radius: 26px;
  background: oklch(99% 0.011 86 / 0.54);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.72);
}

.filter-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid oklch(76% 0.045 72 / 0.36);
  border-radius: 999px;
  color: var(--terracotta-dark);
  background: oklch(96.5% 0.026 80 / 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.filter-chip {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 48px;
  gap: 12px;
  padding: 9px 10px 9px 15px;
  cursor: pointer;
  box-shadow: 0 10px 24px oklch(24% 0.032 50 / 0.045);
}

.filter-chip span {
  white-space: nowrap;
}

.filter-chip small {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--terracotta-dark);
  background: oklch(93.4% 0.041 76 / 0.86);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  transition: background-color 280ms var(--ease), color 280ms var(--ease);
}

.filter-chip:hover small,
.filter-chip:focus-visible small,
.filter-chip.active small {
  color: var(--terracotta);
  background: var(--ivory-2);
}

@media (max-width: 980px) {
  .route-finder-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .route-finder-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .route-finder-controls {
    padding: 14px;
    border-radius: 22px;
  }

  .filter-chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -14px;
    padding: 0 14px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .filter-chip {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .route-finder-panel {
    padding: 18px;
  }

  .filter-status {
    font-size: 0.74rem;
    line-height: 1.3;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Impeccable homepage pass */
.impeccable-home {
  --container: 1180px;
  --surface: oklch(97.2% 0.018 82 / 0.88);
  --surface-solid: oklch(97.2% 0.018 82);
  --surface-warm: oklch(93.2% 0.032 76);
  --deep: oklch(20.5% 0.026 54);
  --soft-border: oklch(23.5% 0.029 54 / 0.12);
  --lift-shadow: 0 22px 54px oklch(24% 0.032 50 / 0.11), 0 54px 120px oklch(24% 0.032 50 / 0.08);
  --card-radius: 26px;
  background:
    radial-gradient(circle at 86% 8%, oklch(52% 0.044 129 / 0.12), transparent 30rem),
    radial-gradient(circle at 4% 46%, oklch(51.5% 0.115 43 / 0.09), transparent 28rem),
    linear-gradient(180deg, var(--ivory-2), oklch(93.8% 0.025 78));
}

.impeccable-home .section-container,
.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.impeccable-home .section {
  padding: clamp(96px, 9vw, 140px) 0;
}

.impeccable-home .section-head {
  max-width: 850px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.impeccable-home h1,
.impeccable-home h2,
.impeccable-home h3,
.footer-brand,
.brand {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.impeccable-home p {
  color: oklch(43% 0.026 58);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.78;
}

.impeccable-home .section-head h2,
.impeccable-home .brand-intro-copy h2,
.impeccable-home .route-copy h2,
.impeccable-home .build-tour-copy h2,
.impeccable-home .experience-lead h2,
.impeccable-home .planning-copy h2,
.impeccable-home .trust-intro h2,
.impeccable-home .final-cta h2 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(2.55rem, 5.15vw, 5.45rem);
  line-height: 1.02;
  text-wrap: balance;
}

.section-label,
.impeccable-home .eyebrow {
  color: var(--terracotta-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.45;
}

.btn-legacy,
.btn-ghost {
  min-height: 52px;
  border-radius: 999px;
  padding: 15px 25px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.btn-legacy {
  background: var(--terracotta);
  color: var(--ivory-2);
  box-shadow: 0 14px 34px oklch(39% 0.1 42 / 0.18);
}

.btn-ghost {
  background: oklch(96.5% 0.018 82 / 0.88);
  border-color: oklch(23.5% 0.029 54 / 0.18);
  color: var(--espresso);
}

.btn-legacy:hover,
.btn-legacy:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px oklch(24% 0.032 50 / 0.16);
}

.site-header.scrolled .nav-shell {
  background: oklch(22% 0.026 54 / 0.88);
  border-color: oklch(97.2% 0.018 82 / 0.28);
}

.nav-shell {
  width: min(1160px, calc(100% - 36px));
  min-height: 68px;
  background: oklch(22% 0.026 54 / 0.72);
  border-color: oklch(97.2% 0.018 82 / 0.26);
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  font-size: 0.88rem;
  padding: 10px 12px;
}

.home-hero-v3 {
  min-height: clamp(720px, 94dvh, 960px);
}

.home-hero-v3 .hero-media img {
  object-position: center 50%;
  transform: scale(1.02);
}

.home-hero-v3 .hero-shade {
  background:
    linear-gradient(90deg, oklch(14.5% 0.018 55 / 0.92), oklch(14.5% 0.018 55 / 0.58) 48%, oklch(14.5% 0.018 55 / 0.70)),
    linear-gradient(180deg, oklch(14.5% 0.018 55 / 0.12), oklch(14.5% 0.018 55 / 0.83));
}

.home-hero-v3 .hero-content {
  max-width: 900px;
  padding-bottom: clamp(64px, 8vw, 112px);
}

.home-hero-v3 h1 {
  max-width: 880px;
  color: var(--ivory-2);
  font-size: clamp(3.55rem, 7.7vw, 8.1rem);
  line-height: 0.96;
  text-wrap: balance;
}

.home-hero-v3 .hero-copy {
  max-width: 700px;
  margin-top: 20px;
  color: oklch(97.2% 0.018 82 / 0.9);
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
}

.hero-trust-line {
  margin: 22px 0 0;
  color: oklch(93.2% 0.032 76 / 0.88) !important;
  font-size: 0.94rem !important;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: center;
}

.brand-intro-copy {
  max-width: 720px;
}

.brand-intro-copy p:not(.section-label) {
  margin: 22px 0 0;
  max-width: 650px;
  font-size: clamp(1.07rem, 1.35vw, 1.2rem);
}

.brand-quote-card {
  position: relative;
  border: 1px solid oklch(23.5% 0.029 54 / 0.10);
  border-radius: 34px;
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(145deg, oklch(97.2% 0.018 82 / 0.94), oklch(91% 0.034 76 / 0.60)),
    var(--surface-solid);
  box-shadow: var(--lift-shadow);
}

.brand-quote-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid oklch(23.5% 0.029 54 / 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.brand-quote-card p {
  margin: 0;
  color: var(--espresso);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.18;
}

.brand-quote-card div {
  display: grid;
  gap: 4px;
  margin-top: 34px;
}

.brand-quote-card span {
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-quote-card strong {
  color: var(--espresso);
  font-size: 1.1rem;
}

.destinations-section {
  background: linear-gradient(180deg, transparent, oklch(87% 0.044 74 / 0.28), transparent);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(255px, 24vw, 340px);
  gap: 16px;
}

.destination-card {
  grid-column: span 4;
  min-height: 255px;
  border-radius: var(--card-radius);
  box-shadow: 0 18px 44px oklch(22% 0.026 54 / 0.14);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.destination-card:nth-child(1),
.destination-card:nth-child(8) {
  grid-column: span 5;
}

.destination-card:nth-child(2),
.destination-card:nth-child(6),
.destination-card:nth-child(11) {
  grid-column: span 3;
}

.destination-card:nth-child(12) {
  grid-column: span 6;
}

.destination-card::after {
  background:
    linear-gradient(180deg, oklch(14.5% 0.018 55 / 0.04), oklch(14.5% 0.018 55 / 0.90)),
    linear-gradient(90deg, oklch(14.5% 0.018 55 / 0.50), transparent 68%);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lift-shadow);
}

.destination-card:hover img {
  transform: scale(1.065);
}

.destination-card-content {
  display: grid;
  gap: 9px;
  padding: clamp(22px, 2.4vw, 30px);
}

.destination-card-content h3 {
  font-size: clamp(1.7rem, 2.25vw, 2.35rem);
}

.destination-card-content p {
  max-width: 32ch;
  color: oklch(97.2% 0.018 82 / 0.92);
}

.card-link {
  margin-top: 4px;
  color: oklch(93.2% 0.032 76);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-action {
  margin-top: 34px;
}

.route-section {
  padding-top: clamp(84px, 8vw, 120px);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.route-copy p:not(.section-label) {
  max-width: 560px;
}

.route-examples {
  display: grid;
  gap: 10px;
  margin: 28px 0 24px;
  background: transparent;
}

.route-item {
  width: 100%;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--soft-border);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--espresso);
  background: oklch(97.2% 0.018 82 / 0.64);
  text-align: left;
  transition: transform 360ms var(--ease), background-color 360ms var(--ease), border-color 360ms var(--ease);
}

.route-item span {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.route-item p {
  margin: 0;
  color: var(--espresso);
  font-weight: 800;
  line-height: 1.35;
}

.route-item:hover,
.route-item.active {
  transform: translateX(4px);
  border-color: oklch(51.5% 0.115 43 / 0.38);
  background: oklch(93.2% 0.032 76 / 0.72);
}

.route-map-card {
  overflow: hidden;
  border: 1px solid oklch(23.5% 0.029 54 / 0.10);
  border-radius: 34px;
  padding: 14px;
  background: var(--surface-solid);
  box-shadow: var(--lift-shadow);
}

.leaflet-map {
  min-height: clamp(420px, 52vw, 620px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-warm);
}

.leaflet-container {
  font-family: "Manrope", Arial, sans-serif;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--ivory-2);
  color: var(--espresso);
}

.luxury-map-marker {
  display: grid;
  place-items: center;
}

.luxury-map-marker span {
  width: 18px;
  height: 18px;
  display: block;
  border: 4px solid var(--ivory-2);
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 8px 20px oklch(24% 0.032 50 / 0.24);
}

.map-caption {
  margin: 13px 8px 3px;
  color: var(--muted);
  font-size: 0.92rem !important;
  font-weight: 700;
}

.build-tour-section {
  background:
    linear-gradient(180deg, oklch(24% 0.032 50), oklch(20.5% 0.026 54)),
    var(--espresso);
  color: var(--ivory-2);
}

.build-tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.08fr) minmax(260px, 0.54fr);
  gap: 22px;
  align-items: start;
}

.build-tour-copy {
  position: sticky;
  top: 120px;
  padding-top: 8px;
}

.build-tour-copy h2,
.build-tour-copy p,
.build-tour-copy .section-label {
  color: var(--ivory-2) !important;
}

.build-tour-copy p {
  color: oklch(93.2% 0.032 76 / 0.78) !important;
}

.reassurance-line {
  margin-top: 24px;
  font-weight: 800;
}

.build-tour-form {
  display: grid;
  gap: 14px;
}

.form-panel,
.live-summary {
  border: 1px solid oklch(97.2% 0.018 82 / 0.15);
  border-radius: 24px;
  padding: clamp(20px, 2.4vw, 30px);
  background: oklch(97.2% 0.018 82 / 0.08);
  box-shadow: inset 0 1px 0 oklch(97.2% 0.018 82 / 0.10);
}

.form-group-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.form-group-title span {
  color: var(--sand);
  font-weight: 800;
}

.form-group-title h3,
.live-summary h3 {
  margin: 0;
  color: var(--ivory-2);
  font-size: 1.55rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.build-tour-form label,
.build-tour-form legend {
  display: grid;
  gap: 8px;
  color: oklch(97.2% 0.018 82 / 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.build-tour-form fieldset {
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.build-tour-form input,
.build-tour-form textarea {
  width: 100%;
  border: 1px solid oklch(97.2% 0.018 82 / 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--espresso);
  background: oklch(97.2% 0.018 82 / 0.94);
}

.build-tour-form input:focus,
.build-tour-form textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 4px oklch(81.8% 0.063 74 / 0.18);
  outline: 0;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-pill {
  display: inline-flex !important;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid oklch(97.2% 0.018 82 / 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  color: oklch(97.2% 0.018 82 / 0.86);
  background: oklch(97.2% 0.018 82 / 0.08);
  transition: background-color 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.choice-pill input:checked + span {
  border-color: var(--sand);
  color: var(--espresso);
  background: var(--sand);
}

.choice-pill input:focus-visible + span {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

.form-error {
  min-height: 24px;
  margin: 0 0 14px;
  color: oklch(85% 0.09 35) !important;
  font-weight: 800;
}

.live-summary {
  position: sticky;
  top: 120px;
}

.live-summary .section-label {
  color: var(--sand) !important;
}

.live-summary dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.live-summary div {
  border-top: 1px solid oklch(97.2% 0.018 82 / 0.16);
  padding-top: 14px;
}

.live-summary dt {
  color: oklch(93.2% 0.032 76 / 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-summary dd {
  margin: 5px 0 0;
  color: var(--ivory-2);
  line-height: 1.5;
}

.experiences-section {
  background:
    linear-gradient(180deg, oklch(97.2% 0.018 82), oklch(91.5% 0.033 77 / 0.52)),
    var(--ivory);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.experience-lead {
  position: sticky;
  top: 120px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.experience-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 22px;
  color: var(--ivory-2);
  background: var(--espresso);
  box-shadow: 0 16px 38px oklch(22% 0.026 54 / 0.12);
}

.experience-card:nth-child(3),
.experience-card:nth-child(8) {
  min-height: 310px;
}

.experience-card img {
  position: absolute;
  inset: 0;
  transition: transform 820ms var(--ease);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, oklch(14.5% 0.018 55 / 0.88));
}

.experience-card:hover img {
  transform: scale(1.06);
}

.experience-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.experience-card h3 {
  margin: 0 0 8px;
  color: var(--ivory-2);
  font-size: 1.55rem;
}

.experience-card p {
  margin: 0;
  color: oklch(97.2% 0.018 82 / 0.86);
  font-size: 0.95rem;
  line-height: 1.55;
}

.signature-section {
  background:
    radial-gradient(circle at 90% 12%, oklch(52% 0.044 129 / 0.14), transparent 28rem),
    linear-gradient(180deg, oklch(97.2% 0.018 82 / 0.18), oklch(86% 0.048 74 / 0.20));
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.journey-card {
  grid-column: span 4;
  border-radius: var(--card-radius);
  background: var(--surface);
  border: 1px solid var(--soft-border);
  box-shadow: 0 16px 42px oklch(27% 0.037 49 / 0.07);
}

.journey-card:nth-child(1),
.journey-card:nth-child(2) {
  grid-column: span 6;
}

.journey-card-media {
  aspect-ratio: 1.32 / 1;
  min-height: 260px;
}

.journey-card-body {
  min-height: 330px;
}

.journey-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.journey-title-row h3 {
  margin: 0;
}

.journey-title-row > span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--terracotta-dark);
  background: oklch(81.8% 0.063 74 / 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.tour-meta span,
.pill {
  background: oklch(81.8% 0.063 74 / 0.34);
}

.planning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 6vw, 84px);
}

.planning-copy {
  position: sticky;
  top: 120px;
}

.planning-steps {
  position: relative;
  display: grid;
  gap: 14px;
}

.planning-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: oklch(23.5% 0.029 54 / 0.12);
}

.planning-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  border: 1px solid var(--soft-border);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--surface);
  box-shadow: 0 12px 34px oklch(27% 0.037 49 / 0.055);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--ivory-2);
  font-weight: 800;
}

.trust-section {
  background: var(--deep);
  color: var(--ivory-2);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.trust-intro h2,
.trust-intro .section-label {
  color: var(--ivory-2);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-points span {
  border: 1px solid oklch(97.2% 0.018 82 / 0.14);
  border-radius: 18px;
  padding: 16px;
  color: oklch(97.2% 0.018 82 / 0.86);
  background: oklch(97.2% 0.018 82 / 0.06);
  font-weight: 800;
  line-height: 1.4;
}

.testimonial-card {
  margin-top: 16px;
  border: 1px solid oklch(97.2% 0.018 82 / 0.14);
  border-radius: 28px;
  padding: clamp(26px, 3vw, 38px);
  background: oklch(30% 0.036 48);
  box-shadow: 0 24px 70px oklch(12% 0.018 55 / 0.28);
}

.testimonial-card p {
  margin: 0;
  color: var(--ivory-2);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.3;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
  margin-top: 22px;
}

.testimonial-card strong {
  color: var(--ivory-2);
}

.testimonial-card span {
  color: oklch(93.2% 0.032 76 / 0.72);
}

.final-cta-inner {
  background:
    linear-gradient(105deg, oklch(16% 0.018 55 / 0.96), oklch(16% 0.018 55 / 0.72) 52%, oklch(16% 0.018 55 / 0.34)),
    url("https://images.unsplash.com/photo-1624804823268-7d5454caa8c8?auto=format&fit=crop&w=1900&q=84") center/cover;
}

.final-cta-inner h2 {
  color: var(--ivory-2) !important;
}

.site-footer {
  padding: clamp(56px, 7vw, 86px) 0;
  background: oklch(18.5% 0.018 55);
  color: var(--ivory-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 0.9fr) minmax(230px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--ivory-2);
  font-size: 1.45rem;
}

.footer-brand-block p,
.footer-contact,
.footer-contact span,
.footer-links a {
  color: oklch(97.2% 0.018 82 / 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-link-groups {
  display: grid;
  gap: 22px;
}

.footer-links span {
  flex-basis: 100%;
  color: oklch(97.2% 0.018 82 / 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal-links {
  padding-top: 18px;
  border-top: 1px solid oklch(97.2% 0.018 82 / 0.13);
}

.footer-contact {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.footer-whatsapp {
  justify-self: start;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ivory-2) !important;
  background: var(--terracotta);
  font-weight: 800;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1080px) {
  .impeccable-home .section {
    padding: clamp(72px, 9vw, 104px) 0;
  }

  .brand-intro-layout,
  .map-layout,
  .build-tour-layout,
  .experience-layout,
  .planning-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .build-tour-copy,
  .experience-lead,
  .planning-copy,
  .live-summary {
    position: static;
  }

  .destination-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card,
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(6),
  .destination-card:nth-child(8),
  .destination-card:nth-child(11),
  .destination-card:nth-child(12),
  .journey-card,
  .journey-card:nth-child(1),
  .journey-card:nth-child(2) {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .impeccable-home .section-container,
  .footer-inner {
    width: min(680px, calc(100% - 32px));
  }

  .home-hero-v3 {
    min-height: clamp(660px, 86dvh, 790px);
  }

  .home-hero-v3 h1 {
    font-size: clamp(2.65rem, 10.5vw, 4.15rem);
    line-height: 1.03;
  }

  .home-hero-v3 .hero-content {
    margin-inline: auto;
    padding-bottom: 56px;
  }

  .form-grid,
  .experience-grid,
  .destination-grid,
  .journey-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .leaflet-map {
    min-height: 430px;
  }

  .planning-steps::before {
    display: none;
  }

  .planning-step {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    inset: 14px 0 auto;
  }

  .nav-shell {
    width: auto;
    margin-inline: 12px;
    padding-right: 58px;
  }

  .brand {
    max-width: calc(100% - 68px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    right: 8px;
    z-index: 2;
  }

  .impeccable-home,
  .impeccable-home section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .impeccable-home .section {
    padding: 64px 0;
  }

  .home-hero-v3 {
    min-height: clamp(640px, 84dvh, 760px);
  }

  .home-hero-v3 .hero-content {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-hero-v3 h1 {
    font-size: clamp(2.2rem, 8.9vw, 2.95rem);
    line-height: 1.08;
    text-wrap: wrap;
  }

  .home-hero-v3 .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .impeccable-home .section-head h2,
  .impeccable-home .brand-intro-copy h2,
  .impeccable-home .route-copy h2,
  .impeccable-home .build-tour-copy h2,
  .impeccable-home .experience-lead h2,
  .impeccable-home .planning-copy h2,
  .impeccable-home .trust-intro h2,
  .impeccable-home .final-cta h2 {
    font-size: clamp(2.18rem, 11vw, 3.35rem);
    line-height: 1.05;
  }

  .destination-grid {
    grid-auto-rows: 304px;
  }

  .route-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .route-map-card,
  .brand-quote-card,
  .form-panel,
  .live-summary,
  .testimonial-card {
    border-radius: 20px;
  }

  .leaflet-map {
    min-height: 360px;
    border-radius: 16px;
  }

  .journey-title-row {
    grid-template-columns: 1fr;
  }
}

/* Homepage luxury redesign */
:root {
  --ivory: oklch(94.8% 0.021 78);
  --ivory-2: oklch(97.4% 0.017 84);
  --cream: oklch(91.5% 0.033 77);
  --sand: oklch(81.8% 0.063 74);
  --terracotta: oklch(51.5% 0.115 43);
  --terracotta-dark: oklch(38% 0.095 42);
  --sage: oklch(52% 0.044 129);
  --espresso: oklch(23.5% 0.029 54);
  --ink: oklch(18.5% 0.018 55);
  --muted: oklch(44% 0.026 58);
  --line: oklch(23.5% 0.029 54 / 0.14);
  --paper: oklch(97.4% 0.017 84 / 0.78);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 42px oklch(27% 0.037 49 / 0.09), 0 48px 110px oklch(27% 0.037 49 / 0.10);
}

body {
  color: var(--espresso);
  background:
    radial-gradient(circle at 8% -8%, oklch(51.5% 0.115 43 / 0.12), transparent 34rem),
    linear-gradient(180deg, var(--ivory-2), var(--ivory) 42%, oklch(92.5% 0.033 78));
  font-family: "Manrope", "Plus Jakarta Sans", Arial, sans-serif;
}

.brand,
.footer-brand,
.home-page h1,
.home-page h2,
.home-page h3,
.home-page .serif-accent-italic {
  font-family: "Marcellus", "Playfair Display", Georgia, serif;
}

.home-page {
  --home-radius: 24px;
  --home-radius-lg: 34px;
  --home-card: oklch(97.4% 0.017 84 / 0.82);
  --home-shadow: 0 16px 40px oklch(27% 0.037 49 / 0.08), 0 40px 90px oklch(27% 0.037 49 / 0.07);
  overflow-x: hidden;
  background:
    linear-gradient(180deg, oklch(97.4% 0.017 84 / 0.72), transparent 520px),
    radial-gradient(circle at 92% 34%, oklch(52% 0.044 129 / 0.13), transparent 28rem);
}

.home-page p {
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.78;
}

.home-page .section {
  padding: clamp(86px, 9vw, 144px) 0;
}

.section-container {
  width: min(1180px, calc(100% - 48px));
}

.section-label,
.home-page .eyebrow {
  color: var(--terracotta-dark);
  font-family: "Manrope", "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.home-page .section-head {
  max-width: 820px;
  margin-bottom: clamp(32px, 4vw, 54px);
}

.home-page .section-head h2,
.home-page .map-layout h2,
.home-page .heritage-copy h2,
.home-page .final-cta h2,
.planning-copy h2,
.trust-intro h2,
.brand-intro-copy h2 {
  font-size: clamp(2.45rem, 5.3vw, 5.45rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.btn-legacy,
.btn-ghost {
  border-radius: 999px;
  min-height: 52px;
  padding: 15px 24px;
  font-weight: 800;
  box-shadow: none;
  transition:
    transform 420ms var(--ease),
    border-color 420ms var(--ease),
    color 420ms var(--ease),
    background-color 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.btn-legacy {
  background: var(--terracotta);
  color: var(--ivory-2);
}

.btn-legacy:hover,
.btn-legacy:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px oklch(29% 0.04 50 / 0.16);
}

.btn-ghost {
  background: oklch(97.4% 0.017 84 / 0.84);
  border-color: oklch(23.5% 0.029 54 / 0.16);
  color: var(--espresso);
}

.nav-shell {
  width: min(1140px, calc(100% - 36px));
  background: oklch(21% 0.024 54 / 0.76);
  border-color: oklch(97.4% 0.017 84 / 0.22);
}

.home-hero-v2 {
  min-height: clamp(720px, 94dvh, 960px);
}

.home-hero-v2 .hero-media img {
  object-position: center 48%;
  transform: scale(1.02);
}

.home-hero-v2 .hero-shade {
  background:
    linear-gradient(90deg, oklch(16% 0.018 55 / 0.90), oklch(16% 0.018 55 / 0.50) 48%, oklch(16% 0.018 55 / 0.72)),
    linear-gradient(180deg, oklch(16% 0.018 55 / 0.12), oklch(16% 0.018 55 / 0.80));
}

.home-hero-v2 .hero-content {
  padding-bottom: clamp(68px, 8vw, 108px);
}

.home-hero-v2 h1 {
  max-width: 900px;
  font-size: clamp(3.65rem, 7.8vw, 8.2rem);
  font-weight: 400;
  line-height: 0.94;
  overflow-wrap: break-word;
}

.home-hero-v2 .hero-copy {
  max-width: 680px;
  color: oklch(97.4% 0.017 84 / 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.brand-intro-section {
  padding-top: clamp(96px, 10vw, 160px);
}

.brand-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(42px, 7vw, 98px);
  align-items: center;
}

.brand-intro-copy {
  max-width: 640px;
}

.brand-intro-copy p:not(.section-label) {
  margin: 20px 0 0;
  color: oklch(38% 0.027 56);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.brand-intro-media {
  position: relative;
  min-height: clamp(520px, 54vw, 680px);
}

.intro-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--home-radius-lg);
  box-shadow: var(--home-shadow);
}

.intro-photo img {
  transition: transform 950ms var(--ease);
}

.intro-photo:hover img {
  transform: scale(1.045);
}

.intro-photo-large {
  inset: 0 12% 12% 0;
}

.intro-photo-small {
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 0.82 / 1;
  border: 8px solid var(--ivory);
}

.intro-note {
  position: absolute;
  left: 7%;
  bottom: 4%;
  display: grid;
  gap: 5px;
  max-width: 240px;
  border-radius: 20px;
  padding: 18px 20px;
  background: oklch(97.4% 0.017 84 / 0.9);
  color: var(--espresso);
  box-shadow: 0 18px 45px oklch(23% 0.029 54 / 0.14);
}

.intro-note span {
  color: var(--terracotta-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-note strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.05;
}

.destinations-section {
  background: linear-gradient(180deg, transparent, oklch(86% 0.048 74 / 0.22), transparent);
  padding-bottom: clamp(70px, 6vw, 98px);
}

.route-section {
  padding-top: clamp(70px, 6vw, 98px);
}

.destination-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(250px, 25vw, 340px);
  gap: 16px;
}

.destination-card,
.destination-card:nth-child(1),
.destination-card:nth-child(2),
.destination-card:nth-child(3),
.destination-card:nth-child(4),
.destination-card:nth-child(5),
.destination-card:nth-child(6),
.destination-card:nth-child(7) {
  grid-row: span 1;
}

.destination-card {
  grid-column: span 4;
  border-radius: var(--home-radius);
  box-shadow: 0 18px 42px oklch(22% 0.026 54 / 0.13);
}

.destination-card:nth-child(1) {
  grid-column: span 5;
}

.destination-card:nth-child(2) {
  grid-column: span 3;
}

.destination-card:nth-child(3) {
  grid-column: span 4;
}

.destination-card:nth-child(7) {
  grid-column: span 12;
}

.destination-card::after {
  background:
    linear-gradient(180deg, oklch(16% 0.018 55 / 0.05), oklch(16% 0.018 55 / 0.88)),
    linear-gradient(90deg, oklch(16% 0.018 55 / 0.44), transparent 66%);
}

.destination-card-content {
  display: grid;
  gap: 9px;
  padding: clamp(22px, 2.4vw, 30px);
}

.destination-card-content .pill {
  justify-self: start;
  min-width: 0;
}

.destination-card-content h3 {
  margin: 0;
  font-weight: 400;
}

.destination-card-content p {
  max-width: 31ch;
  margin: 0;
  color: oklch(97.4% 0.017 84 / 0.92);
}

.card-link {
  margin-top: 4px;
  color: oklch(91.5% 0.033 77);
  font-size: 0.9rem;
  font-weight: 800;
}

.route-section .map-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
}

.route-examples {
  background: oklch(97.4% 0.017 84 / 0.58);
}

.route-item {
  transition: background-color 360ms var(--ease), transform 360ms var(--ease);
}

.route-item:hover {
  background: oklch(91.5% 0.033 77 / 0.52);
  transform: translateX(4px);
}

.morocco-map-wrap {
  background:
    radial-gradient(circle at 68% 28%, oklch(51.5% 0.115 43 / 0.13), transparent 14rem),
    linear-gradient(145deg, oklch(97.4% 0.017 84 / 0.9), oklch(91.5% 0.033 77 / 0.75));
}

.map-city text {
  font-family: "Manrope", "Plus Jakarta Sans", Arial, sans-serif;
}

.experience-banner {
  min-height: clamp(620px, 70vw, 820px);
}

.experience-banner .heritage-image img {
  transition: transform 1400ms var(--ease);
}

.experience-banner:hover .heritage-image img {
  transform: scale(1.035);
}

.experience-banner .heritage-copy h2 {
  max-width: 850px;
}

.signature-section {
  background:
    radial-gradient(circle at 90% 12%, oklch(52% 0.044 129 / 0.14), transparent 28rem),
    linear-gradient(180deg, oklch(97.4% 0.017 84 / 0.16), oklch(86% 0.048 74 / 0.18));
}

.journey-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.journey-card {
  grid-column: span 4;
  border-radius: var(--home-radius);
  background: var(--home-card);
  border-color: oklch(23.5% 0.029 54 / 0.10);
  box-shadow: 0 14px 38px oklch(27% 0.037 49 / 0.07);
}

.journey-card:nth-child(1),
.journey-card:nth-child(2) {
  grid-column: span 6;
}

.journey-card-media {
  aspect-ratio: 1.28 / 1;
}

.journey-card-body {
  min-height: 310px;
}

.journey-card h3 {
  font-weight: 400;
}

.planning-section {
  background:
    linear-gradient(180deg, transparent, oklch(97.4% 0.017 84 / 0.68)),
    radial-gradient(circle at 10% 10%, oklch(51.5% 0.115 43 / 0.10), transparent 24rem);
}

.planning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.planning-copy {
  position: sticky;
  top: 120px;
}

.planning-copy p:not(.section-label) {
  max-width: 560px;
}

.planning-steps {
  display: grid;
  gap: 14px;
}

.planning-step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid oklch(23.5% 0.029 54 / 0.11);
  border-radius: var(--home-radius);
  padding: clamp(22px, 3vw, 32px);
  background: oklch(97.4% 0.017 84 / 0.72);
  box-shadow: 0 12px 34px oklch(27% 0.037 49 / 0.055);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), background-color 420ms var(--ease);
}

.planning-step:hover {
  transform: translateY(-4px);
  background: oklch(97.4% 0.017 84 / 0.92);
  box-shadow: var(--home-shadow);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--ivory-2);
  font-weight: 800;
}

.planning-step h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 400;
}

.planning-step p {
  margin: 0;
}

.trust-section {
  padding-top: clamp(76px, 8vw, 120px);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.trust-intro h2 {
  max-width: 620px;
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  border-radius: var(--home-radius);
  padding: clamp(24px, 3vw, 34px);
  background: oklch(27% 0.037 49);
  color: var(--ivory-2);
  box-shadow: var(--home-shadow);
}

.testimonial-card:nth-child(2) {
  background: var(--terracotta-dark);
}

.testimonial-card:nth-child(3) {
  background: oklch(35% 0.035 127);
}

.testimonial-card p {
  margin: 0;
  color: oklch(97.4% 0.017 84 / 0.9);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  margin-top: 22px;
}

.testimonial-card strong {
  color: var(--ivory-2);
}

.testimonial-card span {
  color: oklch(91.5% 0.033 77 / 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.final-cta-inner {
  background:
    linear-gradient(105deg, oklch(21% 0.024 54 / 0.96), oklch(21% 0.024 54 / 0.72) 48%, oklch(21% 0.024 54 / 0.36)),
    url("https://images.unsplash.com/photo-1624804823268-7d5454caa8c8?auto=format&fit=crop&w=1800&q=82") center/cover;
}

@media (max-width: 1080px) {
  .brand-intro-layout,
  .route-section .map-layout,
  .planning-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .planning-copy {
    position: static;
  }

  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 320px;
  }

  .destination-card,
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(3),
  .destination-card:nth-child(4),
  .destination-card:nth-child(5),
  .destination-card:nth-child(6),
  .destination-card:nth-child(7) {
    grid-column: auto;
  }

  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card,
  .journey-card:nth-child(1),
  .journey-card:nth-child(2) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section-container {
    width: min(680px, calc(100% - 32px));
  }

  .home-page .section {
    padding: 72px 0;
  }

  .home-hero-v2 {
    min-height: clamp(660px, 86dvh, 780px);
  }

  .home-hero-v2 h1 {
    font-size: clamp(2.65rem, 10vw, 4.1rem);
    line-height: 1.02;
  }

  .brand-intro-media {
    min-height: 520px;
  }

  .intro-photo-large {
    inset: 0 0 18% 0;
  }

  .intro-photo-small {
    width: 46%;
  }

  .destination-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-auto-rows: 310px;
  }

  .planning-step {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 12px;
  }
}

@media (max-width: 520px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    inset: 20px 0 auto;
  }

  .nav-shell {
    width: auto;
    max-width: none;
    margin-inline: 12px;
    padding-right: 58px;
  }

  .brand {
    max-width: calc(100% - 70px);
    font-size: 0.92rem;
  }

  .menu-toggle {
    z-index: 2;
    right: 8px;
  }

  .home-page,
  .home-page section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section-container,
  .home-hero-v2 .hero-content {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-page .section-head h2,
  .home-page .map-layout h2,
  .home-page .heritage-copy h2,
  .home-page .final-cta h2,
  .planning-copy h2,
  .trust-intro h2,
  .brand-intro-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    line-height: 1.04;
  }

  .home-hero-v2 .hero-content {
    margin-inline: 0;
    padding-bottom: 48px;
  }

  .home-hero-v2 h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 8.4vw, 2.9rem);
    line-height: 1.08;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .home-hero-v2 .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .brand-intro-media {
    min-height: 420px;
  }

  .intro-note {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: none;
  }

  .intro-photo-small {
    display: none;
  }

  .destination-grid {
    grid-auto-rows: 292px;
  }

  .journey-card-media {
    min-height: 230px;
  }

  .planning-step,
  .testimonial-card {
    border-radius: 20px;
  }
}

/* Final Impeccable homepage overrides */
.impeccable-home .section-container,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.impeccable-home .section {
  padding: clamp(96px, 9vw, 140px) 0;
}

.impeccable-home .section-head h2,
.impeccable-home .brand-intro-copy h2,
.impeccable-home .route-copy h2,
.impeccable-home .build-tour-copy h2,
.impeccable-home .experience-lead h2,
.impeccable-home .planning-copy h2,
.impeccable-home .trust-intro h2,
.impeccable-home .final-cta h2 {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.55rem, 5.15vw, 5.45rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero-v3 {
  min-height: clamp(720px, 94dvh, 960px);
}

.home-hero-v3 .hero-shade {
  background:
    linear-gradient(90deg, oklch(14.5% 0.018 55 / 0.92), oklch(14.5% 0.018 55 / 0.58) 48%, oklch(14.5% 0.018 55 / 0.70)),
    linear-gradient(180deg, oklch(14.5% 0.018 55 / 0.12), oklch(14.5% 0.018 55 / 0.83));
}

.home-hero-v3 h1 {
  max-width: 980px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(3.55rem, 6.4vw, 6.9rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.home-hero-v3 .hero-copy {
  max-width: 700px;
  color: oklch(97.2% 0.018 82 / 0.9);
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
}

.hero-trust-line {
  margin: 22px 0 0;
  color: oklch(93.2% 0.032 76 / 0.88) !important;
  font-size: 0.94rem !important;
  font-weight: 800;
}

.brand-intro-layout,
.map-layout,
.planning-layout,
.trust-layout,
.experience-layout {
  display: grid;
  gap: clamp(34px, 6vw, 84px);
}

.brand-intro-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  align-items: center;
}

.map-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
}

.planning-layout,
.experience-layout,
.trust-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
}

.build-tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.08fr) minmax(260px, 0.54fr);
  gap: 22px;
  align-items: start;
}

.brand-quote-card,
.route-map-card,
.form-panel,
.live-summary,
.journey-card,
.planning-step,
.testimonial-card {
  border: 1px solid oklch(23.5% 0.029 54 / 0.12);
  box-shadow: 0 22px 54px oklch(24% 0.032 50 / 0.11), 0 54px 120px oklch(24% 0.032 50 / 0.08);
}

.brand-quote-card {
  border-radius: 34px;
  padding: clamp(30px, 4vw, 48px);
  background: linear-gradient(145deg, oklch(97.2% 0.018 82 / 0.94), oklch(91% 0.034 76 / 0.60));
}

.brand-quote-card p {
  margin: 0;
  color: var(--espresso);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.18;
}

.brand-quote-card div {
  display: grid;
  gap: 4px;
  margin-top: 34px;
}

.brand-quote-card span {
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(255px, 24vw, 340px);
  gap: 16px;
}

.destination-card,
.destination-card:nth-child(1),
.destination-card:nth-child(2),
.destination-card:nth-child(3),
.destination-card:nth-child(4),
.destination-card:nth-child(5),
.destination-card:nth-child(6),
.destination-card:nth-child(7) {
  grid-row: span 1;
}

.destination-card {
  grid-column: span 4;
  border-radius: 26px;
}

.destination-card:nth-child(1),
.destination-card:nth-child(8) {
  grid-column: span 5;
}

.destination-card:nth-child(2),
.destination-card:nth-child(6),
.destination-card:nth-child(11) {
  grid-column: span 3;
}

.destination-card:nth-child(12) {
  grid-column: span 6;
}

.destination-card::after {
  background:
    linear-gradient(180deg, oklch(14.5% 0.018 55 / 0.04), oklch(14.5% 0.018 55 / 0.90)),
    linear-gradient(90deg, oklch(14.5% 0.018 55 / 0.50), transparent 68%);
}

.route-item {
  width: 100%;
  grid-template-columns: 86px 1fr;
  border: 1px solid oklch(23.5% 0.029 54 / 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  background: oklch(97.2% 0.018 82 / 0.64);
  text-align: left;
}

.route-item.active,
.route-item:hover {
  border-color: oklch(51.5% 0.115 43 / 0.38);
  background: oklch(93.2% 0.032 76 / 0.72);
}

.route-map-card {
  overflow: hidden;
  border-radius: 34px;
  padding: 14px;
  background: oklch(97.2% 0.018 82);
}

.leaflet-map {
  min-height: clamp(420px, 52vw, 620px);
  border-radius: 24px;
  overflow: hidden;
}

.luxury-map-marker span {
  width: 18px;
  height: 18px;
  display: block;
  border: 4px solid var(--ivory-2);
  border-radius: 999px;
  background: var(--terracotta);
}

.build-tour-section {
  background: linear-gradient(180deg, oklch(24% 0.032 50), oklch(20.5% 0.026 54));
  color: var(--ivory-2);
}

.build-tour-copy,
.build-tour-copy h2,
.build-tour-copy .section-label,
.build-tour-copy p,
.form-group-title h3,
.live-summary h3 {
  color: var(--ivory-2) !important;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-panel,
.live-summary {
  border-color: oklch(97.2% 0.018 82 / 0.15);
  border-radius: 24px;
  padding: clamp(20px, 2.4vw, 30px);
  background: oklch(97.2% 0.018 82 / 0.08);
}

.build-tour-form label,
.build-tour-form legend {
  display: grid;
  gap: 8px;
  color: oklch(97.2% 0.018 82 / 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.build-tour-form fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.build-tour-form input,
.build-tour-form textarea {
  width: 100%;
  border: 1px solid oklch(97.2% 0.018 82 / 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--espresso);
  background: oklch(97.2% 0.018 82 / 0.94);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-pill {
  display: inline-flex !important;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid oklch(97.2% 0.018 82 / 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  color: oklch(97.2% 0.018 82 / 0.86);
  background: oklch(97.2% 0.018 82 / 0.08);
}

.choice-pill input:checked + span {
  border-color: var(--sand);
  color: var(--espresso);
  background: var(--sand);
}

.live-summary,
.build-tour-copy,
.experience-lead,
.planning-copy {
  position: sticky;
  top: 120px;
}

.live-summary dl {
  display: grid;
  gap: 14px;
}

.live-summary dt {
  color: oklch(93.2% 0.032 76 / 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-summary dd {
  margin: 4px 0 0;
  color: var(--ivory-2);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.experience-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 22px;
  color: var(--ivory-2);
  background: var(--espresso);
}

.experience-card:nth-child(3),
.experience-card:nth-child(8) {
  min-height: 310px;
}

.experience-card img {
  position: absolute;
  inset: 0;
  transition: transform 820ms var(--ease);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, oklch(14.5% 0.018 55 / 0.88));
}

.experience-card:hover img {
  transform: scale(1.06);
}

.experience-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.experience-card h3,
.experience-card p {
  color: var(--ivory-2);
}

.journey-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.journey-card {
  grid-column: span 4;
  border-radius: 26px;
  background: oklch(97.2% 0.018 82 / 0.88);
}

.journey-card:nth-child(1),
.journey-card:nth-child(2) {
  grid-column: span 6;
}

.journey-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.journey-title-row > span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--terracotta-dark);
  background: oklch(81.8% 0.063 74 / 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.planning-steps {
  position: relative;
}

.planning-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: oklch(23.5% 0.029 54 / 0.12);
}

.planning-step {
  position: relative;
  z-index: 1;
  grid-template-columns: 72px 1fr;
  border-radius: 24px;
  background: oklch(97.2% 0.018 82 / 0.88);
}

.trust-section {
  background: oklch(20.5% 0.026 54);
}

.trust-intro h2,
.trust-intro .section-label {
  color: var(--ivory-2);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-points span {
  border: 1px solid oklch(97.2% 0.018 82 / 0.14);
  border-radius: 18px;
  padding: 16px;
  color: oklch(97.2% 0.018 82 / 0.86);
  background: oklch(97.2% 0.018 82 / 0.06);
  font-weight: 800;
}

.testimonial-card p {
  color: var(--ivory-2);
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.site-footer {
  padding: clamp(56px, 7vw, 86px) 0;
  background: oklch(18.5% 0.018 55);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 0.9fr) minmax(230px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-whatsapp {
  justify-self: start;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ivory-2) !important;
  background: var(--terracotta);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .brand-intro-layout,
  .map-layout,
  .build-tour-layout,
  .experience-layout,
  .planning-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .build-tour-copy,
  .experience-lead,
  .planning-copy,
  .live-summary {
    position: static;
  }

  .destination-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card,
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(6),
  .destination-card:nth-child(8),
  .destination-card:nth-child(11),
  .destination-card:nth-child(12),
  .journey-card,
  .journey-card:nth-child(1),
  .journey-card:nth-child(2) {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .impeccable-home .section-container,
  .footer-inner {
    width: min(680px, calc(100% - 32px));
  }

  .impeccable-home .section {
    padding: 72px 0;
  }

  .home-hero-v3 {
    min-height: clamp(680px, 86dvh, 800px);
  }

  .form-grid,
  .experience-grid,
  .destination-grid,
  .journey-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .planning-steps::before {
    display: none;
  }

  .planning-step {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .impeccable-home .section {
    padding: 64px 0;
  }

  .home-hero-v3 {
    min-height: clamp(690px, 82dvh, 760px);
  }

  .home-hero-v3 h1 {
    font-size: clamp(2.2rem, 8.9vw, 2.95rem);
    line-height: 1.08;
    text-wrap: wrap;
  }

  .home-hero-v3 .hero-content {
    width: 100%;
    max-width: 100vw;
    padding-top: 132px;
    padding-bottom: 42px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .impeccable-home .section-head h2,
  .impeccable-home .brand-intro-copy h2,
  .impeccable-home .route-copy h2,
  .impeccable-home .build-tour-copy h2,
  .impeccable-home .experience-lead h2,
  .impeccable-home .planning-copy h2,
  .impeccable-home .trust-intro h2,
  .impeccable-home .final-cta h2 {
    font-size: clamp(2.18rem, 11vw, 3.35rem);
    line-height: 1.05;
  }

  .destination-grid {
    grid-auto-rows: 304px;
  }

  .route-item,
  .journey-title-row {
    grid-template-columns: 1fr;
  }

  .leaflet-map {
    min-height: 360px;
  }
}

/* Impeccable Journeys page */
.journeys-page {
  --journey-container: 1180px;
  --journey-surface: oklch(97.2% 0.018 82 / 0.88);
  --journey-border: oklch(23.5% 0.029 54 / 0.12);
  --journey-shadow: 0 22px 54px oklch(24% 0.032 50 / 0.11), 0 54px 120px oklch(24% 0.032 50 / 0.08);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 90% 8%, oklch(52% 0.044 129 / 0.11), transparent 30rem),
    linear-gradient(180deg, var(--ivory-2), oklch(93.8% 0.025 78));
  overflow-x: hidden;
}

.journeys-page .section-container {
  width: min(var(--journey-container), calc(100% - 48px));
  margin-inline: auto;
}

.journeys-page .section {
  padding: clamp(86px, 8vw, 132px) 0;
}

.journeys-page h1,
.journeys-page h2,
.journeys-page h3 {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.journeys-page p {
  color: oklch(43% 0.026 58);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.78;
}

.journeys-hero {
  min-height: clamp(680px, 78dvh, 860px);
}

.journeys-hero::after {
  background:
    linear-gradient(90deg, oklch(14.5% 0.018 55 / 0.90), oklch(14.5% 0.018 55 / 0.52) 52%, oklch(14.5% 0.018 55 / 0.68)),
    linear-gradient(180deg, oklch(14.5% 0.018 55 / 0.10), oklch(14.5% 0.018 55 / 0.78));
}

.journeys-hero > img {
  object-position: center 56%;
  transform: scale(1.02);
}

.journeys-hero .page-hero-copy {
  width: min(960px, calc(100% - 48px));
  padding-bottom: clamp(66px, 8vw, 108px);
}

.journeys-hero h1 {
  max-width: 890px;
  color: var(--ivory-2);
  font-size: clamp(3.55rem, 7vw, 7.4rem);
  line-height: 1;
  text-wrap: balance;
}

.journeys-hero p:not(.eyebrow):not(.hero-trust-line) {
  max-width: 680px;
  color: oklch(97.2% 0.018 82 / 0.9);
}

.journeys-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.journeys-intro h2,
.journey-filter-head h2,
.journey-map-copy h2,
.choosing-section h2,
.journeys-cta-card h2 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
  line-height: 1.03;
  text-wrap: balance;
}

.intro-trust-points {
  display: grid;
  gap: 12px;
}

.intro-trust-points span {
  border: 1px solid var(--journey-border);
  border-radius: 20px;
  padding: 18px 20px;
  background: var(--journey-surface);
  box-shadow: 0 14px 38px oklch(24% 0.032 50 / 0.06);
  color: var(--espresso);
  font-weight: 800;
}

.featured-journey-section {
  padding-top: 0;
}

.featured-journey-card {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  overflow: hidden;
  border: 1px solid var(--journey-border);
  border-radius: 34px;
  background: var(--journey-surface);
  box-shadow: var(--journey-shadow);
}

.featured-journey-media {
  min-height: 470px;
  overflow: hidden;
}

.featured-journey-media img,
.journey-archive-media img {
  transition: transform 820ms var(--ease), filter 820ms var(--ease);
}

.featured-journey-card:hover img,
.journey-archive-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.05);
}

.featured-journey-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(30px, 5vw, 64px);
}

.featured-journey-copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.9rem);
  line-height: 1;
}

.journey-route {
  margin: 0;
  color: var(--terracotta-dark) !important;
  font-weight: 800;
}

.journey-filter-section {
  background:
    linear-gradient(180deg, transparent, oklch(87% 0.044 74 / 0.26), transparent);
}

.journey-filter-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.filter-chip,
.journey-map-selector {
  border: 1px solid var(--journey-border);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--espresso);
  background: oklch(97.2% 0.018 82 / 0.66);
  font-weight: 800;
  transition: transform 280ms var(--ease), background-color 280ms var(--ease), color 280ms var(--ease), border-color 280ms var(--ease);
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active,
.journey-map-selector:hover,
.journey-map-selector:focus-visible,
.journey-map-selector.active {
  transform: translateY(-2px);
  border-color: var(--terracotta);
  color: var(--ivory-2);
  background: var(--terracotta);
}

.journey-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journey-archive-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--journey-border);
  border-radius: 26px;
  background: var(--journey-surface);
  box-shadow: 0 16px 42px oklch(24% 0.032 50 / 0.08);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.journey-archive-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--journey-shadow);
}

.journey-archive-card > a {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.journey-archive-media {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: var(--sand);
}

.journey-archive-media span {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--espresso);
  background: oklch(97.2% 0.018 82 / 0.88);
  font-size: 0.8rem;
  font-weight: 800;
}

.journey-archive-body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
}

.journey-archive-body h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.35vw, 2.2rem);
  line-height: 1.08;
}

.journey-archive-body .section-label {
  margin: 0;
  font-size: 0.72rem;
}

.journey-archive-body p {
  margin: 0;
}

.journey-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.journey-map-selectors {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.journey-map-selector {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  border-radius: 18px;
  text-align: left;
}

.journey-map-selector span {
  color: inherit;
  opacity: 0.82;
}

.choosing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.choosing-card {
  border: 1px solid var(--journey-border);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--journey-surface);
  box-shadow: 0 14px 38px oklch(24% 0.032 50 / 0.06);
}

.choosing-card span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: var(--ivory-2);
  background: var(--espresso);
  font-weight: 800;
}

.choosing-card h3 {
  margin: 22px 0 10px;
  font-size: 1.55rem;
}

.choosing-card p {
  margin: 0;
}

.journeys-cta-section {
  padding-top: 0;
}

.journeys-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 74px);
  color: var(--ivory-2);
  background:
    linear-gradient(105deg, oklch(16% 0.018 55 / 0.96), oklch(16% 0.018 55 / 0.74) 50%, oklch(16% 0.018 55 / 0.38)),
    url("https://images.unsplash.com/photo-1624804823268-7d5454caa8c8?auto=format&fit=crop&w=1900&q=84") center/cover;
  box-shadow: var(--journey-shadow);
}

.journeys-cta-card h2,
.journeys-cta-card .section-label,
.journeys-cta-card p {
  color: var(--ivory-2) !important;
}

.journeys-cta-card p {
  max-width: 640px;
}

.journeys-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--ivory-2);
  background: var(--terracotta);
  box-shadow: 0 18px 46px oklch(24% 0.032 50 / 0.24);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .journeys-intro-grid,
  .featured-journey-card,
  .journey-map-layout,
  .journeys-cta-card {
    grid-template-columns: 1fr;
  }

  .journey-archive-grid,
  .choosing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-journey-media {
    min-height: 390px;
  }
}

@media (max-width: 820px) {
  .journeys-page .section-container {
    width: min(680px, calc(100% - 32px));
  }

  .journeys-page .section {
    padding: 72px 0;
  }

  .journeys-hero {
    min-height: clamp(620px, 82dvh, 760px);
  }

  .journeys-hero .page-hero-copy {
    width: calc(100% - 32px);
    padding-bottom: 56px;
  }

  .journeys-hero h1 {
    font-size: clamp(2.7rem, 11vw, 4.1rem);
    line-height: 1.04;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .journey-archive-grid,
  .choosing-grid {
    grid-template-columns: 1fr;
  }

  .journey-map-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .journeys-page .section {
    padding: 64px 0;
  }

  .journeys-hero {
    min-height: clamp(640px, 82dvh, 730px);
  }

  .journeys-hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }

  .featured-journey-media {
    min-height: 300px;
  }

  .featured-journey-copy,
  .journey-archive-body,
  .journeys-cta-card {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 14px;
    max-width: calc(100% - 24px);
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.88rem;
  }
}

/* Final Journeys filter responsiveness override */
.journeys-page .journey-filter-head {
  max-width: var(--journey-container);
}

.journeys-page .route-finder-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid oklch(72% 0.048 69 / 0.32);
  border-radius: 34px;
  background:
    linear-gradient(135deg, oklch(98% 0.017 86 / 0.96), oklch(94.8% 0.031 79 / 0.82)),
    var(--journey-surface);
  box-shadow:
    0 30px 90px oklch(24% 0.032 50 / 0.09),
    inset 0 1px 0 oklch(100% 0 0 / 0.72);
}

.journeys-page .route-finder-copy,
.journeys-page .route-finder-controls,
.journeys-page .filter-chips {
  min-width: 0;
}

.journeys-page .route-finder-controls {
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid oklch(76% 0.044 72 / 0.26);
  border-radius: 26px;
  background: oklch(99% 0.011 86 / 0.54);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.72);
}

.journeys-page .filter-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  overflow: visible;
  padding: 0;
}

.journeys-page .filter-chip {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  gap: 10px;
  padding: 9px 10px 9px 15px;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0 10px 24px oklch(24% 0.032 50 / 0.045);
}

.journeys-page .filter-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journeys-page .filter-chip small {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .journeys-page .route-finder-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .journeys-page .route-finder-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .journeys-page .route-finder-controls {
    padding: 14px;
    border-radius: 22px;
  }

  .journeys-page .filter-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .journeys-page .route-finder-panel {
    padding: 16px;
  }

  .journeys-page .route-finder-controls {
    padding: 12px;
  }

  .journeys-page .filter-chips {
    grid-template-columns: 1fr;
  }
}

/* Local brand assets */
.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;
}

.brand-with-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 15vw, 218px);
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid oklch(87% 0.044 74 / 0.34);
  border-radius: 999px;
   background: oklch(96.8% 0.02 84 / 0.94);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.68);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 34px;
  object-fit: contain;
  background-color: transparent;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: min(360px, 100%);
  padding: 14px 18px;
  border: 1px solid oklch(97.2% 0.018 82 / 0.16);
  border-radius: 22px;
  background: oklch(96.8% 0.02 84 / 0.96);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.72);
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

.home-hero-v3 .hero-media img[src*="IMG-20260506"] {
  object-position: 70% 32%;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
}

@media (max-width: 820px) {
  .brand-with-logo {
    width: 178px;
    padding: 6px 9px;
  }

  .brand-logo {
    height: 30px;
    color: transparent;
  }
}

@media (max-width: 520px) {
  .brand-with-logo {
    width: 142px;
    padding: 5px 8px;
  }

  .brand-logo {
    height: 26px;
  }

  .home-hero-v3 .hero-media img[src*="IMG-20260506"] {
    object-position: 70% 38%;
  }
}

/* Page additions */
.brand-with-logo {
  width: clamp(142px, 14vw, 208px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  height: 42px;
  filter:
    drop-shadow(0 1px 0 oklch(97.2% 0.018 82 / 0.42))
    drop-shadow(0 14px 24px oklch(8% 0.02 55 / 0.42));
}

.footer-logo-link {
  width: min(330px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-logo {
  max-height: 96px;
  filter:
    drop-shadow(0 1px 0 oklch(97.2% 0.018 82 / 0.34))
    drop-shadow(0 20px 34px oklch(8% 0.02 55 / 0.48));
}

.footer-link-groups {
  display: grid;
  gap: 22px;
}

.footer-links span {
  flex-basis: 100%;
  color: oklch(97.2% 0.018 82 / 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal-links {
  padding-top: 18px;
  border-top: 1px solid oklch(97.2% 0.018 82 / 0.13);
}

.date-range input[type="date"] {
  min-height: 54px;
  font-variant-numeric: tabular-nums;
}

.date-range input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
}

.related-tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-tour-grid .tour-card,
.related-tour-grid .tour-card:first-child,
.related-tour-grid .tour-card:nth-child(2),
.related-tour-grid .tour-card:nth-child(3) {
  grid-column: auto;
  min-width: 0;
}

.related-tour-grid .tour-card-media {
  aspect-ratio: 1.35 / 1;
}

.related-tour-grid .tour-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-wrap: balance;
}

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

  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: relative;
    top: auto;
  }

  .brand-logo {
    height: 36px;
  }
}

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

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .brand-with-logo {
    width: 150px;
  }

  .brand-logo {
    height: 30px;
  }

  .footer-logo-link {
    width: min(280px, 100%);
  }

  .language-switcher {
    left: 10px;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .language-toggle {
    width: 44px;
    height: 44px;
  }

  .language-menu {
    width: min(168px, calc(100vw - 24px));
  }
}

/* SEO route pages */
.seo-page {
  background: var(--sand-50);
}

.seo-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 112px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-breadcrumb a {
  color: inherit;
}

.seo-breadcrumb a:hover {
  color: var(--terracotta);
}

.seo-detail-hero {
  position: relative;
  min-height: min(720px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.seo-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.seo-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 8, 0.18), rgba(18, 12, 8, 0.84)),
    linear-gradient(90deg, rgba(18, 12, 8, 0.64), rgba(18, 12, 8, 0.08));
}

.seo-detail-copy {
  position: relative;
  z-index: 1;
  padding-block: clamp(96px, 16vw, 164px) clamp(58px, 9vw, 104px);
  max-width: 920px;
}

.seo-detail-copy h1,
.seo-page-intro h1 {
  margin: 0 0 22px;
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.seo-detail-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.75;
}

.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.seo-two-column h2,
.seo-panel h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  letter-spacing: 0;
}

.seo-two-column p,
.seo-panel p,
.seo-panel li {
  color: var(--muted);
  line-height: 1.8;
}

.seo-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
}

.seo-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.seo-link-grid,
.seo-faq-grid,
.seo-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-link-card,
.seo-faq-card,
.seo-day-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(20px, 3vw, 30px);
}

.seo-link-card {
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.seo-link-card span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.seo-link-card small,
.seo-day-card span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.seo-faq-card h3,
.seo-day-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.seo-faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.seo-page-intro {
  padding-top: 124px;
}

@media (max-width: 960px) {
  .seo-two-column,
  .seo-link-grid,
  .seo-faq-grid,
  .seo-itinerary-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .seo-breadcrumb {
    padding-top: 96px;
    font-size: 0.72rem;
  }

  .seo-detail-hero {
    min-height: 760px;
  }

  .seo-detail-copy {
    padding-block: 116px 54px;
  }

  .seo-two-column,
  .seo-link-grid,
  .seo-faq-grid,
  .seo-itinerary-grid {
    grid-template-columns: 1fr;
  }
}

/* Final visibility and global WhatsApp overrides */
.site-header .nav-shell,
.site-header.scrolled .nav-shell {
  background:
    linear-gradient(180deg, oklch(98% 0.018 84 / 0.98), oklch(94.5% 0.03 80 / 0.94));
  border: 1px solid oklch(31% 0.026 55 / 0.18);
  box-shadow:
    0 18px 48px oklch(20% 0.02 55 / 0.16),
    inset 0 1px 0 oklch(100% 0 0 / 0.78);
  backdrop-filter: blur(18px);
}

.site-header .nav-links a,
.site-header .brand,
.site-header .menu-toggle {
  color: var(--espresso);
}

.site-header .nav-links a.active,
.site-header .nav-links a:hover {
  color: var(--terracotta-dark);
}

.site-header .menu-toggle span {
  background: var(--espresso);
}

.brand-logo {
  filter:
    drop-shadow(0 1px 0 oklch(100% 0 0 / 0.72))
    drop-shadow(0 10px 18px oklch(24% 0.028 55 / 0.18));
}

.site-footer {
  color: var(--espresso);
  background:
    radial-gradient(circle at 8% 0%, oklch(72% 0.084 47 / 0.18), transparent 30rem),
    linear-gradient(180deg, oklch(96.5% 0.022 83), oklch(91.5% 0.036 78));
  border-top: 1px solid oklch(31% 0.026 55 / 0.13);
}

.site-footer,
.site-footer a,
.site-footer span,
.site-footer strong {
  color: var(--espresso);
}

.site-footer p,
.footer-inner p,
.footer-contact span,
.footer-links span {
  color: oklch(39% 0.026 58 / 0.74);
}

.footer-links,
.footer-contact {
  border-color: oklch(31% 0.026 55 / 0.14);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--terracotta-dark);
}

.footer-logo {
  filter:
    drop-shadow(0 1px 0 oklch(100% 0 0 / 0.74))
    drop-shadow(0 18px 30px oklch(24% 0.028 55 / 0.18));
}

.footer-whatsapp,
.floating-whatsapp {
  color: var(--ivory-2) !important;
  background: linear-gradient(135deg, #1f7a4b, #25d366);
  border: 1px solid oklch(96% 0.06 145 / 0.42);
  box-shadow:
    0 18px 46px oklch(34% 0.09 145 / 0.26),
    inset 0 1px 0 oklch(100% 0 0 / 0.32);
}

.floating-whatsapp {
  z-index: 70;
  gap: 10px;
}

.floating-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px oklch(100% 0 0 / 0.18);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible,
.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #17623c, #20bd5a);
}

@media (max-width: 820px) {
  .site-header .nav-links {
    background:
      linear-gradient(180deg, oklch(98% 0.018 84 / 0.99), oklch(94.5% 0.03 80 / 0.98));
    border-color: oklch(31% 0.026 55 / 0.16);
  }
}

.floating-whatsapp[data-global-whatsapp] {
  position: fixed !important;
  inset: auto max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) auto !important;
  left: auto !important;
  top: auto !important;
  z-index: 95;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .floating-whatsapp[data-global-whatsapp] {
    right: max(12px, env(safe-area-inset-right)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    max-width: calc(100vw - 24px);
  }
}

/* Final section background alignment */
body {
  background:
    radial-gradient(circle at 12% 0%, oklch(76% 0.075 47 / 0.12), transparent 32rem),
    radial-gradient(circle at 92% 12%, oklch(62% 0.05 132 / 0.11), transparent 34rem),
    linear-gradient(180deg, oklch(97.4% 0.017 84), oklch(94.3% 0.026 80));
}

.home-page,
.seo-page {
  background: oklch(96.8% 0.019 84);
}

.home-page .section,
.seo-page .section {
  overflow: clip;
}

.brand-intro-section,
.destinations-section,
.planning-section,
.featured-journey-section,
.seo-faq-section {
  background:
    linear-gradient(180deg, oklch(97.2% 0.018 84), oklch(94.4% 0.03 79));
}

.route-section,
.experiences-section,
.journey-filter-section,
.journey-map-section,
.choosing-section,
.seo-page-intro {
  background:
    radial-gradient(circle at 88% 12%, oklch(73% 0.052 78 / 0.16), transparent 28rem),
    linear-gradient(180deg, oklch(94.8% 0.026 80), oklch(97.2% 0.018 84));
}

.signature-section,
.journeys-intro,
.seo-destination-page .section:nth-of-type(even),
.seo-journey-page .section:nth-of-type(even) {
  background:
    linear-gradient(180deg, oklch(91.8% 0.037 77), oklch(96.5% 0.02 84));
}

.build-tour-section,
.trust-section,
.journeys-cta-section {
  background:
    radial-gradient(circle at 16% 12%, oklch(55% 0.06 54 / 0.22), transparent 30rem),
    linear-gradient(180deg, oklch(24% 0.032 50), oklch(19% 0.022 54));
}

.build-tour-section *,
.trust-section *,
.journeys-cta-section * {
  color-scheme: dark;
}

.build-tour-section p:not(.section-label),
.trust-section p:not(.section-label),
.journeys-cta-section p:not(.section-label) {
  color: oklch(94% 0.018 82 / 0.74);
}

.seo-page .seo-detail-hero + .section {
  background:
    linear-gradient(180deg, oklch(97.2% 0.018 84), oklch(94.4% 0.03 79));
}
