/* ============================================================
   NOOR CONCIERGE — Design System (production-ready)
   Palette: Navy #1a2b3f · Gold #d4af37 · Cream #f5f1e8
   Typo: Cormorant Garamond (display) + Montserrat (body)
   ============================================================ */

:root {
  --navy: #1a2b3f;
  --navy-2: #223448;
  --navy-3: #0f1a26;
  --gold: #d4af37;
  --gold-2: #b9962c;
  --gold-soft: #e4c769;
  --cream: #f5f1e8;
  --cream-2: #ebe5d6;
  --ink: #0a0a0a;
  --gray: #8b8b8b;
  --line: rgba(212, 175, 55, 0.22);
  --line-dark: rgba(26, 43, 63, 0.14);
  /* Moroccan accents — terracotta / zellige blue / henna / mint */
  --terracotta: #b5532a;
  --terracotta-2: #8d3d1d;
  --henna: #6b2d1a;
  --zellige-blue: #1f4a6b;
  --mint: #3a6b5e;
  --saffron: #d98e3b;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1280px;
  --pad: clamp(20px, 5vw, 80px);

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-arabic: "Noto Naskh Arabic", "Amiri", "Cormorant Garamond", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body[dir="rtl"] { font-family: var(--font-arabic); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.row { display: flex; align-items: center; }
.stack { display: flex; flex-direction: column; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(26, 43, 63, 0.72);
  max-width: 58ch;
}
.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 350ms var(--ease);
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 350ms var(--ease);
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 26px; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(212,175,55,0.25); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 241, 232, 0.32);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  transition: background 400ms var(--ease), padding 400ms var(--ease), color 400ms var(--ease);
}
.nav.scrolled {
  background: rgba(15, 26, 38, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: 14px var(--pad);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* keep colours vivid on any bg */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.nav__logo img:hover { opacity: 0.88; transform: scale(1.03); }
.nav__logo svg { display: none; }
.nav__logo span { display: none; }
.nav__links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 18px; }

/* Language switcher */
.lang {
  position: relative;
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 241, 232, 0.22);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 300ms var(--ease);
}
.lang__btn:hover { border-color: var(--gold); color: var(--gold); }
.lang__btn svg { width: 12px; height: 12px; transition: transform 300ms var(--ease); }
.lang__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #0f1a26;
  border: 1px solid rgba(212,175,55,0.25);
  padding: 8px;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}
.lang__menu.open { display: block; animation: fadeDown 280ms var(--ease) both; }
.lang__menu button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-align: left;
}
.lang__menu button:hover { background: rgba(212,175,55,0.1); color: var(--gold); }
.lang__menu button.active { color: var(--gold); }
.lang__menu .flag { font-size: 16px; line-height: 1; }
.lang__menu .code { margin-left: auto; font-size: 10px; letter-spacing: 0.2em; opacity: 0.5; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: heroKen 14s var(--ease-out) forwards;
}
@keyframes heroKen {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,26,38,0.55) 0%, rgba(15,26,38,0.35) 40%, rgba(15,26,38,0.88) 100%),
    linear-gradient(90deg, rgba(15,26,38,0.72) 0%, rgba(15,26,38,0.0) 55%);
}
/* Hero logo mark */
.hero__logo-mark {
  margin-bottom: 28px;
}
.hero__logo-mark img {
  width: 110px;
  height: auto;
  display: block;
  /* white glow for visibility on any hero image */
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.22)) drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}

.hero__inner {
  position: relative;
  min-height: 100vh;
  padding: 160px var(--pad) 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin: 0 0 30px;
}
.hero__title span { display: block; }
.hero__title .it {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.82);
  max-width: 48ch;
  margin: 0 0 40px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__meta {
  justify-self: end;
  align-self: end;
  max-width: 360px;
  border-left: 1px solid rgba(212,175,55,0.4);
  padding: 16px 0 16px 24px;
}
.hero__meta .eyebrow { color: var(--gold); margin-bottom: 14px; }
.hero__meta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 18px;
  color: var(--cream);
}
.hero__meta .sig {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.6);
}

/* Hero marquee of places */
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
  background: rgba(10,17,27,0.55);
  backdrop-filter: blur(6px);
}
.hero__marquee .track {
  display: flex;
  gap: 48px;
  padding: 16px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(245,241,232,0.7);
}
.hero__marquee .track span { display: inline-flex; align-items: center; gap: 48px; }
.hero__marquee .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll cue */
.hero__cue {
  position: absolute;
  right: var(--pad);
  bottom: 72px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__cue::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
  animation: pulseLine 2.4s var(--ease) infinite;
}
@keyframes pulseLine {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ---------- Section base ---------- */
section { position: relative; }
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section--dark {
  background: var(--navy);
  color: var(--cream);
}
.section--dark .lede { color: rgba(245,241,232,0.72); }
.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%23d4af37' stroke-opacity='.06' stroke-width='1'><path d='M40 0 L80 40 L40 80 L0 40 Z'/><path d='M40 14 L66 40 L40 66 L14 40 Z'/></g></svg>");
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.6;
}
.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section__head .eyebrow { margin-bottom: 20px; }
@media (max-width: 900px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Stats bar ---------- */
.stats {
  background: var(--navy);
  color: var(--cream);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
  color: var(--gold);
}
.stat .num sup { font-size: 0.4em; vertical-align: super; }
.stat .lbl {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
}
@media (max-width: 800px) { .stats__inner { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services grid (collection) ---------- */
.collection {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.collection .card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  min-height: 420px;
  cursor: pointer;
  isolation: isolate;
}
.collection .card--lg { grid-column: span 4; min-height: 520px; }
.collection .card--md { grid-column: span 2; }
.collection .card--sm { grid-column: span 3; }
.collection .card--wide { grid-column: span 6; min-height: 380px; }
.collection .card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease), filter 600ms var(--ease);
  filter: saturate(0.95) brightness(0.72);
}
.collection .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,26,38,0.15) 0%, rgba(15,26,38,0.25) 50%, rgba(15,26,38,0.92) 100%);
  z-index: 1;
}
.collection .card:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(0.78); }
.collection .card .body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.collection .card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.collection .card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}
.collection .card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(245,241,232,0.78);
  margin: 0;
  max-width: 48ch;
}
.collection .card .more {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.collection .card .more .arrow {
  width: 18px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 300ms var(--ease);
}
.collection .card .more .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}
.collection .card:hover .more .arrow { width: 34px; }
.collection .card .tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  padding: 6px 12px;
  border: 1px solid rgba(212,175,55,0.5);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(15,26,38,0.55);
  backdrop-filter: blur(6px);
}
@media (max-width: 1100px) {
  .collection { grid-template-columns: repeat(2, 1fr); }
  .collection .card, .collection .card--lg, .collection .card--md, .collection .card--sm, .collection .card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .collection { grid-template-columns: 1fr; }
  .collection .card, .collection .card--lg, .collection .card--md, .collection .card--sm, .collection .card--wide { grid-column: span 1; min-height: 380px; }
}

