﻿:root {
  --ink: #34313d;
  --muted: #6c6975;
  --paper: #fffaf6;
  --paper-deep: #f7e9df;
  --surface: #ffffff;
  --surface-warm: #fff4eb;
  --line: #ead9cf;
  --forest: #34313d;
  --forest-soft: #4b4855;
  --teal: #ff7b1a;
  --teal-dark: #d95d00;
  --clay: #ff7b1a;
  --clay-dark: #d95d00;
  --gold: #3268d9;
  --ocean: #3268d9;
  --sage: #edf3ff;
  --rose: #fff0e7;
  --shadow-soft: 0 18px 46px rgba(52, 49, 61, 0.12);
  --shadow-strong: 0 30px 86px rgba(52, 49, 61, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id],
#home,
#plan,
#custom,
#experiences,
#why-us,
#reviews,
#faq,
#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 123, 26, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--forest);
  color: var(--surface);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(252, 251, 248, 0.12);
  background: rgba(52, 49, 61, 0.96);
  color: var(--surface);
  box-shadow: 0 12px 34px rgba(52, 49, 61, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(154px, 16vw, 204px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(252, 251, 248, 0.82);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--clay);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--clay-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252, 251, 248, 0.24);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.08);
  color: var(--surface);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 8px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  overflow: hidden;
  background: var(--forest);
  color: var(--surface);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background: var(--forest);
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: max(100%, 177.7778svh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96) 0%, rgba(52, 49, 61, 0.78) 48%, rgba(52, 49, 61, 0.28) 100%),
    linear-gradient(0deg, rgba(52, 49, 61, 0.9) 0%, rgba(52, 49, 61, 0.1) 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 72px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.destination-band .eyebrow,
.final-cta .eyebrow,
.process-section .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  color: var(--surface);
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(252, 251, 248, 0.88);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--clay);
  color: #fff;
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 123, 26, 0.45);
  color: var(--clay-dark);
}

.button-ghost {
  border-color: rgba(252, 251, 248, 0.38);
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.button-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 32px;
}

