:root {
  --ink: #303030;
  --ink-deep: #242424;
  --sand: #fff0dc;
  --sand-deep: #f2d4ac;
  --paper: #fffaf4;
  --gold: #f0903c;
  --gold-dark: #a8551f;
  --gold-light: #f8bd70;
  --gold-soft: #fcd8a8;
  --sage: #6f7c43;
  --olive: #909c60;
  --coral: #e45454;
  --burgundy: #b4303c;
  --text: #3c342e;
  --muted: #71665d;
  --line: #e0c9aa;
  --line-strong: #c6a57c;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(48, 36, 24, 0.16);
  --radius: 2px;
  --shell: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--burgundy); color: var(--white); }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 120px; }
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -80px;
  padding: 12px 18px; border-radius: 6px;
  background: var(--white); color: var(--ink); font-weight: 800;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: absolute; z-index: 50; inset: 0 0 auto;
  color: var(--white); transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  position: fixed; background: linear-gradient(180deg, rgba(36, 36, 36, .96), rgba(36, 36, 36, .9));
  box-shadow: 0 12px 35px rgba(36, 36, 36, .18); backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1320px, calc(100% - 48px)); height: 104px; margin: 14px auto 0;
  padding: 8px 12px 8px 10px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.24); border-radius: 999px;
  background: linear-gradient(90deg, rgba(36,36,36,.58), rgba(36,36,36,.32));
  box-shadow: 0 18px 50px rgba(36,36,36,.16); backdrop-filter: blur(10px);
  transition: height .25s ease, margin .25s ease, background .25s ease, border-color .25s ease;
}
.is-scrolled .nav-shell {
  height: 80px; margin-top: 8px; border-color: rgba(240,144,60,.27);
  background: rgba(48,48,48,.82); box-shadow: none;
}
.brand {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  padding: 4px 8px; overflow: visible;
  border: 1px solid rgba(240,144,60,.54); border-radius: 14px;
  background: rgba(255,250,244,.96); box-shadow: 0 7px 24px rgba(36,36,36,.16);
  transition: background .2s ease, transform .2s ease;
}
.brand:hover { background: var(--white); transform: translateY(-1px); }
.brand img {
  width: 220px; height: auto; object-fit: contain;
  opacity: 1; filter: none !important; mix-blend-mode: normal;
  transition: width .25s ease;
}
.is-scrolled .brand { padding-block: 4px; }
.is-scrolled .brand img { width: 170px; }
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav > a:not(.nav-cta) {
  position: relative; padding: 10px 0;
  color: rgba(255,255,255,.86); font-size: .76rem; font-weight: 750; letter-spacing: .07em;
  transition: color .2s ease;
}
.primary-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 1px; height: 2px;
  border-radius: 999px; background: var(--gold); transition: left .25s ease, right .25s ease;
}
.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a[aria-current="page"] { color: var(--white); }
.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after { left: 0; right: 0; }
.language-switcher { position: relative; flex: 0 0 auto; }
.language-toggle {
  min-width: 50px; height: 42px; padding: 0 11px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  background: rgba(255,255,255,.05); color: var(--white); cursor: pointer;
  font-size: .67rem; font-weight: 800; letter-spacing: .08em;
  transition: border-color .2s ease, background .2s ease;
}
.language-toggle:hover,
.language-switcher.is-open .language-toggle { border-color: var(--gold); background: rgba(240,144,60,.12); }
.language-toggle svg { width: 16px; height: 16px; }
.language-chevron { font-size: .58rem; transition: transform .2s ease; }
.language-switcher.is-open .language-chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute; z-index: 80; top: calc(100% + 12px); right: 0; width: 238px;
  padding: 9px; border: 1px solid rgba(240,144,60,.34); border-radius: 12px;
  background: rgba(255,250,244,.98); color: var(--ink); box-shadow: 0 20px 55px rgba(36,36,36,.25);
  visibility: hidden; opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: visibility 0s linear .2s, opacity .2s ease, transform .2s ease;
}
.language-switcher.is-open .language-menu {
  visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0s;
}
.language-menu-title {
  margin: 2px 4px 8px; color: var(--muted); font-size: .61rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.gtranslate_wrapper { min-height: 42px; }
.gtranslate_wrapper select,
.gtranslate_wrapper .gt_selector {
  width: 100%; min-height: 42px; padding: 8px 34px 8px 11px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%23a8551f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 11px center;
  color: var(--ink); font: 750 .75rem/1.2 var(--sans); appearance: none; cursor: pointer;
}
.gtranslate_wrapper select:hover,
.gtranslate_wrapper select:focus { border-color: var(--gold); }
.language-attribution {
  margin: 7px 5px 2px; padding-top: 8px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .55rem; line-height: 1.4;
}
.language-attribution a { color: var(--gold-dark); }
.language-toggle:focus-visible,
.gtranslate_wrapper select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 48px; padding: 10px 18px;
  border: 1px solid var(--gold); border-radius: 999px;
  background: var(--gold); color: var(--ink-deep);
  font-size: .78rem; font-weight: 750; letter-spacing: .03em;
  box-shadow: 0 8px 24px rgba(36,36,36,.16);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--gold-light); color: var(--ink-deep); transform: translateY(-1px); }
.menu-toggle {
  position: relative; display: none; flex: 0 0 48px; width: 48px; height: 48px; padding: 0;
  border: 1px solid rgba(255,255,255,.26); border-radius: 50%;
  background: rgba(255,255,255,.04); color: inherit; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.menu-toggle span {
  position: absolute; left: 50%; width: 22px; height: 1.5px; margin: 0;
  background: currentColor; transform: translateX(-50%);
  transition: top .25s ease, transform .25s ease;
}
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.menu-open .menu-toggle { border-color: var(--gold); background: var(--gold); color: var(--ink-deep); }
.menu-open .menu-toggle span:first-child { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }
.brand:focus-visible,
.primary-nav a:focus-visible,
.menu-toggle:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; }