/* ---------- Signature / about ---------- */
.signature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.signature__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.signature__media img { width: 100%; height: 100%; object-fit: cover; }
.signature__media::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 46%;
  aspect-ratio: 1/1;
  border: 1px solid var(--gold);
  z-index: -1;
}
.signature__media::after {
  content: "";
  position: absolute;
  inset: auto auto -14px -14px;
  width: 40%;
  aspect-ratio: 1/1;
  border: 1px solid var(--gold);
  z-index: -1;
}
.signature__body .kicker { margin-bottom: 18px; display: inline-block; }
.signature__body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.45;
  color: var(--navy);
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--gold);
}
.signature__pill-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.pill {
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: #fff;
}
.pill .k {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
}
.pill .v {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
@media (max-width: 900px) {
  .signature { grid-template-columns: 1fr; gap: 40px; }
  .signature__pill-row { grid-template-columns: 1fr 1fr; }
}

/* ---------- Destinations ---------- */
.destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.destination {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.destination:nth-child(2) { margin-top: 40px; }
.destination:nth-child(3) { margin-top: 0px; }
.destination:nth-child(4) { margin-top: 60px; }
.destination img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease);
}
.destination::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,26,38,0.05) 40%, rgba(15,26,38,0.9) 100%);
}
.destination .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--cream);
  z-index: 2;
}
.destination .meta h3 {
  font-family: var(--font-display);
  font-size: 34px;
  margin: 0 0 4px;
  font-weight: 500;
}
.destination .meta .c {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.destination:hover img { transform: scale(1.08); }
@media (max-width: 900px) {
  .destinations { grid-template-columns: 1fr 1fr; }
  .destination:nth-child(n) { margin-top: 0; }
}

/* ---------- Experience split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  color: var(--cream);
}
.split__media {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(26,43,63,0.45) 100%);
}
.split__body {
  padding: clamp(60px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.split__body .h2 { margin: 0; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 360px; }
}

/* ---------- Fleet ---------- */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vehicle {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.vehicle:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(26,43,63,0.14); }
.vehicle__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.vehicle__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.vehicle:hover .vehicle__media img { transform: scale(1.06); }
.vehicle__body { padding: 24px 24px 26px; }
.vehicle__body .cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.vehicle__body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 10px;
}
.vehicle__body p {
  font-size: 14px;
  color: rgba(26,43,63,0.72);
  margin: 0 0 14px;
  line-height: 1.55;
}
.vehicle__specs {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,43,63,0.6);
}
.vehicle__specs b { color: var(--navy); font-weight: 600; }
@media (max-width: 900px) { .fleet { grid-template-columns: 1fr; } }

/* ---------- Moments strip (gallery ribbon) ---------- */
.moments {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #fff;
}
.moments__track {
  display: flex;
  gap: 18px;
  padding: 18px;
  animation: marquee 48s linear infinite;
}
.moments__track img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  flex: 0 0 auto;
  filter: saturate(0.96);
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--navy-2);
  padding: 40px;
  border-top: 2px solid var(--gold);
  color: var(--cream);
}
.quote .mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
}
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  margin: 14px 0 24px;
  color: var(--cream);
}
.quote .who {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
}
.quote .who b { color: var(--gold); font-weight: 500; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Process timeline ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 32px 32px 32px 0;
  border-top: 1px solid rgba(212,175,55,0.25);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 24px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
}
.step p {
  font-size: 13.5px;
  color: rgba(245,241,232,0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 30ch;
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  position: relative;
  overflow: hidden;
  background: var(--navy-3);
  color: var(--cream);
  isolation: isolate;
}
.cta-band__bg {
  position: absolute; inset: 0; z-index: -2;
}
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: saturate(0.8); }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 500px at 50% 100%, rgba(212,175,55,0.2), transparent 70%);
}
.cta-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cta-band .h2 { color: var(--cream); }
.cta-band .h2 em { color: var(--gold); }
.cta-band .lede { color: rgba(245,241,232,0.75); margin: 18px auto 36px; }

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__form {
  background: #fff;
  padding: 42px;
  border: 1px solid var(--line-dark);
}
.contact__form .field { margin-bottom: 20px; }
.contact__form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: border-color 280ms var(--ease), background 280ms var(--ease);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact__form textarea { min-height: 120px; resize: vertical; }
.contact__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__aside h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 22px;
  font-weight: 500;
}
.contact__aside .line {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: flex-start;
}
.contact__aside .line:last-child { border-bottom: 0; }
.contact__aside .line svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--gold); margin-top: 3px; }
.contact__aside .line b {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.contact__aside .line span {
  font-size: 15px;
  color: var(--navy);
}
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact__row2 { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-3);
  color: var(--cream);
  padding: 80px var(--pad) 32px;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto 56px;
}
.footer__grid h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.footer__grid ul { list-style: none; margin: 0; padding: 0; }
.footer__grid li { padding: 6px 0; font-size: 14px; color: rgba(245,241,232,0.75); transition: color 300ms var(--ease); }
.footer__grid li:hover { color: var(--gold); cursor: pointer; }
.footer__brand .logo {
  margin-bottom: 20px;
  display: block;
}
.footer__brand .logo img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  /* on dark footer the gradient colours are naturally vivid */
  filter: brightness(1.08) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.footer__brand .logo svg,