.hero-proof span {
  min-height: 78px;
  border: 1px solid rgba(252, 251, 248, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(252, 251, 248, 0.1);
  color: rgba(252, 251, 248, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-proof strong {
  display: block;
  color: var(--surface);
  font-size: 1.25rem;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(252, 251, 248, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(252, 251, 248, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  border-top: 1px solid rgba(252, 251, 248, 0.18);
  padding-top: 12px;
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: rgba(252, 251, 248, 0.74);
  font-size: 0.86rem;
}

.hero-panel strong {
  margin-top: 4px;
  color: var(--surface);
  line-height: 1.35;
}

.hero-panel-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.landing-mode .hero-video-frame {
  display: none;
}

.landing-mode .hero h1 {
  max-width: 710px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.landing-mode .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.landing-mode .hero-panel {
  align-self: stretch;
}

.planner-wrap {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 44px));
  margin: -46px auto 0;
}

.planner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 0.8fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(222, 212, 197, 0.96);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.planner-intro {
  padding: 8px 6px;
}

.planner-card h2 {
  margin: -3px 0 10px;
  color: var(--forest);
  font-size: 1.8rem;
  line-height: 1.08;
}

.planner-intro p:not(.eyebrow),
.summary-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.planner-fields {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.planner-summary {
  display: grid;
  gap: 14px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.planner-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.planner-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.planner-summary dl div:last-child {
  border-bottom: 0;
}

.planner-summary dt {
  color: var(--muted);
}

.planner-summary dd {
  max-width: 140px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.planner-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px auto 0;
}

.trust-strip article {
  position: relative;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-strip article::before {
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-light {
  padding-top: 96px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2,
.custom-copy h2,
.split-copy h2,
.review-lead h2,
.final-cta h2,
.process-inner h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.review-lead p,
.custom-copy p:not(.eyebrow),
.split-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.seo-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.seo-breadcrumbs a:hover {
  color: var(--clay-dark);
}

.seo-guide-links a,
.tour-deep-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.seo-guide-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  text-decoration: none;
}

.seo-guide-links a:hover,
.tour-deep-link:hover {
  color: var(--clay-dark);
}

.tour-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) minmax(170px, 190px);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab,
.custom-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 850;
}

.filter-tab:hover,
.custom-actions button:hover,
.filter-tab.active,
.custom-actions button.active {
  border-color: rgba(255, 123, 26, 0.42);
  background: var(--rose);
  color: var(--clay-dark);
}

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

.tour-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(19, 33, 31, 0.08);
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tour-card[hidden] {
  display: none;
}

.tour-card.is-hidden {
  display: none;
}

.tour-card:hover {
  border-color: rgba(255, 123, 26, 0.36);
  box-shadow: 0 24px 58px rgba(19, 33, 31, 0.13);
  transform: translateY(-3px);
}

.tour-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--sage);
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.tour-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(52, 49, 61, 0.86);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-meta span,
.tour-category {
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 900;
}

.card-meta span {
  background: var(--sage);
  color: var(--forest);
}

.card-meta span:nth-child(2) {
  background: var(--rose);
  color: var(--clay-dark);
}

.tour-category {
  justify-self: start;
  width: fit-content;
  background: rgba(52, 49, 61, 0.09);
  color: var(--forest);
}

.tour-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.2;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.56;
}

.tour-deep-link {
  font-size: 0.9rem;
}

.highlight-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.highlight-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 8px;
  background: var(--gold);
  content: "";
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 190px;
}

.button-card {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.88rem;
}

.price {
  color: var(--forest);
  font-size: 1.56rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.price small {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
  color: var(--muted);
}

.empty-state p {
  margin: 0;
  line-height: 1.5;
}

.custom-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding-top: 22px;
}

.custom-copy p:not(.eyebrow) {
  margin: 18px 0 22px;
  font-size: 1.06rem;
}

.custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

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

.custom-panel article {
  min-height: 256px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(52, 49, 61, 0.94), rgba(52, 49, 61, 0.78)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  box-shadow: var(--shadow-soft);
}

.custom-panel span,
.process-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(252, 251, 248, 0.28);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
}

.custom-panel strong {
  display: block;
  margin-top: 38px;
  color: var(--surface);
  font-size: 1.18rem;
}

.custom-panel p {
  margin: 12px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.destination-band {
  width: 100%;
  margin-top: 18px;
  padding: 86px max(22px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(52, 49, 61, 0.97), rgba(52, 49, 61, 0.84)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
}

.destination-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head-inverse h2 {
  max-width: 760px;
  color: var(--surface);
}

.section-head-inverse p {
  color: rgba(252, 251, 248, 0.8);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.destination-grid article {
  min-height: 226px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.destination-grid span {
  color: var(--gold);
  font-weight: 950;
}

.destination-grid h3 {
  margin: 18px 0 10px;
  color: var(--surface);
  font-size: 1.42rem;
}

.destination-grid p {
  margin: 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 104px;
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: 1.08rem;
}

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

.proof-grid article {
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.07);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest);
  font-size: 1.15rem;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.process-section {
  width: 100%;
  padding: 82px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: var(--surface);
}

.process-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.process-inner h2 {
  max-width: 780px;
  color: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 214px;
  border: 1px solid rgba(252, 251, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.process-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--surface);
  font-size: 1.18rem;
}

.process-grid p {
  margin: 10px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.review-section {
  width: 100%;
  padding: 84px max(22px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, var(--paper), var(--surface-warm));
}

.review-lead {
  max-width: 720px;
  margin-bottom: 28px;
}

.review-lead p {
  margin-top: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.review-grid article {
  min-height: 192px;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.review-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.25rem;
}

.review-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.review-slider {
  max-width: var(--container);
  margin: 18px auto 0;
}

.review-slider-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-slider-head p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.review-slider-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-slider-controls {
  display: flex;
  gap: 8px;
}

.review-slider-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(52, 49, 61, 0.2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.review-slider-button:hover,
.review-slider-button:focus-visible {
  border-color: rgba(255, 123, 26, 0.5);
  background: #ffffff;
  transform: translateY(-1px);
}

.traveler-voice-grid {
  display: grid;
  grid-auto-columns: minmax(290px, calc((100% - 32px) / 3));
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(52, 49, 61, 0.4) rgba(52, 49, 61, 0.08);
}

.traveler-review {
  display: flex;
  min-height: 324px;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(52, 49, 61, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.traveler-review-source {
  background: linear-gradient(135deg, rgba(52, 49, 61, 0.98), rgba(52, 49, 61, 0.92));
  color: var(--surface);
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card-top span:first-child {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(52, 49, 61, 0.1);
  color: var(--forest);
}

.traveler-review h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.13rem;
  line-height: 1.28;
}

.review-source-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.traveler-review blockquote {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.22;
}

.traveler-review p {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.traveler-review a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.traveler-review a:hover {
  text-decoration: underline;
}

.traveler-review-source .review-card-top,
.traveler-review-source h3,
.traveler-review-source blockquote,
.traveler-review-source p,
.traveler-review-source a {
  color: var(--surface);
}

.traveler-review-source .review-card-top span:first-child {
  background: rgba(252, 251, 248, 0.14);
  color: var(--surface);
}

.tripadvisor-panel {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
  margin: 24px auto 0;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.tripadvisor-panel h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.6rem, 3vw, 2.24rem);
  line-height: 1.08;
}

.tripadvisor-panel p:not(.eyebrow) {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.62;
}

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

.tripadvisor-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
}

.tripadvisor-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 180px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tripadvisor-gallery a:hover img {
  transform: scale(1.035);
}

.tripadvisor-gallery.tour-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.tour-carousel-viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #17151a;
  touch-action: pan-y;
}

.tour-carousel-track {
  display: flex;
  transition: transform 320ms ease;
}

.tour-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.tour-carousel-slide img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.tour-carousel-control {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d7d1c8;
  border-radius: 50%;
  background: #ffffff;
  color: #34313d;
  font: 400 2rem/1 Georgia, serif;
  cursor: pointer;
}

.tour-carousel-control:hover,
.tour-carousel-control:focus-visible {
  border-color: #ff7b1a;
  color: #ff7b1a;
}

.tour-carousel-previous {
  grid-column: 1;
  grid-row: 1;
}

.tour-carousel-next {
  grid-column: 3;
  grid-row: 1;
}

.tour-carousel-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.tour-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bbb7bc;
  cursor: pointer;
}

.tour-carousel-dot.is-active {
  width: 24px;
  border-radius: 8px;
  background: #ff7b1a;
}

.faq-section {
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 82px 22px;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96), rgba(52, 49, 61, 0.74)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  text-align: center;
}

.final-cta > div {
  max-width: 860px;
}

.final-cta h2 {
  color: var(--surface);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(252, 251, 248, 0.8);
  font-size: 1.08rem;
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.contact-cards a {
  min-height: 96px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(252, 251, 248, 0.1);
  text-decoration: none;
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 8px;
  color: var(--surface);
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: rgba(252, 251, 248, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--surface);
}

.site-footer span {
  margin-top: 4px;
}

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

.footer-links a {
  color: var(--surface);
  font-weight: 850;
}

.mobile-booking-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 32;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 16px;
  background: var(--clay);
  color: #fff;
  box-shadow: var(--shadow-strong);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-booking-bar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tour-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.tour-dialog::backdrop {
  background: rgba(7, 15, 13, 0.64);
}

.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(19, 33, 31, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 950;
}

.dialog-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: var(--sage);
}

.dialog-body {
  padding: 28px;
}

.dialog-body h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.dialog-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.dialog-meta span {
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--sage);
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.dialog-columns section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.dialog-columns h3 {
  margin: 0 0 12px;
  color: var(--forest);
}

.dialog-columns ul,
.dialog-columns ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.48;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(360px, calc(100vw - 36px));
  border-radius: 8px;
  padding: 13px 15px;
  background: var(--forest);
  color: var(--surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-inner,
  .planner-card,
  .custom-section,
  .split-section,
  .tripadvisor-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    align-self: start;
  }

  .planner-summary {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(280px, calc((100% - 16px) / 2));
  }

  .custom-panel,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    border: 1px solid rgba(252, 251, 248, 0.16);
    border-radius: 8px;
    padding: 10px;
    background: rgba(52, 49, 61, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: start;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-video-frame {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .hero-inner,
  .section,
  .trust-strip,
  .planner-wrap {
    width: min(100% - 28px, var(--container));
  }

  .hero-inner {
    padding: 60px 0 42px;
  }

  .hero-proof,
  .planner-grid,
  .planner-card,
  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .dialog-columns,
  .contact-cards,
  .tripadvisor-gallery,
  .tour-toolbar {
    grid-template-columns: 1fr;
  }

  .review-slider-head {
    align-items: start;
    flex-direction: column;
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(260px, 88%);
  }

  .trust-strip {
    margin-top: 14px;
  }

  .section,
  .destination-band,
  .review-section,
  .process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .tour-toolbar {
    align-items: stretch;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-tab {
    width: 100%;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .tripadvisor-gallery.tour-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 6px;
  }

  .tour-carousel-control {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  body {
    padding-bottom: 68px;
  }

  .brand-logo {
    width: 154px;
    max-height: 49px;
  }

  .hero-inner {
    width: min(100% - 24px, var(--container));
    padding-top: 44px;
  }

  .hero-video-frame {
    top: 0;
    left: 0;
    height: 48svh;
    transform: none;
  }

  .hero-media::after {
    position: absolute;
    inset: 48svh 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(52, 49, 61, 0), rgba(52, 49, 61, 0.92));
    content: "";
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .card-bottom,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof span {
    min-width: 0;
    min-height: 74px;
  }

  .button,
  .card-actions {
    width: 100%;
  }

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

  .planner-card,
  .dialog-body {
    padding: 18px;
  }

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

  .custom-panel {
    grid-template-columns: 1fr;
  }

  .dialog-media img {
    aspect-ratio: 4 / 3;
  }

  .tour-card img {
    max-height: 190px;
  }

  .tripadvisor-gallery img {
    max-height: 150px;
  }

  .mobile-booking-bar {
    display: flex;
  }

  .toast {
    bottom: 76px;
  }
}

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

﻿:root {
  --ink: #34313d;
  --muted: #6c6975;
  --paper: #fffaf6;
  --paper-deep: #f7e9df;
  --surface: #ffffff;
  --surface-warm: #fff4eb;
  --line: #ead9cf;
  --forest: #34313d;
  --forest-soft: #4b4855;
  --teal: #ff7b1a;
  --teal-dark: #d95d00;
  --clay: #ff7b1a;
  --clay-dark: #d95d00;
  --gold: #3268d9;
  --ocean: #3268d9;
  --sage: #edf3ff;
  --rose: #fff0e7;
  --shadow-soft: 0 18px 46px rgba(52, 49, 61, 0.12);
  --shadow-strong: 0 30px 86px rgba(52, 49, 61, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id],
#home,
#plan,
#custom,
#experiences,
#why-us,
#reviews,
#faq,
#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 123, 26, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--forest);
  color: var(--surface);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(252, 251, 248, 0.12);
  background: rgba(52, 49, 61, 0.96);
  color: var(--surface);
  box-shadow: 0 12px 34px rgba(52, 49, 61, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(154px, 16vw, 204px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(252, 251, 248, 0.82);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--clay);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--clay-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252, 251, 248, 0.24);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.08);
  color: var(--surface);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 8px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  overflow: hidden;
  background: var(--forest);
  color: var(--surface);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background: var(--forest);
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: max(100%, 177.7778svh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96) 0%, rgba(52, 49, 61, 0.78) 48%, rgba(52, 49, 61, 0.28) 100%),
    linear-gradient(0deg, rgba(52, 49, 61, 0.9) 0%, rgba(52, 49, 61, 0.1) 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 72px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.destination-band .eyebrow,
.final-cta .eyebrow,
.process-section .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  color: var(--surface);
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(252, 251, 248, 0.88);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--clay);
  color: #fff;
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 123, 26, 0.45);
  color: var(--clay-dark);
}

.button-ghost {
  border-color: rgba(252, 251, 248, 0.38);
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.button-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 32px;
}

.hero-proof span {
  min-height: 78px;
  border: 1px solid rgba(252, 251, 248, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(252, 251, 248, 0.1);
  color: rgba(252, 251, 248, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-proof strong {
  display: block;
  color: var(--surface);
  font-size: 1.25rem;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(252, 251, 248, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(252, 251, 248, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  border-top: 1px solid rgba(252, 251, 248, 0.18);
  padding-top: 12px;
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: rgba(252, 251, 248, 0.74);
  font-size: 0.86rem;
}

.hero-panel strong {
  margin-top: 4px;
  color: var(--surface);
  line-height: 1.35;
}

.hero-panel-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.landing-mode .hero-video-frame {
  display: none;
}

.landing-mode .hero h1 {
  max-width: 710px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.landing-mode .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.landing-mode .hero-panel {
  align-self: stretch;
}

.planner-wrap {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 44px));
  margin: -46px auto 0;
}

.planner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 0.8fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(222, 212, 197, 0.96);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.planner-intro {
  padding: 8px 6px;
}

.planner-card h2 {
  margin: -3px 0 10px;
  color: var(--forest);
  font-size: 1.8rem;
  line-height: 1.08;
}

.planner-intro p:not(.eyebrow),
.summary-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.planner-fields {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.planner-summary {
  display: grid;
  gap: 14px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.planner-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.planner-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.planner-summary dl div:last-child {
  border-bottom: 0;
}

.planner-summary dt {
  color: var(--muted);
}

.planner-summary dd {
  max-width: 140px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.planner-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px auto 0;
}

.trust-strip article {
  position: relative;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-strip article::before {
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-light {
  padding-top: 96px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2,
.custom-copy h2,
.split-copy h2,
.review-lead h2,
.final-cta h2,
.process-inner h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.review-lead p,
.custom-copy p:not(.eyebrow),
.split-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.seo-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.seo-breadcrumbs a:hover {
  color: var(--clay-dark);
}

.seo-guide-links a,
.tour-deep-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.seo-guide-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  text-decoration: none;
}

.seo-guide-links a:hover,
.tour-deep-link:hover {
  color: var(--clay-dark);
}

.tour-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) minmax(170px, 190px);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab,
.custom-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 850;
}

.filter-tab:hover,
.custom-actions button:hover,
.filter-tab.active,
.custom-actions button.active {
  border-color: rgba(255, 123, 26, 0.42);
  background: var(--rose);
  color: var(--clay-dark);
}

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

.tour-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(19, 33, 31, 0.08);
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tour-card[hidden] {
  display: none;
}

.tour-card.is-hidden {
  display: none;
}

.tour-card:hover {
  border-color: rgba(255, 123, 26, 0.36);
  box-shadow: 0 24px 58px rgba(19, 33, 31, 0.13);
  transform: translateY(-3px);
}

.tour-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--sage);
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.tour-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(52, 49, 61, 0.86);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-meta span,
.tour-category {
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 900;
}

.card-meta span {
  background: var(--sage);
  color: var(--forest);
}

.card-meta span:nth-child(2) {
  background: var(--rose);
  color: var(--clay-dark);
}

.tour-category {
  justify-self: start;
  width: fit-content;
  background: rgba(52, 49, 61, 0.09);
  color: var(--forest);
}

.tour-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.2;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.56;
}

.tour-deep-link {
  font-size: 0.9rem;
}

.highlight-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.highlight-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 8px;
  background: var(--gold);
  content: "";
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 190px;
}

.button-card {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.88rem;
}

.price {
  color: var(--forest);
  font-size: 1.56rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.price small {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
  color: var(--muted);
}

.empty-state p {
  margin: 0;
  line-height: 1.5;
}

.custom-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding-top: 22px;
}

.custom-copy p:not(.eyebrow) {
  margin: 18px 0 22px;
  font-size: 1.06rem;
}

.custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

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

.custom-panel article {
  min-height: 256px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(52, 49, 61, 0.94), rgba(52, 49, 61, 0.78)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  box-shadow: var(--shadow-soft);
}

.custom-panel span,
.process-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(252, 251, 248, 0.28);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
}

.custom-panel strong {
  display: block;
  margin-top: 38px;
  color: var(--surface);
  font-size: 1.18rem;
}

.custom-panel p {
  margin: 12px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.destination-band {
  width: 100%;
  margin-top: 18px;
  padding: 86px max(22px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(52, 49, 61, 0.97), rgba(52, 49, 61, 0.84)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
}

.destination-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head-inverse h2 {
  max-width: 760px;
  color: var(--surface);
}

.section-head-inverse p {
  color: rgba(252, 251, 248, 0.8);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.destination-grid article {
  min-height: 226px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.destination-grid span {
  color: var(--gold);
  font-weight: 950;
}

.destination-grid h3 {
  margin: 18px 0 10px;
  color: var(--surface);
  font-size: 1.42rem;
}

.destination-grid p {
  margin: 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 104px;
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: 1.08rem;
}

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

.proof-grid article {
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.07);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest);
  font-size: 1.15rem;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.process-section {
  width: 100%;
  padding: 82px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: var(--surface);
}

.process-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.process-inner h2 {
  max-width: 780px;
  color: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 214px;
  border: 1px solid rgba(252, 251, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.process-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--surface);
  font-size: 1.18rem;
}

.process-grid p {
  margin: 10px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.review-section {
  width: 100%;
  padding: 84px max(22px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, var(--paper), var(--surface-warm));
}

.review-lead {
  max-width: 720px;
  margin-bottom: 28px;
}

.review-lead p {
  margin-top: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.review-grid article {
  min-height: 192px;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.review-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.25rem;
}

.review-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.review-slider {
  max-width: var(--container);
  margin: 18px auto 0;
}

.review-slider-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-slider-head p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.review-slider-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-slider-controls {
  display: flex;
  gap: 8px;
}

.review-slider-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(52, 49, 61, 0.2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.review-slider-button:hover,
.review-slider-button:focus-visible {
  border-color: rgba(255, 123, 26, 0.5);
  background: #ffffff;
  transform: translateY(-1px);
}

.traveler-voice-grid {
  display: grid;
  grid-auto-columns: minmax(290px, calc((100% - 32px) / 3));
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(52, 49, 61, 0.4) rgba(52, 49, 61, 0.08);
}

.traveler-review {
  display: flex;
  min-height: 324px;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(52, 49, 61, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.traveler-review-source {
  background: linear-gradient(135deg, rgba(52, 49, 61, 0.98), rgba(52, 49, 61, 0.92));
  color: var(--surface);
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card-top span:first-child {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(52, 49, 61, 0.1);
  color: var(--forest);
}

.traveler-review h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.13rem;
  line-height: 1.28;
}

.review-source-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.traveler-review blockquote {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.22;
}

.traveler-review p {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.traveler-review a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.traveler-review a:hover {
  text-decoration: underline;
}

.traveler-review-source .review-card-top,
.traveler-review-source h3,
.traveler-review-source blockquote,
.traveler-review-source p,
.traveler-review-source a {
  color: var(--surface);
}

.traveler-review-source .review-card-top span:first-child {
  background: rgba(252, 251, 248, 0.14);
  color: var(--surface);
}

.tripadvisor-panel {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
  margin: 24px auto 0;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.tripadvisor-panel h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.6rem, 3vw, 2.24rem);
  line-height: 1.08;
}

.tripadvisor-panel p:not(.eyebrow) {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.62;
}

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

.tripadvisor-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
}

.tripadvisor-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 180px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tripadvisor-gallery a:hover img {
  transform: scale(1.035);
}

.faq-section {
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 82px 22px;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96), rgba(52, 49, 61, 0.74)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  text-align: center;
}

.final-cta > div {
  max-width: 860px;
}

.final-cta h2 {
  color: var(--surface);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(252, 251, 248, 0.8);
  font-size: 1.08rem;
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.contact-cards a {
  min-height: 96px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(252, 251, 248, 0.1);
  text-decoration: none;
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 8px;
  color: var(--surface);
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: rgba(252, 251, 248, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--surface);
}

.site-footer span {
  margin-top: 4px;
}

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

.footer-links a {
  color: var(--surface);
  font-weight: 850;
}

.mobile-booking-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 32;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 16px;
  background: var(--clay);
  color: #fff;
  box-shadow: var(--shadow-strong);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-booking-bar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tour-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.tour-dialog::backdrop {
  background: rgba(7, 15, 13, 0.64);
}

.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(19, 33, 31, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 950;
}

.dialog-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: var(--sage);
}

.dialog-body {
  padding: 28px;
}

.dialog-body h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.dialog-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.dialog-meta span {
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--sage);
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.dialog-columns section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.dialog-columns h3 {
  margin: 0 0 12px;
  color: var(--forest);
}

.dialog-columns ul,
.dialog-columns ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.48;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(360px, calc(100vw - 36px));
  border-radius: 8px;
  padding: 13px 15px;
  background: var(--forest);
  color: var(--surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-inner,
  .planner-card,
  .custom-section,
  .split-section,
  .tripadvisor-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    align-self: start;
  }

  .planner-summary {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(280px, calc((100% - 16px) / 2));
  }

  .custom-panel,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    border: 1px solid rgba(252, 251, 248, 0.16);
    border-radius: 8px;
    padding: 10px;
    background: rgba(52, 49, 61, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: start;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-video-frame {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .hero-inner,
  .section,
  .trust-strip,
  .planner-wrap {
    width: min(100% - 28px, var(--container));
  }

  .hero-inner {
    padding: 60px 0 42px;
  }

  .hero-proof,
  .planner-grid,
  .planner-card,
  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .dialog-columns,
  .contact-cards,
  .tripadvisor-gallery,
  .tour-toolbar {
    grid-template-columns: 1fr;
  }

  .review-slider-head {
    align-items: start;
    flex-direction: column;
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(260px, 88%);
  }

  .trust-strip {
    margin-top: 14px;
  }

  .section,
  .destination-band,
  .review-section,
  .process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .tour-toolbar {
    align-items: stretch;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-tab {
    width: 100%;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .brand-logo {
    width: 154px;
    max-height: 49px;
  }

  .hero-inner {
    width: min(100% - 24px, var(--container));
    padding-top: 44px;
  }

  .hero-video-frame {
    top: 0;
    left: 0;
    height: 48svh;
    transform: none;
  }

  .hero-media::after {
    position: absolute;
    inset: 48svh 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(52, 49, 61, 0), rgba(52, 49, 61, 0.92));
    content: "";
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .card-bottom,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof span {
    min-width: 0;
    min-height: 74px;
  }

  .button,
  .card-actions {
    width: 100%;
  }

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

  .planner-card,
  .dialog-body {
    padding: 18px;
  }

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

  .custom-panel {
    grid-template-columns: 1fr;
  }

  .dialog-media img {
    aspect-ratio: 4 / 3;
  }

  .tour-card img {
    max-height: 190px;
  }

  .tripadvisor-gallery img {
    max-height: 150px;
  }

  .mobile-booking-bar {
    display: flex;
  }

  .toast {
    bottom: 76px;
  }
}

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

:root {
  --ink: #34313d;
  --muted: #6c6975;
  --paper: #fffaf6;
  --paper-deep: #f7e9df;
  --surface: #ffffff;
  --surface-warm: #fff4eb;
  --line: #ead9cf;
  --forest: #34313d;
  --forest-soft: #4b4855;
  --teal: #ff7b1a;
  --teal-dark: #d95d00;
  --clay: #ff7b1a;
  --clay-dark: #d95d00;
  --gold: #3268d9;
  --ocean: #3268d9;
  --sage: #edf3ff;
  --rose: #fff0e7;
  --shadow-soft: 0 18px 46px rgba(52, 49, 61, 0.12);
  --shadow-strong: 0 30px 86px rgba(52, 49, 61, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id],
#home,
#plan,
#custom,
#experiences,
#why-us,
#reviews,
#faq,
#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 123, 26, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--forest);
  color: var(--surface);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(252, 251, 248, 0.12);
  background: rgba(52, 49, 61, 0.96);
  color: var(--surface);
  box-shadow: 0 12px 34px rgba(52, 49, 61, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(154px, 16vw, 204px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(252, 251, 248, 0.82);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--clay);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--clay-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252, 251, 248, 0.24);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.08);
  color: var(--surface);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 8px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  overflow: hidden;
  background: var(--forest);
  color: var(--surface);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background: var(--forest);
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: max(100%, 177.7778svh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96) 0%, rgba(52, 49, 61, 0.78) 48%, rgba(52, 49, 61, 0.28) 100%),
    linear-gradient(0deg, rgba(52, 49, 61, 0.9) 0%, rgba(52, 49, 61, 0.1) 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 72px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.destination-band .eyebrow,
.final-cta .eyebrow,
.process-section .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  color: var(--surface);
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(252, 251, 248, 0.88);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--clay);
  color: #fff;
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 123, 26, 0.45);
  color: var(--clay-dark);
}

.button-ghost {
  border-color: rgba(252, 251, 248, 0.38);
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.button-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 32px;
}

.hero-proof span {
  min-height: 78px;
  border: 1px solid rgba(252, 251, 248, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(252, 251, 248, 0.1);
  color: rgba(252, 251, 248, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-proof strong {
  display: block;
  color: var(--surface);
  font-size: 1.25rem;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(252, 251, 248, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(252, 251, 248, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  border-top: 1px solid rgba(252, 251, 248, 0.18);
  padding-top: 12px;
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: rgba(252, 251, 248, 0.74);
  font-size: 0.86rem;
}

.hero-panel strong {
  margin-top: 4px;
  color: var(--surface);
  line-height: 1.35;
}

.hero-panel-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.landing-mode .hero-video-frame {
  display: none;
}

.landing-mode .hero h1 {
  max-width: 710px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.landing-mode .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.landing-mode .hero-panel {
  align-self: stretch;
}

.planner-wrap {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 44px));
  margin: -46px auto 0;
}

.planner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 0.8fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(222, 212, 197, 0.96);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.planner-intro {
  padding: 8px 6px;
}

.planner-card h2 {
  margin: -3px 0 10px;
  color: var(--forest);
  font-size: 1.8rem;
  line-height: 1.08;
}

.planner-intro p:not(.eyebrow),
.summary-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.planner-fields {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.planner-summary {
  display: grid;
  gap: 14px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.planner-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.planner-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.planner-summary dl div:last-child {
  border-bottom: 0;
}

.planner-summary dt {
  color: var(--muted);
}

.planner-summary dd {
  max-width: 140px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.planner-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px auto 0;
}

.trust-strip article {
  position: relative;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-strip article::before {
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-light {
  padding-top: 96px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2,
.custom-copy h2,
.split-copy h2,
.review-lead h2,
.final-cta h2,
.process-inner h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.review-lead p,
.custom-copy p:not(.eyebrow),
.split-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.seo-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.seo-breadcrumbs a:hover {
  color: var(--clay-dark);
}

.seo-guide-links a,
.tour-deep-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.seo-guide-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  text-decoration: none;
}

.seo-guide-links a:hover,
.tour-deep-link:hover {
  color: var(--clay-dark);
}

.tour-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) minmax(170px, 190px);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab,
.custom-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 850;
}

.filter-tab:hover,
.custom-actions button:hover,
.filter-tab.active,
.custom-actions button.active {
  border-color: rgba(255, 123, 26, 0.42);
  background: var(--rose);
  color: var(--clay-dark);
}

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

.tour-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(19, 33, 31, 0.08);
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tour-card[hidden] {
  display: none;
}

.tour-card.is-hidden {
  display: none;
}

.tour-card:hover {
  border-color: rgba(255, 123, 26, 0.36);
  box-shadow: 0 24px 58px rgba(19, 33, 31, 0.13);
  transform: translateY(-3px);
}

.tour-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--sage);
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.tour-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(52, 49, 61, 0.86);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-meta span,
.tour-category {
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 900;
}

.card-meta span {
  background: var(--sage);
  color: var(--forest);
}

.card-meta span:nth-child(2) {
  background: var(--rose);
  color: var(--clay-dark);
}

.tour-category {
  justify-self: start;
  width: fit-content;
  background: rgba(52, 49, 61, 0.09);
  color: var(--forest);
}

.tour-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.2;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.56;
}

.tour-deep-link {
  font-size: 0.9rem;
}

.highlight-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.highlight-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 8px;
  background: var(--gold);
  content: "";
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 190px;
}

.button-card {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.88rem;
}

.price {
  color: var(--forest);
  font-size: 1.56rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.price small {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
  color: var(--muted);
}

.empty-state p {
  margin: 0;
  line-height: 1.5;
}

.custom-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding-top: 22px;
}

.custom-copy p:not(.eyebrow) {
  margin: 18px 0 22px;
  font-size: 1.06rem;
}

.custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

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

.custom-panel article {
  min-height: 256px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(52, 49, 61, 0.94), rgba(52, 49, 61, 0.78)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  box-shadow: var(--shadow-soft);
}

.custom-panel span,
.process-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(252, 251, 248, 0.28);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
}

.custom-panel strong {
  display: block;
  margin-top: 38px;
  color: var(--surface);
  font-size: 1.18rem;
}

.custom-panel p {
  margin: 12px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.destination-band {
  width: 100%;
  margin-top: 18px;
  padding: 86px max(22px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(52, 49, 61, 0.97), rgba(52, 49, 61, 0.84)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
}

.destination-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head-inverse h2 {
  max-width: 760px;
  color: var(--surface);
}

.section-head-inverse p {
  color: rgba(252, 251, 248, 0.8);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.destination-grid article {
  min-height: 226px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.destination-grid span {
  color: var(--gold);
  font-weight: 950;
}

.destination-grid h3 {
  margin: 18px 0 10px;
  color: var(--surface);
  font-size: 1.42rem;
}

.destination-grid p {
  margin: 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 104px;
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: 1.08rem;
}

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

.proof-grid article {
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.07);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest);
  font-size: 1.15rem;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.process-section {
  width: 100%;
  padding: 82px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: var(--surface);
}

.process-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.process-inner h2 {
  max-width: 780px;
  color: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 214px;
  border: 1px solid rgba(252, 251, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.process-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--surface);
  font-size: 1.18rem;
}

.process-grid p {
  margin: 10px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.review-section {
  width: 100%;
  padding: 84px max(22px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, var(--paper), var(--surface-warm));
}

.review-lead {
  max-width: 720px;
  margin-bottom: 28px;
}

.review-lead p {
  margin-top: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.review-grid article {
  min-height: 192px;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.review-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.25rem;
}

.review-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.review-slider {
  max-width: var(--container);
  margin: 18px auto 0;
}

.review-slider-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-slider-head p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.review-slider-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-slider-controls {
  display: flex;
  gap: 8px;
}

.review-slider-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(52, 49, 61, 0.2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.review-slider-button:hover,
.review-slider-button:focus-visible {
  border-color: rgba(255, 123, 26, 0.5);
  background: #ffffff;
  transform: translateY(-1px);
}

.traveler-voice-grid {
  display: grid;
  grid-auto-columns: minmax(290px, calc((100% - 32px) / 3));
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(52, 49, 61, 0.4) rgba(52, 49, 61, 0.08);
}

.traveler-review {
  display: flex;
  min-height: 324px;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(52, 49, 61, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.traveler-review-source {
  background: linear-gradient(135deg, rgba(52, 49, 61, 0.98), rgba(52, 49, 61, 0.92));
  color: var(--surface);
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card-top span:first-child {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(52, 49, 61, 0.1);
  color: var(--forest);
}

.traveler-review h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.13rem;
  line-height: 1.28;
}

.review-source-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.traveler-review blockquote {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.22;
}

.traveler-review p {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.traveler-review a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.traveler-review a:hover {
  text-decoration: underline;
}

.traveler-review-source .review-card-top,
.traveler-review-source h3,
.traveler-review-source blockquote,
.traveler-review-source p,
.traveler-review-source a {
  color: var(--surface);
}

.traveler-review-source .review-card-top span:first-child {
  background: rgba(252, 251, 248, 0.14);
  color: var(--surface);
}

.tripadvisor-panel {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
  margin: 24px auto 0;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.tripadvisor-panel h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.6rem, 3vw, 2.24rem);
  line-height: 1.08;
}

.tripadvisor-panel p:not(.eyebrow) {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.62;
}

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

.tripadvisor-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
}

.tripadvisor-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tripadvisor-gallery a:hover img {
  transform: scale(1.035);
}

.faq-section {
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 82px 22px;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96), rgba(52, 49, 61, 0.74)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  text-align: center;
}

.final-cta > div {
  max-width: 860px;
}

.final-cta h2 {
  color: var(--surface);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(252, 251, 248, 0.8);
  font-size: 1.08rem;
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.contact-cards a {
  min-height: 96px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(252, 251, 248, 0.1);
  text-decoration: none;
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 8px;
  color: var(--surface);
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: rgba(252, 251, 248, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--surface);
}

.site-footer span {
  margin-top: 4px;
}

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

.footer-links a {
  color: var(--surface);
  font-weight: 850;
}

.mobile-booking-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 32;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 16px;
  background: var(--clay);
  color: #fff;
  box-shadow: var(--shadow-strong);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-booking-bar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tour-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.tour-dialog::backdrop {
  background: rgba(7, 15, 13, 0.64);
}

.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(19, 33, 31, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 950;
}

.dialog-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: var(--sage);
}

.dialog-body {
  padding: 28px;
}

.dialog-body h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.dialog-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.dialog-meta span {
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--sage);
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.dialog-columns section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.dialog-columns h3 {
  margin: 0 0 12px;
  color: var(--forest);
}

.dialog-columns ul,
.dialog-columns ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.48;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(360px, calc(100vw - 36px));
  border-radius: 8px;
  padding: 13px 15px;
  background: var(--forest);
  color: var(--surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-inner,
  .planner-card,
  .custom-section,
  .split-section,
  .tripadvisor-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    align-self: start;
  }

  .planner-summary {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(280px, calc((100% - 16px) / 2));
  }

  .custom-panel,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    border: 1px solid rgba(252, 251, 248, 0.16);
    border-radius: 8px;
    padding: 10px;
    background: rgba(52, 49, 61, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: start;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-video-frame {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .hero-inner,
  .section,
  .trust-strip,
  .planner-wrap {
    width: min(100% - 28px, var(--container));
  }

  .hero-inner {
    padding: 60px 0 42px;
  }

  .hero-proof,
  .planner-grid,
  .planner-card,
  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .dialog-columns,
  .contact-cards,
  .tripadvisor-gallery,
  .tour-toolbar {
    grid-template-columns: 1fr;
  }

  .review-slider-head {
    align-items: start;
    flex-direction: column;
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(260px, 88%);
  }

  .trust-strip {
    margin-top: 14px;
  }

  .section,
  .destination-band,
  .review-section,
  .process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .tour-toolbar {
    align-items: stretch;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-tab {
    width: 100%;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .brand-logo {
    width: 154px;
    max-height: 49px;
  }

  .hero-inner {
    width: min(100% - 24px, var(--container));
    padding-top: 44px;
  }

  .hero-video-frame {
    top: 0;
    left: 0;
    height: 48svh;
    transform: none;
  }

  .hero-media::after {
    position: absolute;
    inset: 48svh 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(52, 49, 61, 0), rgba(52, 49, 61, 0.92));
    content: "";
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .card-bottom,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof span {
    min-width: 0;
    min-height: 74px;
  }

  .button,
  .card-actions {
    width: 100%;
  }

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

  .planner-card,
  .dialog-body {
    padding: 18px;
  }

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

  .custom-panel {
    grid-template-columns: 1fr;
  }

  .dialog-media img {
    aspect-ratio: 4 / 3;
  }

  .mobile-booking-bar {
    display: flex;
  }

  .toast {
    bottom: 76px;
  }
}

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

﻿:root {
  --ink: #34313d;
  --muted: #6c6975;
  --paper: #fffaf6;
  --paper-deep: #f7e9df;
  --surface: #ffffff;
  --surface-warm: #fff4eb;
  --line: #ead9cf;
  --forest: #34313d;
  --forest-soft: #4b4855;
  --teal: #ff7b1a;
  --teal-dark: #d95d00;
  --clay: #ff7b1a;
  --clay-dark: #d95d00;
  --gold: #3268d9;
  --ocean: #3268d9;
  --sage: #edf3ff;
  --rose: #fff0e7;
  --shadow-soft: 0 18px 46px rgba(52, 49, 61, 0.12);
  --shadow-strong: 0 30px 86px rgba(52, 49, 61, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id],
#home,
#plan,
#custom,
#experiences,
#why-us,
#reviews,
#faq,
#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

input,
select {
  min-height: 48px;
  padding: 10px 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 123, 26, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--forest);
  color: var(--surface);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(252, 251, 248, 0.12);
  background: rgba(52, 49, 61, 0.96);
  color: var(--surface);
  box-shadow: 0 12px 34px rgba(52, 49, 61, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(154px, 16vw, 204px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(252, 251, 248, 0.82);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--clay);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--clay-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252, 251, 248, 0.24);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.08);
  color: var(--surface);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 8px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 110px);
  overflow: hidden;
  background: var(--forest);
  color: var(--surface);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background: var(--forest);
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: max(100%, 177.7778svh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96) 0%, rgba(52, 49, 61, 0.78) 48%, rgba(52, 49, 61, 0.28) 100%),
    linear-gradient(0deg, rgba(52, 49, 61, 0.9) 0%, rgba(52, 49, 61, 0.1) 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 72px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.destination-band .eyebrow,
.final-cta .eyebrow,
.process-section .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 790px;
  margin: 0 0 20px;
  color: var(--surface);
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(252, 251, 248, 0.88);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--clay);
  color: #fff;
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 123, 26, 0.45);
  color: var(--clay-dark);
}

.button-ghost {
  border-color: rgba(252, 251, 248, 0.38);
  background: rgba(252, 251, 248, 0.1);
  color: var(--surface);
}

.button-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 32px;
}

.hero-proof span {
  min-height: 78px;
  border: 1px solid rgba(252, 251, 248, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(252, 251, 248, 0.1);
  color: rgba(252, 251, 248, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-proof strong {
  display: block;
  color: var(--surface);
  font-size: 1.25rem;
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(252, 251, 248, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(252, 251, 248, 0.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  border-top: 1px solid rgba(252, 251, 248, 0.18);
  padding-top: 12px;
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: rgba(252, 251, 248, 0.74);
  font-size: 0.86rem;
}

.hero-panel strong {
  margin-top: 4px;
  color: var(--surface);
  line-height: 1.35;
}

.hero-panel-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.landing-mode .hero-video-frame {
  display: none;
}

.landing-mode .hero h1 {
  max-width: 710px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.landing-mode .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.landing-mode .hero-panel {
  align-self: stretch;
}

.planner-wrap {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 44px));
  margin: -46px auto 0;
}

.planner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr 0.8fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(222, 212, 197, 0.96);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.planner-intro {
  padding: 8px 6px;
}

.planner-card h2 {
  margin: -3px 0 10px;
  color: var(--forest);
  font-size: 1.8rem;
  line-height: 1.08;
}

.planner-intro p:not(.eyebrow),
.summary-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.planner-fields {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.planner-summary {
  display: grid;
  gap: 14px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.planner-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.planner-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.planner-summary dl div:last-child {
  border-bottom: 0;
}

.planner-summary dt {
  color: var(--muted);
}

.planner-summary dd {
  max-width: 140px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.planner-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--container), calc(100% - 44px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px auto 0;
}

.trust-strip article {
  position: relative;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-strip article::before {
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.section {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-light {
  padding-top: 96px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2,
.custom-copy h2,
.split-copy h2,
.review-lead h2,
.final-cta h2,
.process-inner h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.review-lead p,
.custom-copy p:not(.eyebrow),
.split-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.seo-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.seo-breadcrumbs a:hover {
  color: var(--clay-dark);
}

.seo-guide-links a,
.tour-deep-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.seo-guide-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  text-decoration: none;
}

.seo-guide-links a:hover,
.tour-deep-link:hover {
  color: var(--clay-dark);
}

.tour-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) minmax(170px, 190px);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab,
.custom-actions button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 850;
}

.filter-tab:hover,
.custom-actions button:hover,
.filter-tab.active,
.custom-actions button.active {
  border-color: rgba(255, 123, 26, 0.42);
  background: var(--rose);
  color: var(--clay-dark);
}

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

.tour-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(19, 33, 31, 0.08);
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tour-card[hidden] {
  display: none;
}

.tour-card.is-hidden {
  display: none;
}

.tour-card:hover {
  border-color: rgba(255, 123, 26, 0.36);
  box-shadow: 0 24px 58px rgba(19, 33, 31, 0.13);
  transform: translateY(-3px);
}

.tour-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--sage);
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.tour-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(52, 49, 61, 0.86);
  color: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-meta span,
.tour-category {
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 900;
}

.card-meta span {
  background: var(--sage);
  color: var(--forest);
}

.card-meta span:nth-child(2) {
  background: var(--rose);
  color: var(--clay-dark);
}

.tour-category {
  justify-self: start;
  width: fit-content;
  background: rgba(52, 49, 61, 0.09);
  color: var(--forest);
}

.tour-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  line-height: 1.2;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.56;
}

.tour-deep-link {
  font-size: 0.9rem;
}

.highlight-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.highlight-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 8px;
  background: var(--gold);
  content: "";
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 190px;
}

.button-card {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.88rem;
}

.price {
  color: var(--forest);
  font-size: 1.56rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.price small {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 20px 0 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
  color: var(--muted);
}

.empty-state p {
  margin: 0;
  line-height: 1.5;
}

.custom-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding-top: 22px;
}

.custom-copy p:not(.eyebrow) {
  margin: 18px 0 22px;
  font-size: 1.06rem;
}

.custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

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

.custom-panel article {
  min-height: 256px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(52, 49, 61, 0.94), rgba(52, 49, 61, 0.78)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  box-shadow: var(--shadow-soft);
}

.custom-panel span,
.process-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(252, 251, 248, 0.28);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 950;
}

.custom-panel strong {
  display: block;
  margin-top: 38px;
  color: var(--surface);
  font-size: 1.18rem;
}

.custom-panel p {
  margin: 12px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.destination-band {
  width: 100%;
  margin-top: 18px;
  padding: 86px max(22px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(52, 49, 61, 0.97), rgba(52, 49, 61, 0.84)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
}

.destination-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head-inverse h2 {
  max-width: 760px;
  color: var(--surface);
}

.section-head-inverse p {
  color: rgba(252, 251, 248, 0.8);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.destination-grid article {
  min-height: 226px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.destination-grid span {
  color: var(--gold);
  font-weight: 950;
}

.destination-grid h3 {
  margin: 18px 0 10px;
  color: var(--surface);
  font-size: 1.42rem;
}

.destination-grid p {
  margin: 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 104px;
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: 1.08rem;
}

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

.proof-grid article {
  min-height: 196px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.07);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--forest);
  font-size: 1.15rem;
}

.proof-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.process-section {
  width: 100%;
  padding: 82px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: var(--surface);
}

.process-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.process-inner h2 {
  max-width: 780px;
  color: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 214px;
  border: 1px solid rgba(252, 251, 248, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(252, 251, 248, 0.08);
}

.process-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--surface);
  font-size: 1.18rem;
}

.process-grid p {
  margin: 10px 0 0;
  color: rgba(252, 251, 248, 0.78);
  line-height: 1.55;
}

.review-section {
  width: 100%;
  padding: 84px max(22px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, var(--paper), var(--surface-warm));
}

.review-lead {
  max-width: 720px;
  margin-bottom: 28px;
}

.review-lead p {
  margin-top: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.review-grid article {
  min-height: 192px;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.review-grid strong {
  display: block;
  color: var(--forest);
  font-size: 1.25rem;
}

.review-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.review-slider {
  max-width: var(--container);
  margin: 18px auto 0;
}

.review-slider-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-slider-head p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.review-slider-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-slider-controls {
  display: flex;
  gap: 8px;
}

.review-slider-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(52, 49, 61, 0.2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.review-slider-button:hover,
.review-slider-button:focus-visible {
  border-color: rgba(255, 123, 26, 0.5);
  background: #ffffff;
  transform: translateY(-1px);
}

.traveler-voice-grid {
  display: grid;
  grid-auto-columns: minmax(290px, calc((100% - 32px) / 3));
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(52, 49, 61, 0.4) rgba(52, 49, 61, 0.08);
}

.traveler-review {
  display: flex;
  min-height: 324px;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid rgba(52, 49, 61, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.traveler-review-source {
  background: linear-gradient(135deg, rgba(52, 49, 61, 0.98), rgba(52, 49, 61, 0.92));
  color: var(--surface);
}

.review-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card-top span:first-child {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(52, 49, 61, 0.1);
  color: var(--forest);
}

.traveler-review h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.13rem;
  line-height: 1.28;
}

.review-source-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.traveler-review blockquote {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: clamp(1.28rem, 2.2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.22;
}

.traveler-review p {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.traveler-review a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.traveler-review a:hover {
  text-decoration: underline;
}

.traveler-review-source .review-card-top,
.traveler-review-source h3,
.traveler-review-source blockquote,
.traveler-review-source p,
.traveler-review-source a {
  color: var(--surface);
}

.traveler-review-source .review-card-top span:first-child {
  background: rgba(252, 251, 248, 0.14);
  color: var(--surface);
}

.tripadvisor-panel {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
  margin: 24px auto 0;
  border: 1px solid rgba(222, 212, 197, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(19, 33, 31, 0.06);
}

.tripadvisor-panel h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.6rem, 3vw, 2.24rem);
  line-height: 1.08;
}

.tripadvisor-panel p:not(.eyebrow) {
  margin: 14px 0 20px;
  color: var(--muted);
  line-height: 1.62;
}

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

.tripadvisor-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
}

.tripadvisor-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tripadvisor-gallery a:hover img {
  transform: scale(1.035);
}

.faq-section {
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: 82px 22px;
  background:
    linear-gradient(90deg, rgba(52, 49, 61, 0.96), rgba(52, 49, 61, 0.74)),
    url("assets/marrakech-mosaic-hero.webp") center / cover;
  color: var(--surface);
  text-align: center;
}

.final-cta > div {
  max-width: 860px;
}

.final-cta h2 {
  color: var(--surface);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(252, 251, 248, 0.8);
  font-size: 1.08rem;
  line-height: 1.65;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.contact-cards a {
  min-height: 96px;
  border: 1px solid rgba(252, 251, 248, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(252, 251, 248, 0.1);
  text-decoration: none;
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 8px;
  color: var(--surface);
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px max(22px, calc((100vw - var(--container)) / 2));
  background: var(--forest);
  color: rgba(252, 251, 248, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--surface);
}

.site-footer span {
  margin-top: 4px;
}

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

.footer-links a {
  color: var(--surface);
  font-weight: 850;
}

.mobile-booking-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 32;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 16px;
  background: var(--clay);
  color: #fff;
  box-shadow: var(--shadow-strong);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-booking-bar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tour-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: min(86vh, 920px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.tour-dialog::backdrop {
  background: rgba(7, 15, 13, 0.64);
}

.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(19, 33, 31, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 950;
}

.dialog-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: var(--sage);
}

.dialog-body {
  padding: 28px;
}

.dialog-body h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.dialog-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dialog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.dialog-meta span {
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--sage);
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.dialog-columns section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface-warm);
}

.dialog-columns h3 {
  margin: 0 0 12px;
  color: var(--forest);
}

.dialog-columns ul,
.dialog-columns ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.48;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(360px, calc(100vw - 36px));
  border-radius: 8px;
  padding: 13px 15px;
  background: var(--forest);
  color: var(--surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-inner,
  .planner-card,
  .custom-section,
  .split-section,
  .tripadvisor-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    align-self: start;
  }

  .planner-summary {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(280px, calc((100% - 16px) / 2));
  }

  .custom-panel,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    border: 1px solid rgba(252, 251, 248, 0.16);
    border-radius: 8px;
    padding: 10px;
    background: rgba(52, 49, 61, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: start;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-video-frame {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
  }

  .hero-inner,
  .section,
  .trust-strip,
  .planner-wrap {
    width: min(100% - 28px, var(--container));
  }

  .hero-inner {
    padding: 60px 0 42px;
  }

  .hero-proof,
  .planner-grid,
  .planner-card,
  .trust-strip,
  .tour-grid,
  .destination-grid,
  .proof-grid,
  .dialog-columns,
  .contact-cards,
  .tripadvisor-gallery,
  .tour-toolbar {
    grid-template-columns: 1fr;
  }

  .review-slider-head {
    align-items: start;
    flex-direction: column;
  }

  .traveler-voice-grid {
    grid-auto-columns: minmax(260px, 88%);
  }

  .trust-strip {
    margin-top: 14px;
  }

  .section,
  .destination-band,
  .review-section,
  .process-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .tour-toolbar {
    align-items: stretch;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-tab {
    width: 100%;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .brand-logo {
    width: 154px;
    max-height: 49px;
  }

  .hero-inner {
    width: min(100% - 24px, var(--container));
    padding-top: 44px;
  }

  .hero-video-frame {
    top: 0;
    left: 0;
    height: 48svh;
    transform: none;
  }

  .hero-media::after {
    position: absolute;
    inset: 48svh 0 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(52, 49, 61, 0), rgba(52, 49, 61, 0.92));
    content: "";
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .card-bottom,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof span {
    min-width: 0;
    min-height: 74px;
  }

  .button,
  .card-actions {
    width: 100%;
  }

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

  .planner-card,
  .dialog-body {
    padding: 18px;
  }

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

  .custom-panel {
    grid-template-columns: 1fr;
  }

  .dialog-media img {
    aspect-ratio: 4 / 3;
  }

  .mobile-booking-bar {
    display: flex;
  }

  .toast {
    bottom: 76px;
  }
}

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