/* Shared typography and actions */
.eyebrow {
  display: flex; align-items: center; gap: 11px; margin: 0 0 22px;
  color: var(--burgundy); font-size: .7rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--gold-soft); }
h1, h2, h3 { margin-top: 0; color: var(--ink); font-family: var(--serif); font-weight: 400; }
h1 em, h2 em { color: var(--gold); font-weight: 400; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 5.3vw, 5.25rem); line-height: .98; letter-spacing: -.048em; }
h3 { font-size: 1.65rem; line-height: 1.15; letter-spacing: -.02em; }
.lead { color: var(--ink); font-size: 1.12rem; line-height: 1.78; }
.muted { color: var(--muted); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  min-height: 54px; padding: 13px 24px;
  border: 1px solid transparent; border-radius: 999px; cursor: pointer;
  font-size: .82rem; font-weight: 800; letter-spacing: .025em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--ink-deep); }
.button-gold:hover { background: var(--gold-light); }
.button-ink { background: var(--ink); color: var(--white); }
.button-ink:hover { background: var(--burgundy); }
.button-sand { background: var(--sand); color: var(--ink); }
.button-outline { border-color: rgba(48, 48, 48, .36); color: var(--ink); }
.button-arrow { transition: transform .2s ease; }
.button:hover .button-arrow { transform: translateX(4px); }
.text-link {
  display: inline-flex; align-items: center; gap: 12px; padding: 5px 0;
  border-bottom: 1px solid rgba(48,48,48,.28); color: var(--ink);
  font-size: .82rem; font-weight: 800;
}
.text-link.light { color: var(--white); border-bottom-color: rgba(255,255,255,.42); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Home hero */
.hero {
  position: relative; min-height: 760px; height: 100svh; max-height: 1040px;
  overflow: hidden; background: var(--ink); color: var(--white);
}
.hero-media, .hero-overlay, .hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: 50% 52%; animation: hero-breathe 18s ease-out both; }
@keyframes hero-breathe { from { transform: scale(1.055); } to { transform: scale(1); } }
.hero-overlay { background: linear-gradient(90deg, rgba(36,36,36,.9), rgba(36,36,36,.58) 48%, rgba(36,36,36,.14)), linear-gradient(0deg, rgba(36,36,36,.58), transparent 40%); }
.hero-grain {
  opacity: .08; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding-top: clamp(190px, 24vh, 270px); }
.hero h1 {
  max-width: 950px; margin-bottom: 0; color: var(--white);
  font-size: clamp(4.25rem, 8.2vw, 8.2rem); line-height: .84; letter-spacing: -.057em;
}
.hero-lede { max-width: 600px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 36px; }
.hero-note { position: absolute; z-index: 2; right: 5vw; bottom: 7vh; display: flex; align-items: center; gap: 14px; }
.hero-note-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--gold); }
.hero-note div { display: grid; }
.hero-note strong { font-family: var(--serif); font-weight: 400; }
.hero-note small { color: rgba(255,255,255,.62); }
.scroll-cue { position: absolute; z-index: 2; left: 3vw; bottom: 38px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.58); font-size: .63rem; letter-spacing: .17em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue::before { content: ""; width: 1px; height: 42px; background: rgba(255,255,255,.4); }

.trust-strip { background: var(--sand); border-bottom: 1px solid var(--sand-deep); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 27px; }
.trust-grid > div { display: flex; align-items: baseline; justify-content: center; gap: 10px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--ink); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.trust-grid span { color: var(--muted); font-size: .69rem; letter-spacing: .05em; text-transform: uppercase; }