.footer__brand .logo span { display: none; }
.footer__brand p {
  font-size: 14px;
  color: rgba(245,241,232,0.72);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 40ch;
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.2);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.5);
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 120ms; }
[data-reveal][data-delay="2"] { transition-delay: 240ms; }
[data-reveal][data-delay="3"] { transition-delay: 360ms; }
[data-reveal][data-delay="4"] { transition-delay: 480ms; }

/* Split-text animation */
.split-line { overflow: hidden; display: block; }
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1100ms var(--ease-out);
}
.is-in .split-line > span, [data-splitin].is-in .split-line > span {
  transform: translateY(0);
}
.is-in .split-line:nth-child(2) > span { transition-delay: 120ms; }
.is-in .split-line:nth-child(3) > span { transition-delay: 240ms; }
.is-in .split-line:nth-child(4) > span { transition-delay: 360ms; }

/* ---------- Mobile nav ---------- */
.nav__burger {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid rgba(245,241,232,0.3);
  padding: 10px;
}
.nav__burger span { display: block; height: 1px; background: var(--cream); margin: 4px 0; transition: transform 300ms var(--ease); }
@media (max-width: 1050px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}

/* Small screens polish */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 140px; }
  .hero__meta { justify-self: start; }
  .hero__cue { display: none; }
}

/* ---------- Tweaks panel (custom) ---------- */
#tweaks-root .tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 64px rgba(26,43,63,0.18);
  z-index: 100;
  font-family: var(--font-body);
  display: none;
  overflow: hidden;
}
#tweaks-root .tweaks-panel.open { display: block; }
#tweaks-root .tp-head {
  padding: 16px 20px;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
#tweaks-root .tp-head .gold { color: var(--gold); }
#tweaks-root .tp-body { padding: 18px 20px; max-height: 60vh; overflow-y: auto; }
#tweaks-root .tp-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line-dark); }
#tweaks-root .tp-row:last-child { border-bottom: 0; }
#tweaks-root .tp-row label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); flex: 1; }
#tweaks-root .tp-row select, #tweaks-root .tp-row input {
  border: 1px solid var(--line-dark); padding: 6px 10px; font-family: var(--font-body); font-size: 12px; background: var(--cream);
}
#tweaks-root .sw { display: flex; gap: 6px; }
#tweaks-root .sw b { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line-dark); cursor: pointer; }
#tweaks-root .sw b.active { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================================================
   SERVICE PAGE — Private Concierge (template)
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { width: 18px; height: 1px; background: rgba(212,175,55,0.4); }
.breadcrumb .current { color: var(--gold); }

/* Service hero (editorial, half-image) */
.svc-hero {
  position: relative;
  color: var(--cream);
  background: var(--navy-3);
  overflow: hidden;
  padding: 180px var(--pad) 80px;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
  max-width: 100%;
}
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%23d4af37' stroke-opacity='.05' stroke-width='1'><path d='M40 0 L80 40 L40 80 L0 40 Z'/></g></svg>");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
.svc-hero__text {
  position: relative;
  z-index: 2;
  padding-left: max(var(--pad), calc((100vw - var(--container)) / 2));
  max-width: 700px;
}
.svc-hero__eye {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.svc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0 0 32px;
}
.svc-hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.svc-hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(245,241,232,0.85);
  max-width: 52ch;
  margin: 0 0 44px;
  padding-left: 22px;
  border-left: 1px solid rgba(212,175,55,0.4);
}
.svc-hero__meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(212,175,55,0.22);
  margin-top: 28px;
}
.svc-hero__meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.svc-hero__meta .m b {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}
.svc-hero__meta .m span {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.6);
}
.svc-hero__media {
  position: relative;
  z-index: 1;
  height: 80vh;
  max-height: 720px;
  overflow: hidden;
}
.svc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroKen 14s var(--ease-out) forwards;
}
.svc-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,26,38,0.35) 0%, transparent 30%);
}
.svc-hero__badge {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 3;
  padding: 10px 16px;
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(15,26,38,0.55);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 1050px) {
  .svc-hero { grid-template-columns: 1fr; gap: 40px; padding: 140px 0 60px; min-height: auto; }
  .svc-hero__text { padding: 0 var(--pad); }
  .svc-hero__media { height: 60vh; margin: 0 var(--pad); }
}

/* Promise row — three promises under hero */
.promise {
  background: var(--navy);
  color: var(--cream);
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.promise__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.promise__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
  border-left: 1px solid rgba(212,175,55,0.3);
}
.promise__item b {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 26px;
  font-weight: 400;
}
.promise__item p {
  font-size: 13px;
  color: rgba(245,241,232,0.72);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) { .promise__inner { grid-template-columns: 1fr; gap: 24px; } }

/* Narrative — editorial two-column intro */
.narrative {
  padding: clamp(100px, 12vw, 160px) 0;
  background: #fff;
}
.narrative__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.narrative__grid .label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
  border-top: 1px solid var(--gold);
  display: inline-block;
}
.narrative__grid p {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 400;
}
.narrative__grid p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 88px;
  float: left;
  line-height: 0.85;
  color: var(--gold);
  padding: 8px 14px 0 0;
}
.narrative__grid p.body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(26,43,63,0.78);
}
@media (max-width: 900px) { .narrative__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Capabilities — dense orchestrated grid */
.capabilities {
  background: var(--cream);
  padding: clamp(90px, 10vw, 140px) 0;
}
.capgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.capgrid__item {
  grid-column: span 4;
  background: #fff;
  padding: 34px 32px 38px;
  position: relative;
  transition: background 400ms var(--ease);
}
.capgrid__item:hover { background: var(--cream); }
.capgrid__item.wide { grid-column: span 6; }
.capgrid__item.full { grid-column: span 12; padding: 40px 32px; }
.capgrid__item .n {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.capgrid__item .n::after { content: ""; flex: 1; height: 1px; background: var(--line-dark); }
.capgrid__item h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.15;
}
.capgrid__item p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26,43,63,0.72);
  margin: 0 0 14px;
}
.capgrid__item ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.capgrid__item ul li {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,43,63,0.6);
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
}
@media (max-width: 900px) {
  .capgrid__item, .capgrid__item.wide, .capgrid__item.full { grid-column: span 12; }
}

/* Day-in-the-life timeline */
.day {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.day::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'><g fill='none' stroke='%23d4af37' stroke-opacity='.05' stroke-width='1'><path d='M40 0 L80 40 L40 80 L0 40 Z'/></g></svg>");
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.55;
}
.day__inner { position: relative; z-index: 1; }
.day__list {
  position: relative;
  margin-top: 40px;
  border-left: 1px solid rgba(212,175,55,0.3);
  padding-left: 48px;
}
.day__item {
  position: relative;
  padding-bottom: 46px;
}
.day__item:last-child { padding-bottom: 0; }
.day__item::before {
  content: "";
  position: absolute;
  left: -53px;
  top: 10px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
}
.day__item .time {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.day__item h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
}
.day__item p {
  font-size: 14.5px;
  color: rgba(245,241,232,0.75);
  line-height: 1.7;
  margin: 0;
  max-width: 62ch;
}
.day__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.day__aside {
  position: sticky;
  top: 120px;
  padding: 34px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(15,26,38,0.55);
}
.day__aside h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.day__aside p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(245,241,232,0.9);
  margin: 0 0 22px;
}
.day__aside .sig {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.55);
}
@media (max-width: 900px) {
  .day__grid { grid-template-columns: 1fr; gap: 32px; }
  .day__aside { position: static; }
}

/* Gallery — mosaic */
.gallery {
  background: #fff;
  padding: clamp(90px, 10vw, 140px) 0;
}
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery__mosaic figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--navy-3);
}
.gallery__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.gallery__mosaic figure:hover img { transform: scale(1.05); }
.gallery__mosaic figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  padding: 4px 10px;
  background: rgba(15,26,38,0.55);
  backdrop-filter: blur(6px);
}
.g-tall { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 4; grid-row: span 2; }
.g-sm   { grid-column: span 2; grid-row: span 1; }
.g-md   { grid-column: span 3; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-tall, .g-wide, .g-sm, .g-md { grid-column: span 2; grid-row: span 1; }
}

/* Engagement / pricing module */
.engagement {
  background: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
}
.engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tier {
  background: #fff;
  padding: 42px 36px 40px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(26,43,63,0.1); }
.tier.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--gold);
}
.tier.featured .tier__name { color: var(--gold); }
.tier.featured p { color: rgba(245,241,232,0.75); }
.tier.featured ul li { color: rgba(245,241,232,0.82); border-color: rgba(212,175,55,0.2); }
.tier.featured .tier__price { color: var(--cream); }
.tier.featured .tier__price em { color: var(--gold); }
.tier.featured .tier__tag { color: var(--gold); background: transparent; border-color: var(--gold); }
.tier__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.tier__name {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
}
.tier__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: 0.005em;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.2;
}
.tier__price em {
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  margin-left: 6px;
  display: inline-block;
}
.tier p {
  font-size: 14px;
  color: rgba(26,43,63,0.72);
  line-height: 1.65;
  margin: 0 0 10px;
}
.tier ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 10px 0 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier ul li {
  font-size: 13px;
  color: rgba(26,43,63,0.82);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.tier .btn { margin-top: auto; align-self: stretch; justify-content: center; }
@media (max-width: 900px) { .engagement__grid { grid-template-columns: 1fr; } }

/* Related services */
.related {
  background: #fff;
  padding: clamp(80px, 10vw, 120px) 0;
  border-top: 1px solid var(--line-dark);
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.related__card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy);
}
.related__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.7);
  transition: transform 1200ms var(--ease), filter 600ms var(--ease);
}
.related__card:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(0.78); }
.related__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,26,38,0.9) 100%);
}
.related__card .body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
}
.related__card .body .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.related__card .body h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  margin: 6px 0 10px;
}
.related__card .body .arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 300ms var(--ease);
}
.related__card .body .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}
.related__card:hover .body .arrow { width: 40px; }
@media (max-width: 900px) { .related__grid { grid-template-columns: 1fr; } }

/* RTL tweaks */
body[dir="rtl"] .eyebrow::before { display: none; }
body[dir="rtl"] .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); margin-right: 12px; }
body[dir="rtl"] .hero__meta { border-left: 0; border-right: 1px solid rgba(212,175,55,0.4); padding: 16px 24px 16px 0; }
body[dir="rtl"] .signature__body blockquote { border-left: 0; border-right: 2px solid var(--gold); padding: 0 24px 0 0; }


/* ============================================================
   LA MAISON — About page
   ============================================================ */
.maison-hero {
  position: relative;
  padding: 180px var(--pad) 120px;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.maison-hero__bg {
  position: absolute; inset: 0; opacity: 0.18;
}
.maison-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.maison-hero__inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.maison-hero__logomark {
  margin-bottom: 24px;
}
.maison-hero__logomark img {
  width: 90px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.3)) drop-shadow(0 3px 10px rgba(0,0,0,0.6));
}
.maison-hero__eye {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.maison-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 7vw, 108px); line-height: 1.02;
  margin: 0 0 32px; color: var(--cream);
}
.maison-hero h1 em { font-style: italic; color: var(--gold); }
.maison-hero p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.5;
  color: rgba(245, 241, 232, 0.82); max-width: 720px; margin: 0 auto;
}