/* Home intro */
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(72px, 9vw, 145px); align-items: center; }
.intro-copy { max-width: 530px; }
.intro-copy .lead { margin: 36px 0 18px; }
.intro-copy .text-link { margin-top: 16px; }
.intro-visual { min-height: 640px; position: relative; }
.intro-photo { width: 76%; height: 640px; margin-left: auto; overflow: hidden; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.quote-card { position: absolute; left: 0; bottom: 58px; width: min(345px, 64%); padding: 32px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.quote-mark { color: var(--gold); font-family: var(--serif); font-size: 4rem; line-height: .5; }
.quote-card p { margin: 17px 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.38; }
.quote-card strong { color: var(--gold-light); font-size: .69rem; letter-spacing: .15em; text-transform: uppercase; }
.authentic-stamp { position: absolute; right: -10px; top: 70px; width: 98px; height: 98px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(48,48,48,.34); border-radius: 50%; transform: rotate(8deg); }
.authentic-stamp strong { font-family: var(--serif); font-size: 1.75rem; line-height: 1; }
.authentic-stamp span { font-size: .47rem; letter-spacing: .2em; }

/* Featured tours */
.sand-section { background: var(--sand); }
.section-heading { margin-bottom: 60px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.split-heading > p { max-width: 440px; margin: 0 0 7px; color: var(--muted); }
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tour-card { position: relative; min-height: 490px; overflow: hidden; color: var(--white); }
.tour-card > img, .tour-card-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.tour-card > img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.tour-card:hover > img { transform: scale(1.045); }
.tour-card-shade { background: linear-gradient(0deg, rgba(36,36,36,.9), rgba(36,36,36,.04) 72%); }
.tour-number { position: absolute; left: 22px; top: 21px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: .63rem; }
.tour-card-copy { position: absolute; inset: auto 24px 25px; display: grid; }
.tour-card-copy small { margin-bottom: 6px; color: var(--gold-soft); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; }
.tour-card-copy strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.tour-card-copy span { max-height: 0; margin-top: 0; overflow: hidden; opacity: 0; font-size: .71rem; transition: max-height .3s, margin .3s, opacity .3s; }
.tour-card:hover .tour-card-copy span { max-height: 30px; margin-top: 14px; opacity: 1; }
.center-action { display: flex; justify-content: center; margin-top: 46px; }

/* Promises */
.center-heading { margin-bottom: 60px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--sand-deep); border-bottom: 1px solid var(--sand-deep); }
.promise-card { min-height: 350px; position: relative; padding: 54px 46px; border-right: 1px solid var(--sand-deep); }
.promise-card:last-child { border-right: 0; }
.promise-icon { color: var(--gold-dark); font-family: var(--serif); font-size: 2.6rem; }
.promise-number { position: absolute; top: 43px; right: 36px; color: var(--sage); font-size: .62rem; }
.promise-card h3 { margin: 48px 0 16px; }
.promise-card p:last-child { color: var(--muted); font-size: .9rem; }

/* Marrakech feature */
.experience-feature { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 870px; background: var(--ink); }
.experience-image { min-height: 700px; position: relative; overflow: hidden; }
.experience-image > img { width: 100%; height: 100%; object-fit: cover; }
.experience-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(36,36,36,.48), transparent 44%); }
.image-caption { position: absolute; z-index: 2; left: 44px; right: 44px; bottom: 34px; display: flex; justify-content: space-between; color: var(--white); }
.image-caption span { font-family: var(--serif); font-size: 1.35rem; }
.image-caption small { align-self: flex-end; color: rgba(255,255,255,.7); }
.experience-panel { padding: clamp(70px, 8vw, 125px); color: var(--white); }
.experience-panel h2 { color: var(--white); }
.experience-panel > p:not(.eyebrow) { max-width: 510px; margin: 26px 0 42px; color: rgba(255,255,255,.64); }
.timeline { margin-bottom: 42px; border-top: 1px solid rgba(255,255,255,.16); }
.timeline-row { display: grid; grid-template-columns: 74px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline-row > span { padding-top: 3px; color: var(--gold); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.timeline-row strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.timeline-row p { margin: 6px 0 0; color: rgba(255,255,255,.61); font-size: .78rem; line-height: 1.55; }

/* Gallery teaser and FAQs */
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.gallery-ribbon { display: grid; grid-template-columns: 1.1fr .8fr 1fr .8fr 1.1fr; align-items: center; gap: 14px; }
.gallery-shot { height: 330px; margin: 0; overflow: hidden; }
.gallery-shot:nth-child(even) { height: 260px; }
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-shot:hover img { transform: scale(1.04); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 105px; border-top: 1px solid var(--sand-deep); }
.faq-intro { align-self: start; position: sticky; top: 110px; }
.faq-intro > p:not(.eyebrow) { max-width: 340px; margin: 28px 0 12px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 90px; display: grid; grid-template-columns: 40px 1fr 24px; gap: 18px; align-items: center; cursor: pointer; list-style: none; color: var(--ink); font-family: var(--serif); font-size: 1.22rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--gold-dark); font-family: var(--sans); font-size: .61rem; }
.faq-list summary::after { content: "+"; font-family: var(--sans); font-size: 1.3rem; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -10px 45px 28px 58px; color: var(--muted); font-size: .9rem; }

/* CTA and footer */
.closing-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--ink-deep)); color: var(--white);
}
.closing-cta::after {
  content: ""; position: absolute; inset: 0 0 0 auto; width: 48%;
  background: linear-gradient(90deg, var(--ink), rgba(240,144,60,.08)), url("../../images/brand/zellige.webp") center/cover;
  opacity: .18; mix-blend-mode: luminosity;
}
.closing-content { position: relative; z-index: 2; padding-block: 105px; }
.closing-content h2 { max-width: 820px; color: var(--white); }
.closing-content h2 em { color: var(--gold-soft); }
.closing-content > p:not(.eyebrow) { max-width: 550px; margin: 28px 0 32px; color: rgba(255,255,255,.78); }
.site-footer {
  position: relative; isolation: isolate; overflow: hidden; padding-top: 72px;
  background: var(--ink-deep); color: rgba(255,255,255,.68);
}
.site-footer::before {
  content: ""; position: absolute; z-index: 0; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, transparent, var(--burgundy) 16%, var(--coral) 34%, var(--gold) 52%, var(--olive) 72%, transparent);
}
.site-footer::after {
  content: ""; position: absolute; z-index: -1; right: -120px; top: -120px; width: 560px; height: 560px;
  border-radius: 50%; background: radial-gradient(circle, rgba(240,144,60,.1), rgba(180,48,60,.035) 45%, transparent 70%); pointer-events: none;
}
.footer-lead {
  position: relative; z-index: 1; padding: 48px 52px; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(42px, 7vw, 96px);
  border: 1px solid rgba(240,144,60,.32); border-radius: 22px;
  background: linear-gradient(118deg, rgba(180,48,60,.18), rgba(240,144,60,.09) 52%, rgba(111,124,67,.13));
  box-shadow: 0 28px 72px rgba(0,0,0,.2);
}
.footer-lead::after { content: ""; position: absolute; right: -72px; top: -118px; width: 290px; height: 290px; border: 1px solid rgba(248,189,112,.13); border-radius: 50%; box-shadow: 0 0 0 48px rgba(248,189,112,.025); pointer-events: none; }
.footer-lead-copy { position: relative; z-index: 1; max-width: 700px; }
.footer-kicker { margin: 0 0 12px; color: var(--gold-light); font-size: .61rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-statement { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(2.15rem, 3.8vw, 3.65rem); line-height: 1.02; letter-spacing: -.038em; }
.footer-lead-note { max-width: 560px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.65; }
.footer-lead-actions { position: relative; z-index: 1; min-width: 218px; display: flex; flex-direction: column; gap: 10px; }
.footer-lead-action, .footer-lead-whatsapp { min-height: 54px; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 999px; font-size: .73rem; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.footer-lead-action { border: 1px solid var(--gold); background: var(--gold); color: var(--ink-deep); box-shadow: 0 12px 30px rgba(0,0,0,.17); }
.footer-lead-whatsapp { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.055); color: var(--white); }
.footer-lead-whatsapp svg { width: 20px; height: 20px; color: #5ee58b; }
.footer-lead-action:hover, .footer-lead-whatsapp:hover { transform: translateY(-2px); }
.footer-lead-action:hover { background: var(--gold-light); box-shadow: 0 16px 36px rgba(0,0,0,.23); }
.footer-lead-whatsapp:hover { border-color: rgba(94,229,139,.52); background: rgba(94,229,139,.09); }
.footer-main { position: relative; z-index: 1; padding-block: 66px 58px; display: grid; grid-template-columns: minmax(285px, 340px) minmax(0, 1fr); gap: clamp(64px, 8vw, 118px); align-items: start; }
.footer-brand { width: 100%; max-width: 340px; }
.footer-logo-panel { width: fit-content; max-width: 100%; padding: 13px 15px; border: 1px solid rgba(240,144,60,.38); border-radius: 12px; background: linear-gradient(145deg, var(--paper), var(--sand-deep)); box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.footer-logo { display: block; width: fit-content; }
.footer-brand img { width: min(264px, 100%); height: auto; filter: none !important; }
.footer-brand > p { max-width: 330px; margin: 24px 0 0; color: rgba(255,255,255,.6); font-size: .79rem; line-height: 1.7; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-trust span { padding: 7px 10px; border: 1px solid rgba(240,144,60,.25); border-radius: 999px; background: rgba(240,144,60,.055); color: var(--gold-soft); font-size: .55rem; font-weight: 750; letter-spacing: .04em; }
.footer-columns { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(34px, 4.4vw, 70px); }
.footer-column { min-width: 0; display: flex; flex-direction: column; gap: 2px; font-size: .78rem; font-style: normal; }
.footer-column p { margin: 0; }
.footer-label { display: flex; align-items: center; gap: 10px; margin-bottom: 17px !important; color: var(--gold-light); font-size: .61rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.footer-label::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.footer-column a { width: fit-content; max-width: 100%; padding: 7px 0; line-height: 1.45; transition: color .2s ease, transform .2s ease; }
.footer-explore a::after, .footer-useful a::after { content: "→"; display: inline-block; margin-inline-start: 8px; color: var(--gold-light); opacity: 0; transform: translateX(-5px); transition: opacity .2s ease, transform .2s ease; }
.footer-useful a[target="_blank"]::after { content: "↗"; }
.footer-column a:hover { color: var(--white); transform: translateX(3px); }
.footer-explore a:hover::after, .footer-useful a:hover::after { opacity: 1; transform: translateX(0); }
.footer-contact a { overflow-wrap: anywhere; word-break: break-word; }
.footer-contact a:first-of-type { color: var(--white); font-family: var(--serif); font-size: 1.05rem; }
.footer-contact > p:not(.footer-label) { margin-top: 9px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-connect { position: relative; z-index: 1; padding-block: 29px; display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); align-items: center; gap: clamp(42px, 7vw, 96px); border-top: 1px solid rgba(252,216,168,.16); border-bottom: 1px solid rgba(252,216,168,.16); }
.footer-connect-copy p { margin: 0; }
.footer-connect-label { color: var(--gold-light); font-size: .61rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-connect-note { max-width: 300px; margin-top: 7px !important; color: rgba(255,255,255,.46); font-size: .68rem; line-height: 1.55; }
.footer-socials { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.footer-socials a { min-width: 0; min-height: 46px; padding: 9px 13px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.035); color: rgba(255,255,255,.78); font-size: .59rem; font-weight: 800; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-socials a:first-child { border-color: rgba(240,144,60,.66); background: var(--gold); color: var(--ink-deep); }
.footer-socials a:hover { border-color: var(--gold); background: rgba(240,144,60,.12); color: var(--white); transform: translateY(-2px); }
.footer-socials a:first-child:hover { background: var(--gold-light); color: var(--ink-deep); }
.footer-socials svg { flex: 0 0 17px; width: 17px; height: 17px; }
.footer-socials span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer-bottom { position: relative; z-index: 1; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: rgba(255,255,255,.45); font-size: .66rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px; }
.footer-bottom a { padding-block: 7px; transition: color .2s ease; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-back-top { margin-inline-start: 8px; color: var(--gold-light); font-weight: 800; }
.site-footer a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.whatsapp-float {
  position: fixed; z-index: 60; right: 22px; bottom: 22px;
  display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255,255,255,.72); border-radius: 999px;
  background: rgba(255,250,244,.96); color: var(--ink);
  box-shadow: 0 14px 40px rgba(36,36,36,.25); backdrop-filter: blur(12px);
  font-size: .74rem; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, visibility .2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(36,36,36,.3); }
.menu-open .whatsapp-float { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(12px); }
.whatsapp-icon {
  width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center;
  border-radius: 50%; background: #25d366; color: var(--white);
  box-shadow: 0 5px 14px rgba(37,211,102,.3);
}
.whatsapp-icon svg { width: 21px; height: 21px; overflow: visible; }

/* Inner heroes */
.inner-hero { min-height: 650px; height: 78svh; max-height: 820px; position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.inner-hero-media, .inner-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.inner-hero-media { object-fit: cover; }
.inner-hero-overlay { background: linear-gradient(90deg, rgba(36,36,36,.88), rgba(36,36,36,.4) 58%, rgba(36,36,36,.16)), linear-gradient(0deg, rgba(36,36,36,.62), transparent 48%); }
.inner-hero-content { position: relative; z-index: 2; padding-top: clamp(190px, 23vh, 250px); }
.inner-hero h1 { max-width: 900px; margin-bottom: 0; color: var(--white); font-size: clamp(4.2rem, 7.4vw, 7.3rem); line-height: .86; letter-spacing: -.055em; }
.inner-hero-content > p:not(.eyebrow) { max-width: 600px; margin: 26px 0 0; color: rgba(255,255,255,.77); }
.breadcrumbs { position: absolute; top: calc(78svh - 70px); display: flex; gap: 10px; color: rgba(255,255,255,.56); font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; }
.breadcrumbs strong { color: var(--white); font-weight: 600; }

/* Tours page */
.page-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; }
.page-intro > p { max-width: 490px; margin: 0 0 8px; color: var(--muted); font-size: 1.03rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: -65px auto 60px; }
.filter-button { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font-size: .72rem; font-weight: 750; }
.filter-button.is-active, .filter-button:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }
.destination-list { padding-bottom: 120px; }
.destination-row { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 540px; border-top: 1px solid var(--sand-deep); scroll-margin-top: 110px; }
.destination-row[hidden] { display: none; }
.destination-row:nth-child(even) .destination-photo { order: 2; }
.destination-photo { min-height: 540px; position: relative; overflow: hidden; }
.destination-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.destination-row:hover .destination-photo img { transform: scale(1.026); }
.destination-index { position: absolute; left: 24px; top: 24px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,250,244,.9); color: var(--ink); font-size: .63rem; backdrop-filter: blur(8px); }
.destination-copy { align-self: center; padding: 65px clamp(42px, 7vw, 96px); }
.destination-kicker { margin: 0 0 10px; color: var(--gold-dark); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.destination-copy h2 { font-size: clamp(3.4rem, 5vw, 5rem); }
.destination-copy > p:not(.destination-kicker) { margin: 23px 0; color: var(--muted); }
.itinerary-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 105px; border-top: 1px solid var(--sand-deep); }
.itinerary-title > p:not(.eyebrow) { margin-top: 28px; color: var(--muted); }
.itinerary-list { border-top: 1px solid var(--line); }
.itinerary-list article { display: grid; grid-template-columns: 40px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.itinerary-list article > span { padding-top: 5px; color: var(--gold-dark); font-size: .61rem; }
.itinerary-list small { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.itinerary-list h3 { margin: 7px 0 9px; }
.itinerary-list p { margin: 0; color: var(--muted); }

/* About */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 9vw, 138px); align-items: center; }
.story-image { min-height: 700px; position: relative; }
.story-image img { width: 100%; height: 700px; object-fit: cover; }
.vertical-caption { position: absolute; left: -36px; bottom: 0; transform: rotate(-90deg); transform-origin: left bottom; color: var(--muted); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.story-copy .lead { margin-top: 34px; }
.story-copy blockquote { margin: 38px 0 0; padding: 23px 0 23px 28px; border-left: 2px solid var(--gold); color: var(--ink); font-family: var(--serif); font-size: 1.55rem; line-height: 1.35; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.value-card { padding: 43px 30px; border-right: 1px solid var(--line); }
.value-card:last-child { border-right: 0; }
.value-card > span { color: var(--gold-dark); font-size: .6rem; }
.value-card h3 { min-height: 58px; margin: 38px 0 15px; }
.value-card p { margin: 0; color: var(--muted); font-size: .83rem; }
.host-mosaic { display: grid; grid-template-columns: .9fr .7fr 1fr; gap: 16px; align-items: center; }
.host-mosaic > figure { height: 560px; margin: 0; overflow: hidden; }
.host-mosaic > figure:nth-child(2) { height: 420px; }
.host-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-copy { padding-left: 42px; }
.mosaic-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); }

/* Gallery */
.gallery-wall { columns: 3; column-gap: 18px; padding-bottom: 70px; }
.gallery-item { position: relative; break-inside: avoid; margin: 0 0 18px; overflow: hidden; background: var(--sand); cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform .55s ease, filter .3s ease; }
.gallery-item:hover img { transform: scale(1.018); filter: saturate(1.08); }
.gallery-item figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 36px 17px 14px; background: linear-gradient(0deg, rgba(36,36,36,.78), transparent); color: var(--white); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover figcaption { opacity: 1; }
.gallery-cta { min-height: 175px; margin-bottom: 110px; padding: 38px 48px; display: flex; align-items: center; justify-content: space-between; gap: 38px; background: var(--sand); }
.gallery-cta p { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.5rem); }
.lightbox { position: fixed; z-index: 200; inset: 0; display: none; align-items: center; justify-content: center; padding: 60px; background: rgba(24,24,24,.94); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 90vw); max-height: 82vh; object-fit: contain; }
.lightbox-close { position: absolute; right: 25px; top: 20px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; font-size: 1.4rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(64px, 9vw, 138px); }
.contact-intro > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); }
.contact-methods { margin-top: 40px; border-top: 1px solid var(--line); }
.contact-method { position: relative; display: grid; padding: 19px 34px 19px 0; border-bottom: 1px solid var(--line); }
.contact-method small { color: var(--muted); font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; }
.contact-method strong { margin-top: 3px; color: var(--ink); font-family: var(--serif); font-size: 1.12rem; font-weight: 400; line-height: 1.35; }
.contact-method > span { position: absolute; right: 3px; top: 50%; transform: translateY(-50%); color: var(--gold-dark); }
.enquiry-form { align-self: start; padding: 46px; background: var(--sand); }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.date-fields { min-width: 0; margin: 0 0 22px; padding: 0; border: 0; }
.date-fields legend { margin: 0 0 7px; padding: 0; color: var(--ink); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.date-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.enquiry-form .date-fields label { gap: 3px; margin: 0; color: var(--muted); font-size: .54rem; }
.enquiry-form input[type="date"] { min-width: 0; cursor: pointer; color-scheme: light; accent-color: var(--gold-dark); }
.enquiry-form input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .72; }
.enquiry-form label { display: grid; gap: 7px; margin-bottom: 22px; color: var(--ink); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: .9rem; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus { border-color: var(--gold-dark); }
.enquiry-form textarea { min-height: 130px; resize: vertical; }
.form-submit { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.form-submit p, .form-status { margin: 0; color: var(--muted); font-size: .66rem; }
.form-status { margin-top: 16px; color: var(--ink); }
.meeting-section { background: var(--ink); color: var(--white); }
.meeting-grid { min-height: 700px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.meeting-grid h2 { color: var(--white); }
.meeting-grid > div:first-child > p:not(.eyebrow) { margin: 26px 0 32px; color: rgba(255,255,255,.64); }
.meeting-image { height: 510px; position: relative; }
.meeting-image img { width: 100%; height: 100%; object-fit: cover; }
.meeting-image span { position: absolute; left: 20px; bottom: 18px; padding: 7px 11px; background: rgba(36,36,36,.75); color: var(--white); font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }

/* Legal */
.legal-hero { padding: 205px 0 85px; background: var(--ink); color: var(--white); }
.legal-hero h1 { margin-bottom: 0; color: var(--white); font-size: clamp(3.7rem, 7vw, 6.3rem); line-height: .9; letter-spacing: -.05em; }
.legal-hero p:last-child { color: rgba(255,255,255,.6); }
.legal-grid { display: grid; grid-template-columns: 230px 1fr; gap: 95px; align-items: start; }
.legal-nav { position: sticky; top: 110px; }
.legal-nav > p { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; }
.legal-nav nav { display: grid; border-top: 1px solid var(--line); }
.legal-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.legal-content { max-width: 800px; }
.legal-content h2 { margin: 46px 0 13px; font-size: 1.95rem; letter-spacing: -.02em; line-height: 1.2; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 22px 0 7px; font-size: 1.18rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.policy-table { margin: 28px 0; border-top: 1px solid var(--line); }
.policy-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.policy-row span { color: var(--muted); }

/* 404 */
.not-found { min-height: 100svh; display: grid; place-items: center; padding: 150px 24px 80px; background: var(--ink); color: var(--white); text-align: center; }
.not-found h1 { max-width: 900px; margin-bottom: 0; color: var(--white); font-size: clamp(4rem, 8vw, 7.5rem); line-height: .86; letter-spacing: -.055em; }
.not-found .eyebrow { justify-content: center; }
.not-found p { color: rgba(255,255,255,.65); }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .primary-nav { gap: 21px; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { gap: 70px; }
  .experience-panel { padding: 76px 58px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; padding-block: 60px 52px; }
  .footer-brand { max-width: none; display: grid; grid-template-columns: minmax(220px, 290px) minmax(0, 1fr); grid-template-areas: "logo copy" "logo trust"; column-gap: clamp(34px, 6vw, 72px); align-items: center; }
  .footer-logo-panel { grid-area: logo; }
  .footer-brand > p { grid-area: copy; max-width: 520px; margin: 0; padding-inline-start: clamp(28px, 4vw, 48px); border-inline-start: 1px solid rgba(255,255,255,.1); }
  .footer-trust { grid-area: trust; margin: 16px 0 0; padding-inline-start: clamp(28px, 4vw, 48px); }
  .footer-columns { gap: clamp(30px, 6vw, 66px); }
  .footer-connect { grid-template-columns: 1fr; gap: 20px; }
  .footer-connect-note { max-width: 560px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 34px, 640px); }
  .section { padding-block: 86px; }
  .nav-shell {
    width: calc(100% - 24px); height: 82px; margin-top: 10px; padding: 6px 8px;
    backdrop-filter: none;
  }
  .is-scrolled .nav-shell { height: 70px; margin-top: 6px; }
  .brand { position: relative; z-index: 3; padding: 5px 9px 5px 7px; }
  .brand img { width: 176px; }
  .is-scrolled .brand img { width: 140px; }
  .menu-toggle { z-index: 3; display: block; }
  .nav-shell { position: relative; z-index: 2; }
  .menu-open .site-header {
    position: fixed; inset: 0 0 auto; background: transparent;
    box-shadow: none; backdrop-filter: none;
  }
  .menu-open .nav-shell {
    border-color: rgba(240,144,60,.55); background: rgba(36,36,36,.92);
    box-shadow: 0 16px 44px rgba(36,36,36,.28); backdrop-filter: none;
  }
  .primary-nav {
    position: fixed; inset: 0; z-index: 1;
    min-height: 100svh; padding: max(128px, calc(env(safe-area-inset-top) + 116px)) 24px max(28px, env(safe-area-inset-bottom));
    display: flex; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto;
    background:
      radial-gradient(circle at 92% 6%, rgba(240,144,60,.18), transparent 30%),
      linear-gradient(155deg, var(--ink), var(--ink-deep) 62%);
    visibility: hidden; opacity: 0; pointer-events: none; transform: translateX(100%);
    overscroll-behavior: contain; counter-reset: mobile-nav;
    transition: visibility 0s linear .35s, opacity .28s ease, transform .35s cubic-bezier(.76,0,.24,1);
  }
  .primary-nav::before {
    content: "Explore Morocco"; display: block; margin: 0 0 14px; color: var(--gold-light);
    font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  }
  .primary-nav::after {
    content: "Marrakech, Morocco · Private local journeys"; display: block; margin-top: auto; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.46);
    font-size: .59rem; letter-spacing: .1em; text-transform: uppercase;
  }
  .menu-open .primary-nav {
    visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0);
    transition-delay: 0s;
  }
  .primary-nav > a:not(.nav-cta) {
    counter-increment: mobile-nav; display: grid; grid-template-columns: 36px 1fr; align-items: center;
    padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.13);
    font-family: var(--serif); font-size: clamp(1.7rem, 8vw, 2.15rem); line-height: 1.08; letter-spacing: -.025em;
  }
  .primary-nav > a:not(.nav-cta)::before {
    content: "0" counter(mobile-nav); color: var(--gold-light); font-family: var(--sans);
    font-size: .56rem; font-weight: 800; letter-spacing: .08em;
  }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .primary-nav > a[aria-current="page"] { color: var(--gold-soft); }
  .language-switcher { width: 100%; margin-top: 18px; }
  .language-toggle {
    width: 100%; height: 48px; padding-inline: 15px; justify-content: flex-start;
    border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05);
  }
  .language-code { margin-left: auto; }
  .language-menu {
    position: static; width: 100%; max-height: 0; margin-top: 0; padding: 0 9px;
    overflow: hidden; visibility: hidden; opacity: 0; transform: none; border-width: 0;
    transition: max-height .25s ease, margin .25s ease, padding .25s ease, opacity .2s ease, visibility 0s linear .25s;
  }
  .language-switcher.is-open .language-menu {
    max-height: 290px; margin-top: 9px; padding-block: 9px; visibility: visible; opacity: 1;
    transition-delay: 0s;
  }
  .nav-cta { min-height: 52px; margin-top: 18px; align-self: flex-start; padding-inline: 24px; }

  .hero { min-height: 750px; max-height: 920px; }
  .hero-media { object-position: 59% 50%; }
  .hero-overlay { background: linear-gradient(90deg, rgba(36,36,36,.88), rgba(36,36,36,.34)), linear-gradient(0deg, rgba(36,36,36,.68), transparent 52%); }
  .hero-content { padding-top: 180px; }
  .hero h1 { font-size: clamp(3.65rem, 16vw, 5.9rem); line-height: .88; }
  .hero-lede { max-width: 94%; margin-top: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 17px; margin-top: 30px; }
  .hero-note, .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding-block: 8px; }
  .trust-grid > div { min-height: 70px; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(n+3) { border-bottom: 0; }
  .trust-grid strong { font-size: 1.5rem; }
  .trust-grid span { max-width: 86px; font-size: .56rem; }

  .intro-grid, .split-heading, .faq-grid, .page-intro, .itinerary-section, .story-grid, .contact-grid, .meeting-grid, .legal-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 56px; }
  .intro-visual { min-height: 530px; }
  .intro-photo { width: 86%; height: 530px; }
  .quote-card { bottom: 25px; width: 73%; padding: 24px; }
  .authentic-stamp { right: 0; top: 40px; }
  .split-heading, .page-intro { gap: 28px; }
  .section-heading { margin-bottom: 42px; }
  .tour-card { min-height: 405px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card { min-height: auto; padding: 44px 29px; border-right: 0; border-bottom: 1px solid var(--sand-deep); }
  .promise-card:last-child { border-bottom: 0; }
  .promise-card h3 { margin-top: 28px; }
  .experience-feature { grid-template-columns: 1fr; }
  .experience-image { min-height: 510px; }
  .experience-panel { padding: 74px 27px; }
  .gallery-heading { flex-direction: column; align-items: flex-start; gap: 26px; }
  .gallery-ribbon { grid-template-columns: 1.2fr .8fr; }
  .gallery-shot { height: 260px !important; }
  .gallery-shot:nth-child(3) { grid-column: span 2; }
  .gallery-shot:nth-child(n+4) { display: none; }
  .faq-grid { gap: 52px; }
  .faq-intro { position: static; }
  .closing-cta::after { width: 100%; opacity: .13; }
  .footer-lead { grid-template-columns: 1fr; gap: 30px; padding: 42px; }
  .footer-statement { max-width: 520px; }
  .footer-lead-actions { min-width: 0; flex-direction: row; justify-self: start; }
  .footer-lead-action, .footer-lead-whatsapp { min-width: 205px; }
  .footer-main { gap: 40px; padding-block: 54px 48px; }
  .footer-columns { gap: 28px; }
  .footer-socials { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding-block: 20px; }
  .footer-legal { gap: 5px 18px; }

  .inner-hero { min-height: 620px; height: 82svh; }
  .inner-hero-content { padding-top: 176px; }
  .inner-hero h1 { font-size: clamp(3.75rem, 15vw, 5.6rem); }
  .inner-hero-content > p:not(.eyebrow) { max-width: 95%; }
  .breadcrumbs { top: calc(82svh - 56px); }
  .filter-bar { margin-top: -40px; }
  .destination-row { grid-template-columns: 1fr; min-height: 0; margin-bottom: 28px; }
  .destination-row:nth-child(even) .destination-photo { order: 0; }
  .destination-photo { min-height: 360px; }
  .destination-copy { padding: 45px 12px; }
  .destination-list { padding-bottom: 65px; }
  .itinerary-section { gap: 48px; }
  .story-grid { gap: 58px; }
  .story-image, .story-image img { min-height: 0; height: 550px; }
  .vertical-caption { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card { border-bottom: 1px solid var(--line); }
  .value-card:nth-child(2) { border-right: 0; }
  .host-mosaic { grid-template-columns: 1fr 1fr; }
  .host-mosaic > figure { height: 420px; }
  .host-mosaic > figure:nth-child(2) { height: 320px; }
  .mosaic-copy { grid-column: span 2; padding: 38px 0 0; }
  .gallery-wall { columns: 2; }
  .gallery-item figcaption { opacity: 1; }
  .gallery-cta { flex-direction: column; align-items: flex-start; margin-bottom: 86px; padding: 34px; }
  .contact-grid { gap: 55px; }
  .enquiry-form { padding: 31px; }
  .meeting-grid { min-height: auto; padding-block: 78px; gap: 48px; }
  .meeting-image { height: 390px; }
  .legal-grid { gap: 46px; }
  .legal-nav { position: static; }
  .legal-hero { padding: 165px 0 65px; }
}

@media (max-width: 760px) {
  .footer-lead-actions { width: 100%; }
  .footer-lead-action, .footer-lead-whatsapp { min-width: 0; flex: 1 1 0; }
  .footer-brand { display: block; }
  .footer-logo-panel { width: fit-content; }
  .footer-brand > p { max-width: 540px; margin: 22px 0 0; padding: 0; border-inline-start: 0; }
  .footer-trust { margin-top: 16px; padding: 0; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 30px; }
  .footer-useful { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 22px; }
  .footer-useful .footer-label { grid-column: 1 / -1; }
  .footer-socials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .nav-shell { width: calc(100% - 18px); }
  .brand img { width: 150px; }
  .is-scrolled .brand img { width: 142px; }
  .site-footer { padding-top: 42px; }
  .footer-lead { gap: 24px; padding: 29px 22px; border-radius: 18px; }
  .footer-statement { font-size: clamp(2rem, 11vw, 2.7rem); }
  .footer-lead-note { margin-top: 14px; }
  .footer-lead-actions { flex-direction: column; }
  .footer-lead-action, .footer-lead-whatsapp { width: 100%; }
  .footer-main { gap: 36px; padding-block: 48px 42px; }
  .footer-logo-panel { padding: 11px 12px; border-radius: 10px; }
  .footer-brand img { width: min(250px, 100%); }
  .footer-columns { grid-template-columns: 1fr; gap: 27px; }
  .footer-column { padding-bottom: 23px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .footer-useful { grid-column: auto; display: flex; padding-bottom: 0; border-bottom: 0; }
  .footer-useful .footer-label { grid-column: auto; }
  .footer-connect { gap: 18px; padding-block: 26px; }
  .footer-socials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-socials a { min-height: 44px; padding-inline: 9px; }
  .footer-bottom { padding-block: 22px 82px; }
  .footer-legal { width: 100%; gap: 4px 16px; }
  .footer-back-top { width: 100%; margin: 4px 0 0; }
  .hero .eyebrow { max-width: 290px; line-height: 1.5; }
  .trust-grid > div { justify-content: flex-start; padding-left: 13px; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card { min-height: 440px; }
  .quote-card p { font-size: 1.14rem; }
  .gallery-shot { height: 215px !important; }
  .faq-list summary { grid-template-columns: 28px 1fr 18px; gap: 9px; font-size: 1.06rem; }
  .faq-list details p { margin-left: 37px; margin-right: 18px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; justify-content: center; padding: 0; }
  .whatsapp-float .whatsapp-label { display: none; }
  .whatsapp-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .destination-photo { min-height: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0; }
  .host-mosaic { display: block; }
  .host-mosaic > figure, .host-mosaic > figure:nth-child(2) { height: 360px; margin-bottom: 14px; }
  .gallery-wall { columns: 1; }
  .field-pair { grid-template-columns: 1fr; }
  .date-field-grid { grid-template-columns: 1fr; gap: 10px; }
  .enquiry-form { padding: 24px 19px; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .meeting-image { height: 300px; }
  .policy-row { grid-template-columns: 1fr; gap: 3px; }
  .lightbox { padding: 20px; }
}

html[dir="rtl"] {
  --serif: "Segoe UI", Tahoma, Arial, sans-serif;
  --sans: "Segoe UI", Tahoma, Arial, sans-serif;
}
html[dir="rtl"] body { direction: rtl; line-height: 1.85; }
html[dir="rtl"] :where(h1, h2, h3, p, a, button, label, summary, span, strong, blockquote, select) {
  letter-spacing: normal;
}
html[dir="rtl"] :where(h1, h2, h3) { line-height: 1.3; }
html[dir="rtl"] :where(h1, h2, h3) em { font-style: normal; }
html[dir="rtl"] .language-menu { right: auto; left: 0; text-align: right; }
html[dir="rtl"] .gtranslate_wrapper select {
  padding: 8px 11px 8px 34px;
  background-position: left 11px center;
}
html[dir="rtl"] .language-code { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .hero-note { right: auto; left: 5vw; }
html[dir="rtl"] .scroll-cue { right: 3vw; left: auto; }
html[dir="rtl"] .trust-grid > div { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .trust-grid > div:last-child { border-left: 0; }
html[dir="rtl"] .intro-photo { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .quote-card { right: 0; left: auto; }
html[dir="rtl"] .authentic-stamp { right: auto; left: -10px; }
html[dir="rtl"] .tour-number { right: 22px; left: auto; }
html[dir="rtl"] .destination-index { right: 24px; left: auto; }
html[dir="rtl"] .promise-card { border-right: 0; border-left: 1px solid var(--sand-deep); }
html[dir="rtl"] .value-card { border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .promise-card:last-child,
html[dir="rtl"] .value-card:last-child { border-left: 0; }
html[dir="rtl"] .promise-number { right: auto; left: 36px; }
html[dir="rtl"] .story-copy blockquote {
  padding: 23px 28px 23px 0; border-right: 2px solid var(--gold); border-left: 0;
}
html[dir="rtl"] .mosaic-copy { padding-right: 42px; padding-left: 0; }
html[dir="rtl"] .contact-method > span { right: auto; left: 3px; transform: translateY(-50%) scaleX(-1); }
html[dir="rtl"] .meeting-image span { right: 20px; left: auto; }
html[dir="rtl"] .faq-list details p { margin-right: 37px; margin-left: 18px; }
html[dir="rtl"] :where(input[type="email"], input[type="tel"], input[type="url"]) {
  direction: ltr; text-align: left;
}
html[dir="rtl"] .button-arrow { transform: scaleX(-1); }
html[dir="rtl"] .button:hover .button-arrow { transform: translateX(-4px) scaleX(-1); }

@media (max-width: 900px) {
  html[dir="rtl"] .authentic-stamp { right: auto; left: 0; }
  html[dir="rtl"] .promise-card,
  html[dir="rtl"] .value-card { border-left: 0; }
}

@media (max-width: 620px) {
  html[dir="rtl"] .trust-grid > div { padding-right: 13px; padding-left: 0; }
  html[dir="rtl"] .trust-grid > div:nth-child(2) { border-left: 0; }
  html[dir="rtl"] .mosaic-copy { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