.founder {
  padding: 140px var(--pad);
  background: var(--cream);
}
.founder__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 100px; align-items: center;
}
.founder__media {
  aspect-ratio: 4/5;
  background: var(--navy); overflow: hidden;
  position: relative;
}
.founder__media::after {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--gold); pointer-events: none;
  transform: translate(24px, 24px);
  opacity: 0.35;
}
.founder__media img { width: 100%; height: 100%; object-fit: cover; }
.founder__body .eyebrow { margin-bottom: 24px; }
.founder__body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 4vw, 64px); line-height: 1.05;
  margin: 0 0 32px;
}
.founder__body h2 em { color: var(--gold); font-style: italic; }
.founder__body p {
  font-size: 16px; line-height: 1.8; color: var(--navy-2);
  margin: 0 0 20px;
}
.founder__body blockquote {
  margin: 36px 0 0; padding: 0 0 0 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1.5; color: var(--navy);
}
.founder__body .sig {
  margin-top: 16px; font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) {
  .founder__inner { grid-template-columns: 1fr; gap: 60px; }
}

.pillars {
  padding: 120px var(--pad);
  background: var(--navy); color: var(--cream);
}
.pillars__inner { max-width: var(--container); margin: 0 auto; }
.pillars__head { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.pillars__head .eyebrow { color: var(--gold); justify-content: center; display: flex; }
.pillars__head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05; margin: 20px 0 0; color: var(--cream);
}
.pillars__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pillar {
  padding: 40px 28px;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.02);
  transition: all 400ms var(--ease);
}
.pillar:hover { border-color: var(--gold); background: rgba(212,175,55,0.05); }
.pillar__n {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; color: var(--gold); margin-bottom: 28px;
}
.pillar h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; margin: 0 0 14px; color: var(--cream);
}
.pillar p {
  font-size: 14px; line-height: 1.7;
  color: rgba(245, 241, 232, 0.72); margin: 0;
}
@media (max-width: 1000px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars__grid { grid-template-columns: 1fr; } }

.team {
  padding: 140px var(--pad);
  background: var(--cream);
}
.team__inner { max-width: var(--container); margin: 0 auto; }
.team__head { max-width: 680px; margin-bottom: 80px; }
.team__head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1.05;
  margin: 20px 0 20px;
}
.team__head h2 em { color: var(--gold); font-style: italic; }
.team__head .lede { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--navy-2); }
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.member {
  display: flex; flex-direction: column;
}
.member__media {
  aspect-ratio: 4/5;
  background: var(--navy-2); overflow: hidden;
  margin-bottom: 24px;
}
.member__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.member:hover .member__media img { transform: scale(1.04); }
.member h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 26px; margin: 0 0 4px;
}
.member .role {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.member p {
  font-size: 14px; line-height: 1.7;
  color: var(--navy-2); margin: 0;
}
@media (max-width: 900px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team__grid { grid-template-columns: 1fr; } }

.values-band {
  padding: 100px var(--pad);
  background: var(--cream-2);
}
.values-band__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
.value { text-align: left; }
.value .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 48px; color: var(--gold); margin-bottom: 20px;
  line-height: 1;
}
.value h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; margin: 0 0 14px;
}
.value p { font-size: 14px; line-height: 1.7; color: var(--navy-2); margin: 0; }
@media (max-width: 800px) { .values-band__inner { grid-template-columns: 1fr; gap: 40px; } }

.press {
  padding: 80px var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.press__inner {
  max-width: var(--container); margin: 0 auto;
  text-align: center;
}
.press__eye {
  font-size: 11px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 40px;
}
.press__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 60px;
}
.press__row span {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--navy-2);
  opacity: 0.7; transition: opacity 300ms;
}
.press__row span:hover { opacity: 1; }

/* ============================================================
   ENQUIRY — Long form page
   ============================================================ */
.enq-hero {
  padding: 180px var(--pad) 100px;
  background: var(--cream);
  text-align: center;
}
.enq-hero__inner { max-width: 900px; margin: 0 auto; }
.enq-hero__eye {
  font-size: 12px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.enq-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 7vw, 108px); line-height: 1.02;
  margin: 0 0 32px;
}
.enq-hero h1 em { color: var(--gold); font-style: italic; }
.enq-hero p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.5;
  color: var(--navy-2); max-width: 720px; margin: 0 auto;
}
.enq-hero .meta {
  margin-top: 48px;
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap;
}
.enq-hero .meta div { text-align: center; }
.enq-hero .meta b {
  display: block;
  font-family: var(--font-display); font-size: 32px;
  color: var(--gold); font-weight: 500;
}
.enq-hero .meta span {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gray);
}

.enq-form {
  padding: 120px var(--pad);
  background: #fff;
}
.enq-form__inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 60px;
}
.enq-step {
  border-top: 1px solid var(--line-dark);
  padding-top: 48px;
}
.enq-step__head {
  display: flex; align-items: baseline;
  gap: 24px; margin-bottom: 36px;
}
.enq-step__n {
  font-family: var(--font-display); font-style: italic;
  font-size: 48px; color: var(--gold); line-height: 1;
}
.enq-step__title h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; margin: 0 0 6px;
}
.enq-step__title p {
  font-size: 13px; color: var(--gray); margin: 0;
  line-height: 1.6;
}
.enq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.enq-grid.single { grid-template-columns: 1fr; }
.enq-field label {
  display: block;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px; font-weight: 500;
}
.enq-field input,
.enq-field select,
.enq-field textarea {
  width: 100%;
  padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--line-dark);
  background: transparent; font-family: var(--font-body);
  font-size: 15px; color: var(--navy);
  outline: none; transition: border-color 200ms;
}
.enq-field textarea { resize: vertical; min-height: 100px; }
.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus { border-color: var(--gold); }
.enq-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.enq-chip {
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy-2);
  cursor: pointer; transition: all 200ms;
  background: transparent;
  font-family: var(--font-body);
}
.enq-chip:hover { border-color: var(--gold); color: var(--navy); }
.enq-chip.active {
  background: var(--navy); border-color: var(--navy);
  color: var(--cream);
}
.enq-nda {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; border: 1px solid var(--line);
  background: rgba(212,175,55,0.05);
}
.enq-nda input { margin-top: 2px; }
.enq-nda label {
  font-size: 13px; line-height: 1.6;
  color: var(--navy-2); cursor: pointer;
}
.enq-submit {
  text-align: center; padding-top: 20px;
}
.enq-submit .note {
  font-size: 12px; color: var(--gray);
  margin-top: 16px; letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .enq-grid { grid-template-columns: 1fr; }
  .enq-step__head { flex-direction: column; gap: 8px; }
}

.enq-trust {
  padding: 100px var(--pad);
  background: var(--cream);
}
.enq-trust__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.enq-trust__item {
  padding: 36px 28px;
  border: 1px solid var(--line-dark);
  background: #fff;
  text-align: left;
}
.enq-trust__item svg {
  width: 28px; height: 28px; color: var(--gold);
  margin-bottom: 20px;
}
.enq-trust__item h5 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; margin: 0 0 10px;
}
.enq-trust__item p {
  font-size: 13px; line-height: 1.7;
  color: var(--navy-2); margin: 0;
}
@media (max-width: 900px) { .enq-trust__inner { grid-template-columns: 1fr; } }

/* ============================================================
   DESTINATION — page template
   ============================================================ */
.dest-hero {
  position: relative;
  height: 85vh; min-height: 640px;
  overflow: hidden;
  color: var(--cream);
}
.dest-hero__bg { position: absolute; inset: 0; }
.dest-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.dest-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,28,0.5) 0%, rgba(10,18,28,0.3) 40%, rgba(10,18,28,0.85) 100%);
}
.dest-hero__inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 100px;
  max-width: var(--container); margin: 0 auto;
}
.dest-hero .breadcrumb a { color: rgba(245,241,232,0.7); }
.dest-hero .breadcrumb a:hover { color: var(--gold); }
.dest-hero .breadcrumb .current { color: var(--cream); }
.dest-hero__coord {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin: 32px 0 20px;
}
.dest-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(72px, 10vw, 160px); line-height: 0.95;
  margin: 0 0 32px; color: var(--cream);
  letter-spacing: -0.01em;
}
.dest-hero h1 em { font-style: italic; color: var(--gold); }
.dest-hero p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.4;
  max-width: 720px; color: rgba(245,241,232,0.88);
  margin: 0;
}
.dest-hero__meta {
  margin-top: 40px;
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(212,175,55,0.25);
}
.dest-hero__meta div { display: flex; flex-direction: column; }
.dest-hero__meta b {
  font-family: var(--font-display); font-size: 24px;
  color: var(--gold); font-weight: 500;
}
.dest-hero__meta span {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,241,232,0.65);
  margin-top: 4px;
}

.dest-intro {
  padding: 140px var(--pad);
  background: var(--cream);
}
.dest-intro__inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.dest-intro .eyebrow { justify-content: center; display: inline-flex; margin-bottom: 24px; }
.dest-intro h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1.1;
  margin: 0 0 40px;
}
.dest-intro p {
  font-size: 16px; line-height: 1.9;
  color: var(--navy-2); margin: 0 0 20px;
  text-align: left;
}

.dest-houses {
  padding: 120px var(--pad);
  background: var(--navy); color: var(--cream);
}
.dest-houses__inner { max-width: var(--container); margin: 0 auto; }
.dest-houses__head { max-width: 720px; margin-bottom: 72px; }
.dest-houses__head .eyebrow { color: var(--gold); }
.dest-houses__head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1.05;
  color: var(--cream); margin: 20px 0 20px;
}
.dest-houses__head h2 em { color: var(--gold); font-style: italic; }
.dest-houses__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dest-house {
  background: var(--navy-2);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 400ms var(--ease);
}
.dest-house:hover { border-color: var(--gold); transform: translateY(-4px); }
.dest-house__media { aspect-ratio: 4/3; overflow: hidden; }
.dest-house__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.dest-house:hover .dest-house__media img { transform: scale(1.05); }
.dest-house__body { padding: 28px; }
.dest-house__tag {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.dest-house h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; color: var(--cream); margin: 0 0 8px;
}
.dest-house p {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,241,232,0.7); margin: 0;
}
@media (max-width: 900px) { .dest-houses__grid { grid-template-columns: 1fr; } }

.dest-chapters {
  padding: 140px var(--pad);
  background: var(--cream);
}
.dest-chapters__inner { max-width: var(--container); margin: 0 auto; }
.dest-chapter {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: 80px; align-items: center;
  margin-bottom: 120px;
}
.dest-chapter:nth-child(even) .dest-chapter__media { order: 2; }
.dest-chapter:last-child { margin-bottom: 0; }
.dest-chapter__media { aspect-ratio: 5/4; overflow: hidden; }
.dest-chapter__media img { width: 100%; height: 100%; object-fit: cover; }
.dest-chapter__n {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--gold); margin-bottom: 16px;
}
.dest-chapter h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4vw, 52px); line-height: 1.1;
  margin: 0 0 20px;
}
.dest-chapter p {
  font-size: 15px; line-height: 1.8;
  color: var(--navy-2); margin: 0 0 16px;
}
.dest-chapter ul {
  margin: 20px 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.dest-chapter li {
  padding: 6px 14px;
  border: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--navy-2);
}
@media (max-width: 900px) {
  .dest-chapter { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .dest-chapter:nth-child(even) .dest-chapter__media { order: 0; }
}

.dest-advice {
  padding: 120px var(--pad);
  background: var(--cream-2);
}
.dest-advice__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.dest-advice__body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4vw, 52px); line-height: 1.1;
  margin: 0 0 24px;
}
.dest-advice__body h2 em { color: var(--gold); font-style: italic; }
.dest-advice__body p {
  font-size: 15px; line-height: 1.8;
  color: var(--navy-2); margin: 0 0 16px;
}
.dest-advice__list {
  border-top: 1px solid var(--line-dark);
}
.dest-advice__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid; grid-template-columns: 120px 1fr;
  gap: 24px; align-items: baseline;
}
.dest-advice__item b {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--gold); font-weight: 400;
}
.dest-advice__item div { font-size: 14px; line-height: 1.6; color: var(--navy-2); }
.dest-advice__item div b {
  display: block; color: var(--navy); font-style: normal;
  font-size: 14px; font-family: var(--font-body);
  font-weight: 600; margin-bottom: 4px;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .dest-advice__inner { grid-template-columns: 1fr; gap: 50px; }
}

.dest-nav {
  padding: 120px var(--pad);
  background: var(--navy); color: var(--cream);
}
.dest-nav__inner {
  max-width: var(--container); margin: 0 auto;
}
.dest-nav__head { text-align: center; margin-bottom: 60px; }
.dest-nav__head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4vw, 56px); color: var(--cream);
  margin: 20px 0 0;
}
.dest-nav__head .eyebrow { color: var(--gold); justify-content: center; display: inline-flex; }
.dest-nav__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-nav__card {
  position: relative;
  aspect-ratio: 3/4; overflow: hidden;
  text-decoration: none; color: var(--cream);
}
.dest-nav__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.dest-nav__card:hover img { transform: scale(1.06); }
.dest-nav__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.dest-nav__body {
  position: absolute; bottom: 32px; left: 32px;
  z-index: 2;
}
.dest-nav__body h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; margin: 0;
}
.dest-nav__body span {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
@media (max-width: 900px) { .dest-nav__grid { grid-template-columns: 1fr; } }

/* ============================================================
   ADDITIONS — Excursions, Tour du Maroc, Stays, Videos, Gallery
   ============================================================ */

/* --- Excursions grid --- */
.excursions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exc {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.exc:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(26,43,63,0.14); }
.exc__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.exc__media img, .exc__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.exc:hover .exc__media img { transform: scale(1.05); }
.exc__duration {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(15,26,38,0.85);
  color: var(--gold);
  padding: 7px 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(212,175,55,0.35);
}
.exc__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.exc__cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.exc__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin: 8px 0 8px;
  line-height: 1.1;
}
.exc__body p {
  font-size: 13.5px;
  color: rgba(26,43,63,0.72);
  margin: 0 0 16px;
  line-height: 1.55;
}
.exc__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-2);
}
.exc__meta .from { color: var(--gold); font-family: var(--font-display); font-style: italic; font-size: 18px; letter-spacing: 0; text-transform: none; }
@media (max-width: 900px) { .excursions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .excursions { grid-template-columns: 1fr; } }

/* --- Tour du Maroc (itinerary) --- */
.tour {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.tour__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.tour__media img, .tour__media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tour__media::after {
  content: "";
  position: absolute; inset: auto auto -14px -14px;
  width: 40%; aspect-ratio: 1/1;
  border: 1px solid var(--gold);
  z-index: -1;
}
.tour__itinerary {
  list-style: none; padding: 0; margin: 36px 0 32px;
  border-top: 1px solid var(--line);
}
.tour__stage {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.tour__stage .day {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 30px;
}
.tour__stage h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--cream);
}
.tour__stage p {
  font-size: 13.5px;
  color: rgba(245,241,232,0.7);
  margin: 0;
  line-height: 1.55;
}
.tour__stage .km {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.tour__foot {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 8px;
}
.tour__foot .price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
}
@media (max-width: 900px) {
  .tour { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Stays (séjours) carousel-style grid --- */
.stays {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stay {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.stay img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.stay::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.stay__body {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  z-index: 2; color: var(--cream);
}
.stay__body .c {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.stay__body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 6px 0 4px;
}
.stay__body .n {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
.stay:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .stays { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stays { grid-template-columns: 1fr; } }

/* --- Video reel strip --- */
.reels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reel {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.25);
}
.reel video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.reel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.reel:hover video { transform: scale(1.04); }
.reel__label {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2; color: var(--cream);
}
.reel__label .c {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.reel__label h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin: 4px 0 0;
}
.reel__play {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: rgba(15,26,38,0.5);
  font-size: 11px;
}
@media (max-width: 900px) { .reels { grid-template-columns: 1fr 1fr; } }

/* --- Feature video split --- */
.video-split {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  color: var(--cream);
}
.video-split video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-split::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,26,38,0.92) 0%, rgba(15,26,38,0.4) 60%, rgba(15,26,38,0.1) 100%);
  z-index: -1;
}
.video-split__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 560px);
  gap: 24px;
}
.video-split__inner .h2 { color: var(--cream); }

/* Extended destinations: 6-col grid w/ irregular heights */
.dest-ext {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.dest-ext .destination { aspect-ratio: auto; }
.dest-ext .destination:nth-child(n) { margin-top: 0; }
.dest-ext .destination.s-tall { grid-column: span 2; min-height: 520px; }
.dest-ext .destination.s-wide { grid-column: span 3; min-height: 340px; }
.dest-ext .destination.s-sm   { grid-column: span 2; min-height: 340px; }
.dest-ext .destination.s-md   { grid-column: span 2; min-height: 420px; }
@media (max-width: 900px) {
  .dest-ext { grid-template-columns: 1fr 1fr; }
  .dest-ext .destination.s-tall, .dest-ext .destination.s-wide, .dest-ext .destination.s-sm, .dest-ext .destination.s-md {
    grid-column: span 2; min-height: 300px;
  }
}

/* ============================================================
   MOROCCAN SPIRIT — zellige, terracotta, henna, riad light
   ============================================================ */

/* Zellige / Moroccan star pattern (inline SVG tile) */
.pattern-zellige {
  background-color: transparent;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'><g fill='none' stroke='%23d4af37' stroke-width='0.6' stroke-opacity='0.18'><path d='M40 4 L46 18 L60 20 L50 30 L52 44 L40 38 L28 44 L30 30 L20 20 L34 18 Z'/><path d='M40 16 L43 24 L52 25 L46 31 L48 40 L40 36 L32 40 L34 31 L28 25 L37 24 Z'/><circle cx='40' cy='40' r='22'/></g></svg>");
  background-repeat: repeat;
}

/* Atmosphere band — terracotta glow */
.moroccan-band {
  position: relative;
  padding: 90px var(--pad);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(181,83,42,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(212,175,55,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #1a0f0a 0%, #2a1510 60%, #1a0a07 100%);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.moroccan-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120'><g fill='none' stroke='%23d4af37' stroke-width='0.7' stroke-opacity='0.12'><path d='M60 6 L70 28 L94 32 L76 48 L80 72 L60 60 L40 72 L44 48 L26 32 L50 28 Z'/><circle cx='60' cy='60' r='34'/></g></svg>");
  background-repeat: repeat;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}
.moroccan-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.moroccan-band h2 { color: var(--cream); margin: 0 0 20px; }
.moroccan-band .lede { color: rgba(245,241,232,0.8); }
.moroccan-band__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.moroccan-band__media img, .moroccan-band__media video { width: 100%; height: 100%; object-fit: cover; }
.moroccan-band__media::after {
  content:""; position:absolute; inset:0;
  border: 1px solid rgba(212,175,55,0.35);
  margin: 14px;
  pointer-events:none;
}
.moroccan-band__tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.moroccan-band__tags span {
  padding: 10px 16px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(0,0,0,0.25);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) {
  .moroccan-band__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Ornamental arch / mosaic dividers */
.arch-divider {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 46px;
  color: var(--gold);
  opacity: 0.8;
}

/* Mosaic 3-up strip (for interior pages) */
.mosaic3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.mosaic3 > * {
  overflow: hidden; position: relative;
}
.mosaic3 > * img, .mosaic3 > * video { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 300px; }
.mosaic3 > :first-child { grid-row: span 2; }
.mosaic3 > :first-child img, .mosaic3 > :first-child video { min-height: 100%; }
@media (max-width: 720px) {
  .mosaic3 { grid-template-columns: 1fr; }
  .mosaic3 > :first-child { grid-row: auto; }
}

/* Simple hero for interior pages */
.page-hero {
  position: relative;
  min-height: 72vh;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad) 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img, .page-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(15,26,38,0.35) 0%, rgba(15,26,38,0.2) 40%, rgba(15,26,38,0.9) 100%);
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; width: 100%; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(54px, 7vw, 110px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 20px 0 14px;
  color: var(--cream);
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero p.lede { color: rgba(245,241,232,0.82); max-width: 62ch; }
.page-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.6);
  margin-bottom: 20px;
}
.page-hero .crumbs a { color: var(--gold); }
.page-hero .crumbs span { margin: 0 10px; opacity: 0.5; }

/* Accent hairline with ornament (arch) */
.hairline {
  display:flex; align-items:center; gap:16px;
  margin: 18px auto 26px;
  justify-content:center;
  color: var(--gold);
  max-width: 320px;
}
.hairline::before, .hairline::after {
  content:""; flex:1; height:1px;
  background: currentColor; opacity:0.4;
}
.hairline svg { width: 22px; height: 22px; }

/* Simple feature 2-col */
.feature2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature2--rev { direction: rtl; }
.feature2--rev > * { direction: ltr; }
.feature2__media { aspect-ratio: 4/5; overflow:hidden; position: relative; }
.feature2__media img, .feature2__media video { width:100%; height:100%; object-fit:cover; }
@media (max-width: 900px) {
  .feature2 { grid-template-columns: 1fr; gap: 40px; }
}

/* Key-facts strip */
.keyfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 60px 0;
}
.keyfacts > div {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.keyfacts > div:last-child { border-right: 0; }
.keyfacts .k {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 30px;
  display:block;
  margin-bottom: 4px;
}
.keyfacts .v {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .keyfacts { grid-template-columns: 1fr 1fr; }
  .keyfacts > div { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* Experience list */
.exp-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.exp-list article {
  padding: 30px 0 30px;
  border-bottom: 1px solid var(--line-dark);
  display: grid; grid-template-columns: 60px 1fr; gap: 20px;
}
.exp-list article:nth-child(odd) { padding-right: 30px; border-right: 1px solid var(--line-dark); }
.exp-list article:nth-child(even) { padding-left: 30px; }
.exp-list .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}
.exp-list h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 6px;
}
.exp-list p {
  margin: 0; font-size: 13.5px; line-height: 1.6;
  color: rgba(26,43,63,0.72);
}
@media (max-width: 800px) {
  .exp-list { grid-template-columns: 1fr; }
  .exp-list article:nth-child(odd) { padding-right: 0; border-right: 0; }
  .exp-list article:nth-child(even) { padding-left: 0; }
}

/* ===== Maison band — cross-linking ===== */
.maison-band {
  background: #050b08;
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  padding: 28px var(--pad);
  text-align: center;
}
.maison-band__eye {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  opacity: 0.85;
}
.maison-band__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  align-items: center;
}
.maison-band__row a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: rgba(245,241,232,0.78);
  text-decoration: none;
  padding: 0 22px;
  transition: color 250ms var(--ease);
  white-space: nowrap;
}
.maison-band__row a:hover { color: var(--gold-soft); }
.maison-band__row a + a { border-left: 1px solid rgba(212,175,55,0.18); }
.maison-band__row a.is-active {
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 720px) {
  .maison-band { padding: 22px 16px; }
  .maison-band__row a { font-size: 13px; padding: 6px 14px; }
  .maison-band__row a + a { border-left: none; }
}
