/* ==================================================================
   Meraj Travel & Tours — Design System
   Hand-written CSS. No framework, no CDN dependency.
   ================================================================== */

/* ---- 1. TOKENS ------------------------------------------------- */
:root {
  /* Brand: deep maroon + warm gold, evoking heritage travel */
  --ink:            #1b1714;
  --ink-2:          #4a3f38;
  --ink-3:          #7d6e64;
  --maroon-900:     #2e0a0a;
  --maroon-800:     #4a0f0f;
  --maroon-700:     #6b1a15;
  --maroon-600:     #8f2820;
  --maroon-50:      #fbeeec;
  --gold-600:       #a8791d;
  --gold-500:       #c9962c;
  --gold-400:       #e0b44b;
  --gold-100:       #fdf0d0;
  --sand:           #faf7f1;
  --sand-2:         #f2ede3;
  --sand-3:         #e6ded0;
  --line:           #e0d7c8;
  --white:          #ffffff;
  --teal:           #176b62;
  --teal-50:        #e6f2f0;

  /* Type */
  --font-display: 'Fraunces', 'Bodoni Moda', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Space & shape */
  --page:      1240px;
  --narrow:    780px;
  --gap:       clamp(1.5rem, 4vw, 2.5rem);
  --section:   clamp(4.5rem, 9vw, 8rem);
  --r-sm:      8px;
  --r:         14px;
  --r-lg:      22px;
  --r-xl:      32px;

  --shadow-sm: 0 1px 2px rgba(27,23,20,.06), 0 2px 8px rgba(27,23,20,.04);
  --shadow:    0 4px 12px rgba(27,23,20,.07), 0 12px 32px rgba(27,23,20,.06);
  --shadow-lg: 0 12px 28px rgba(27,23,20,.10), 0 32px 64px rgba(27,23,20,.10);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---- 2. RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--maroon-700); text-decoration: none; }
a:hover { color: var(--maroon-600); }
ul, ol { padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--maroon-800); color: #fff;
  padding: .85rem 1.4rem; z-index: 200; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---- 3. TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--maroon-900);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.1rem; letter-spacing: 0; }
p  { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--maroon-600);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px;
  background: var(--gold-500); border-radius: 2px;
}
.eyebrow.center::before { display: none; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.2rem); color: var(--ink-2); }
.muted { color: var(--ink-3); }
.small { font-size: .875rem; }
.tiny  { font-size: .8rem; }
.serif { font-family: var(--font-display); }
.gold  { color: var(--gold-500); }

/* ---- 4. LAYOUT ------------------------------------------------- */
.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.narrow { max-width: var(--narrow); }
.section { padding-block: var(--section); }
.section.tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.bg-sand { background: var(--sand-2); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--maroon-900); color: rgba(255,255,255,.82); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }

.grid { display: grid; gap: var(--gap); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); }
/* Content column wider than the sidebar. Use this class rather than an inline
   grid-template-columns, which would outrank the single-column mobile rule. */
.split.split-wide { grid-template-columns: 1.55fr 1fr; }
.split.split-top { align-items: start; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}
.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-5{margin-bottom:3rem}

.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1rem; }

@media (max-width: 900px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: 1fr; }
  .split, .split.split-wide { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .g2, .g4 { grid-template-columns: 1fr; }
}

/* ---- 5. BUTTONS ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .95rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; border: 1.5px solid transparent; text-align: center;
}
.btn .mi { font-size: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--maroon-800); color: #fff; box-shadow: 0 6px 18px rgba(74,15,15,.24); }
.btn-primary:hover { background: var(--maroon-700); color: #fff; box-shadow: 0 12px 26px rgba(74,15,15,.30); }

.btn-gold { background: var(--gold-400); color: var(--maroon-900); box-shadow: 0 6px 18px rgba(224,180,75,.34); }
.btn-gold:hover { background: var(--gold-500); color: var(--maroon-900); }

.btn-ghost { border-color: var(--line); color: var(--maroon-800); background: var(--white); }
.btn-ghost:hover { border-color: var(--maroon-700); background: var(--maroon-50); color: var(--maroon-800); }

.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-light:hover { background: #fff; color: var(--maroon-900); }

.btn-wa { background: #1fa855; color: #fff; box-shadow: 0 6px 18px rgba(31,168,85,.28); }
.btn-wa:hover { background: #17924a; color: #fff; }

.btn-sm { padding: .7rem 1.15rem; font-size: .86rem; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .93rem; }
.link-arrow .mi { font-size: 1.1em; transition: transform .25s var(--ease); }
.link-arrow:hover .mi { transform: translateX(4px); }

/* ---- 6. ICONS -------------------------------------------------- */
.mi {
  font-family: 'Material Symbols Rounded';
  font-weight: normal; font-style: normal;
  line-height: 1; letter-spacing: normal; text-transform: none;
  display: inline-block; white-space: nowrap; direction: ltr;
  -webkit-font-feature-settings: 'liga'; font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.mi.fill { font-variation-settings: 'FILL' 1; }

.icon-badge {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--maroon-50); color: var(--maroon-700);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.icon-badge .mi { font-size: 1.6rem; }
.icon-badge.gold-bg { background: var(--gold-100); color: var(--gold-600); }
.icon-badge.teal-bg { background: var(--teal-50); color: var(--teal); }
.icon-badge.lg { width: 64px; height: 64px; border-radius: 20px; }
.icon-badge.lg .mi { font-size: 1.9rem; }

/* ---- 7. HEADER ------------------------------------------------- */
.topbar {
  background: var(--maroon-900); color: rgba(255,255,255,.8);
  font-size: .82rem; padding: .55rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: rgba(255,255,255,.88); }
.topbar a:hover { color: var(--gold-400); }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-item .mi { font-size: 1.05rem; color: var(--gold-400); }
.open-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #3ddc84;
  box-shadow: 0 0 0 3px rgba(61,220,132,.22); display: inline-block;
}
.open-dot.closed { background: #d98a3c; box-shadow: 0 0 0 3px rgba(217,138,60,.2); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,247,241,.98); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }

.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
/* The real Meraj emblem (M + aircraft). The supplied artwork already contains
   the wordmark, so only the emblem is used beside the type in the header —
   scaling the whole lock-up into a 78px bar would make its text unreadable. */
.logo-mark {
  width: auto; height: 46px; flex-shrink: 0; display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 700; color: var(--maroon-900); }
.logo-tag { font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: .1rem; flex-wrap: nowrap; }
.nav-links > li { position: relative; flex-shrink: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: .2rem; white-space: nowrap;
  padding: .6rem .7rem; border-radius: 100px;
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
@media (min-width: 1081px) and (max-width: 1300px) {
  .nav-link { padding: .55rem .5rem; font-size: .85rem; }
  .logo-tag { display: none; }
}
.nav-link:hover { background: var(--maroon-50); color: var(--maroon-800); }
.nav-link.active { color: var(--maroon-800); }
.nav-link.active::after {
  content: ''; position: absolute; left: .85rem; right: .85rem; bottom: .1rem;
  height: 2px; background: var(--gold-500); border-radius: 2px;
}
.nav-link .mi { font-size: 1.1rem; }

/* dropdown */
.has-sub > .nav-link { cursor: pointer; }
.subnav {
  position: absolute; top: calc(100% + .5rem); left: 0;
  min-width: 268px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem .75rem; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
}
.subnav a:hover { background: var(--sand-2); color: var(--maroon-800); }
.subnav a .mi { font-size: 1.2rem; color: var(--maroon-600); }

.nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

/* language switch */
.lang-switch { display: flex; gap: 2px; background: var(--sand-3); padding: 3px; border-radius: 100px; }
.lang-switch a {
  padding: .34rem .6rem; border-radius: 100px;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: var(--ink-3); text-transform: uppercase;
}
.lang-switch a.on { background: var(--white); color: var(--maroon-800); box-shadow: var(--shadow-sm); }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; color: var(--maroon-800); }
.burger .mi { font-size: 1.7rem; }
.burger:hover { background: var(--maroon-50); }

@media (max-width: 1080px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--sand); padding: 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 78px); overflow-y: auto;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: .85rem 1rem; font-size: 1rem; border-radius: var(--r-sm); }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--maroon-50); }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: .1rem 0 .4rem 1rem; padding: 0 0 0 .3rem;
    display: none;
  }
  .has-sub.open .subnav { display: block; }
  .has-sub > .nav-link .chev { margin-left: auto; transition: transform .25s var(--ease); }
  .has-sub.open > .nav-link .chev { transform: rotate(180deg); }
  .burger { display: grid; place-items: center; }
  .nav-actions .btn-quote { display: none; }
}
@media (max-width: 520px) {
  .logo-text { display: none; }
  .topbar-links .hide-xs { display: none; }
}

/* ---- 8. HERO --------------------------------------------------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,8,8,.90) 0%, rgba(46,10,10,.74) 45%, rgba(46,10,10,.34) 100%);
}
.hero-home { padding-block: clamp(4rem, 9vw, 7.5rem) clamp(5rem, 8vw, 7rem); color: #fff; }
.hero-home h1 { color: #fff; max-width: 17ch; }
.hero-home h1 em { font-style: normal; color: var(--gold-400); }
.hero-home .lead { color: rgba(255,255,255,.86); max-width: 52ch; margin-top: 1.5rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
  padding: .5rem 1rem; border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.6rem;
}
.hero-eyebrow .mi { font-size: 1.05rem; color: var(--gold-400); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .86rem; color: rgba(255,255,255,.82); }
.hero-trust .mi { font-size: 1.15rem; color: var(--gold-400); }

/* page hero (inner pages) */
.hero-page { padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(3.5rem, 7vw, 5rem); color: #fff; }
.hero-page h1 { color: #fff; max-width: 22ch; }
.hero-page .lead { color: rgba(255,255,255,.85); max-width: 58ch; margin-top: 1.15rem; }
.hero-page .hero-eyebrow { margin-bottom: 1.25rem; }

.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .82rem; margin-bottom: 1.5rem; color: rgba(255,255,255,.6); }
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs a:hover { color: var(--gold-400); }
.crumbs .mi { font-size: .95rem; }

/* ---- 9. QUICK ENQUIRY BAR ------------------------------------- */
.quickbar {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.35rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
}
.quickbar-title { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.quickbar-grid { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: .5rem; align-items: end; }
.qfield { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.qfield label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.qfield .ctl {
  display: flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .1rem .7rem; background: var(--sand); min-width: 0;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.qfield .ctl:focus-within { border-color: var(--maroon-600); background: var(--white); }
.qfield .ctl .mi { font-size: 1.15rem; color: var(--maroon-600); flex-shrink: 0; }
.qfield input, .qfield select {
  border: 0; background: none; padding: .7rem 0; width: 100%; min-width: 0;
  font-size: .92rem; outline: none; color: var(--ink-2);
}
.qfield input::placeholder { color: var(--ink-3); opacity: 1; }
.qfield select { cursor: pointer; appearance: none; }
.quickbar-note { font-size: .78rem; color: var(--ink-3); margin-top: .85rem; display: flex; align-items: center; gap: .4rem; }
.quickbar-note .mi { font-size: .95rem; }
@media (max-width: 980px) { .quickbar-grid { grid-template-columns: repeat(2, 1fr); } .quickbar-grid .qsubmit { grid-column: 1 / -1; } .qsubmit .btn { width: 100%; } }
@media (max-width: 520px) { .quickbar-grid { grid-template-columns: 1fr; } }

/* ---- 10. CARDS ------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.85rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sand-3); }
.card h3 { margin: 1.1rem 0 .6rem; }
.card p { font-size: .95rem; }
.card .link-arrow { margin-top: auto; padding-top: 1.15rem; }
.card:hover .icon-badge { background: var(--maroon-800); color: #fff; transform: scale(1.05); }
.card:hover .icon-badge.gold-bg { background: var(--gold-500); color: #fff; }

/* numbered step card */
.step { position: relative; padding-left: 0; }
.step-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--sand-3); line-height: 1; margin-bottom: .75rem;
}
.step h4 { color: var(--maroon-900); font-size: 1.14rem; margin-bottom: .5rem; font-family: var(--font-display); }
.step p { font-size: .93rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.stat { background: var(--white); padding: 2rem 1.5rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.1rem, 4.5vw, 2.9rem); font-weight: 700; color: var(--maroon-800); line-height: 1; }
.stat-lbl { font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--ink-3); margin-top: .6rem; text-transform: uppercase; }
.stat .mi { color: var(--gold-500); font-size: 1.5rem; margin-bottom: .75rem; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- 11. PACKAGE / TOUR CARD ---------------------------------- */
.tour {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tour:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand-3); }
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tour:hover .tour-img img { transform: scale(1.06); }
.tour-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,8,8,.55), transparent 55%); }
.badge {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: var(--gold-400); color: var(--maroon-900);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .38rem .75rem; border-radius: 100px;
}
.rating {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--maroon-900);
  font-size: .78rem; font-weight: 700;
  padding: .34rem .6rem; border-radius: 100px;
  display: inline-flex; align-items: center; gap: .25rem;
}
.rating .mi { font-size: .95rem; color: var(--gold-500); }
.tour-meta {
  position: absolute; bottom: .8rem; left: .9rem; right: .9rem; z-index: 2;
  display: flex; gap: .9rem; color: #fff; font-size: .8rem; font-weight: 500;
}
.tour-meta span { display: inline-flex; align-items: center; gap: .3rem; min-width: 0; }
.tour-meta .mi { font-size: 1rem; }
.tour-meta .place { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tour-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.tour-body p { font-size: .9rem; color: var(--ink-3); }
.tour-incl { margin: 1.05rem 0; display: flex; flex-direction: column; gap: .4rem; }
.tour-incl li { font-size: .84rem; display: flex; gap: .45rem; align-items: flex-start; color: var(--ink-2); }
.tour-incl .mi { font-size: 1.05rem; color: var(--teal); flex-shrink: 0; }
.tour-foot {
  margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
/* No prices are published; the card carries a quiet "Price on request" label
   instead of a figure, so the footer row still reads as balanced. */
.price-onreq {
  font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3); line-height: 1.25; max-width: 8.5em;
}

/* filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.25rem; }
.chip {
  padding: .6rem 1.15rem; border-radius: 100px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--maroon-600); color: var(--maroon-800); }
.chip.on { background: var(--maroon-800); border-color: var(--maroon-800); color: #fff; }

/* ---- 12. DESTINATION MOSAIC ----------------------------------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.dest {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: 250px; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
}
.dest.wide { grid-column: span 2; }
.dest.tall { grid-row: span 2; min-height: 100%; }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.dest::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(30,8,8,.88) 0%, rgba(30,8,8,.34) 48%, rgba(30,8,8,.08) 100%);
  transition: opacity .4s var(--ease);
}
.dest:hover img { transform: scale(1.07); }
.dest-body { padding: 1.6rem; width: 100%; }
.dest-body h3 { color: #fff; font-size: 1.4rem; }
.dest-body p { font-size: .87rem; color: rgba(255,255,255,.8); margin-top: .35rem; }
.dest-price {
  margin-top: .9rem; display: inline-flex; align-items: baseline; gap: .35rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); padding: .45rem .8rem; border-radius: 100px;
  font-size: .8rem;
}
.dest-price b { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-400); }
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(2, 1fr); } .dest.wide, .dest.tall { grid-column: auto; grid-row: auto; min-height: 240px; } }
@media (max-width: 560px) { .mosaic { grid-template-columns: 1fr; } }

/* ---- 13. FEATURE / MEDIA SPLIT -------------------------------- */
.media-frame { position: relative; }
.media-frame img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.media-frame::before {
  content: ''; position: absolute; inset: -14px -14px 40px 40px;
  border: 2px solid var(--gold-400); border-radius: var(--r-lg);
  z-index: -1; opacity: .5;
}
.float-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: var(--r); padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1rem;
}
.float-card .icon-badge { width: 46px; height: 46px; border-radius: 13px; }
.float-card strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--maroon-900); display: block; line-height: 1.1; }
.float-card span { font-size: .82rem; color: var(--ink-3); }

.feature-list { display: flex; flex-direction: column; gap: 1.15rem; margin-top: 2rem; }
.feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature h4 { font-family: var(--font-body); font-weight: 700; color: var(--maroon-900); font-size: 1.02rem; margin-bottom: .3rem; }
.feature p { font-size: .93rem; }

/* checklist */
.checks { display: flex; flex-direction: column; gap: .85rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; font-size: .98rem; }
.checks .mi { color: var(--teal); font-size: 1.3rem; flex-shrink: 0; margin-top: .05rem; }
.checks.on-dark .mi { color: var(--gold-400); }
.checks.on-dark li { color: rgba(255,255,255,.85); }

/* note box */
.note {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--gold-100); border-left: 3px solid var(--gold-500);
  padding: 1.15rem 1.35rem; border-radius: var(--r-sm);
  font-size: .92rem; color: #6b5310;
}
.note .mi { font-size: 1.3rem; color: var(--gold-600); flex-shrink: 0; }

/* country pills */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1.5px solid var(--line);
  padding: .6rem 1.05rem; border-radius: 100px;
  font-size: .9rem; font-weight: 600; color: var(--ink-2);
}
.pill .flag { font-size: 1.15rem; line-height: 1; }

/* ---- 14. FORMS ------------------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.15rem; }
.field label { font-size: .84rem; font-weight: 700; color: var(--maroon-900); }
.field label .req { color: #c0392b; }
.field label .opt { color: var(--ink-3); font-weight: 500; font-size: .78rem; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .82rem 1rem; background: var(--sand); width: 100%;
  font-size: .96rem; transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--maroon-600); background: var(--white);
  box-shadow: 0 0 0 4px rgba(143,40,32,.09);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { cursor: pointer; }
.field.err input, .field.err select, .field.err textarea { border-color: #c0392b; background: #fdf3f2; }
.field-msg { font-size: .8rem; color: #c0392b; display: flex; align-items: center; gap: .3rem; }
.field-msg .mi { font-size: .95rem; }
.field-hint { font-size: .8rem; color: var(--ink-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.check-line { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1.35rem; }
.check-line input { width: 20px; height: 20px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--maroon-700); }
.check-line label { font-size: .87rem; font-weight: 500; color: var(--ink-2); line-height: 1.5; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.alert { display: flex; gap: .9rem; align-items: flex-start; padding: 1.15rem 1.35rem; border-radius: var(--r); margin-bottom: 1.75rem; font-size: .93rem; }
.alert .mi { font-size: 1.4rem; flex-shrink: 0; }
.alert strong { display: block; margin-bottom: .2rem; font-size: 1rem; }
.alert-ok { background: #e9f7ef; border: 1px solid #b7e4c7; color: #1a6b3c; }
.alert-ok .mi { color: #1a9950; }
.alert-err { background: #fdf3f2; border: 1px solid #f2c4bf; color: #a33228; }
.alert-err .mi { color: #c0392b; }
.alert-ok strong, .alert-err strong { color: inherit; }

.success-panel { text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 1.5rem; }
.success-icon {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: #e9f7ef; color: #1a9950; display: grid; place-items: center;
}
.success-icon .mi { font-size: 2.4rem; }
.ref-code {
  display: inline-block; margin-top: 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .86rem; background: var(--sand-2); color: var(--ink-2);
  padding: .5rem .9rem; border-radius: var(--r-sm); border: 1px solid var(--line);
}

/* ---- 15. CONTACT INFO CARDS ----------------------------------- */
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.info-card h4 { font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: .4rem; }
.info-card .val { font-size: 1.02rem; font-weight: 600; color: var(--maroon-900); }
.info-card .val a { color: var(--maroon-900); }
.info-card .val a:hover { color: var(--maroon-600); }
.info-card .sub { font-size: .85rem; color: var(--ink-3); margin-top: .25rem; }

/* "WhatsApp: we reply 24/7" — sits under the office hours so the counter
   timetable and the always-on channel are read together. Coloured rather
   than grey, because it is a promise and not a footnote. */
.hours-wa {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: .45rem;
  font-size: .84rem; font-weight: 600; color: var(--teal);
}
.hours-wa .mi { font-size: 1.02rem; }
/* On the dark footer the teal disappears, so use the footer's gold accent. */
.footer-contact .hours-wa { color: var(--gold-400); margin-top: .35rem; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--sand-2); position: relative; min-height: 340px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map-hold { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem; gap: 1rem; }
.map-hold .mi { font-size: 2.6rem; color: var(--maroon-600); }

/* ---- 16. ACCORDION (FAQ) -------------------------------------- */
.acc { border: 1px solid var(--line); border-radius: var(--r); background: var(--white); overflow: hidden; }
.acc + .acc { margin-top: .75rem; }
.acc summary {
  padding: 1.25rem 1.5rem; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--maroon-900);
  transition: background-color .2s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { background: var(--sand); }
.acc summary .mi { font-size: 1.4rem; color: var(--maroon-600); flex-shrink: 0; transition: transform .3s var(--ease); }
.acc[open] summary { background: var(--sand); }
.acc[open] summary .mi { transform: rotate(45deg); }
.acc-body { padding: 0 1.5rem 1.4rem; font-size: .96rem; color: var(--ink-2); }
.acc-body p + p { margin-top: .8rem; }

/* ---- 17. CTA BAND --------------------------------------------- */
.cta-band {
  background: linear-gradient(125deg, var(--maroon-900) 0%, var(--maroon-700) 60%, var(--maroon-600) 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(2.25rem, 5vw, 3.75rem);
  position: relative; overflow: hidden; isolation: isolate;
}
.cta-band::before {
  content: ''; position: absolute; top: -55%; right: -12%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,180,75,.24), transparent 68%);
  z-index: -1;
}
.cta-band h2 { color: #fff; max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 54ch; margin-top: 1rem; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---- 18. SOCIAL ----------------------------------------------- */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.social-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.35rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.social-card .icon-badge { width: 46px; height: 46px; border-radius: 13px; }
.social-card b { display: block; color: var(--maroon-900); font-size: 1rem; }
.social-card span { font-size: .82rem; color: var(--ink-3); }
@media (max-width: 720px) { .social-grid { grid-template-columns: 1fr; } }

/* ---- 19. FOOTER ------------------------------------------------ */
.site-footer { background: var(--maroon-900); color: rgba(255,255,255,.72); padding-top: clamp(3.5rem, 7vw, 5.5rem); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
/* Footer uses the full lock-up in its reverse (cream + gold) colourway, which
   stays legible on the dark maroon. It already carries the wordmark, so no
   duplicate text sits beside it. */
.footer-logo { display: inline-block; }
/* 112px keeps the "TRAVEL & TOURS" line in the artwork legible; below roughly
   100px that lettering degrades into a grey smudge. */
.footer-logo img { display: block; width: auto; height: 112px; }
.footer-about { font-size: .92rem; color: rgba(255,255,255,.66); margin-top: 1.15rem; max-width: 40ch; }
.footer-col h5 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-400);
  margin-bottom: 1.15rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .92rem; transition: color .2s var(--ease), transform .2s var(--ease); display: inline-block; }
.footer-col a:hover { color: var(--gold-400); transform: translateX(3px); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: rgba(255,255,255,.72); }
.footer-contact .mi { font-size: 1.15rem; color: var(--gold-400); flex-shrink: 0; margin-top: .1rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center; color: #fff;
  transition: all .25s var(--ease);
}
.footer-social a:hover { background: var(--gold-400); color: var(--maroon-900); border-color: var(--gold-400); transform: translateY(-3px); }
.footer-social .mi { font-size: 1.3rem; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.75rem; font-size: .82rem; color: rgba(255,255,255,.55);
}
.legal-facts { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-bottom: 1rem; }
.legal-facts span { display: inline-flex; gap: .35rem; }
.legal-facts b { color: rgba(255,255,255,.75); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-400); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- 20. FLOATING WHATSAPP ------------------------------------ */
.wa-float {
  position: fixed; bottom: 1.35rem; right: 1.35rem; z-index: 95;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #1fa855; color: #fff; font-weight: 600; font-size: .93rem;
  padding: .9rem 1.25rem; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(31,168,85,.36);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); color: #fff; box-shadow: 0 14px 32px rgba(31,168,85,.44); }
.wa-float .mi { font-size: 1.4rem; }
@media (max-width: 620px) {
  .wa-float { padding: 1rem; border-radius: 50%; bottom: 1rem; right: 1rem; }
  .wa-float .lbl { display: none; }
}

/* ---- 21. COOKIE BANNER --------------------------------------- */
.cookiebar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(27,23,20,.13);
  padding: 1.15rem 0; transform: translateY(105%);
  transition: transform .45s var(--ease);
}
.cookiebar.show { transform: translateY(0); }
.cookiebar .wrap { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between; }
.cookiebar p { font-size: .88rem; color: var(--ink-2); max-width: 66ch; }
.cookiebar .row { gap: .75rem; flex-shrink: 0; }
@media (max-width: 620px) { .cookiebar .row { width: 100%; } .cookiebar .row .btn { flex: 1; } }

/* ---- 22. LEGAL / PROSE --------------------------------------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: 2.75rem; margin-bottom: .85rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; font-size: 1rem; }
.prose ul { margin: 1rem 0; display: flex; flex-direction: column; gap: .6rem; }
.prose ul li { padding-left: 1.4rem; position: relative; font-size: 1rem; }
.prose ul li::before { content: ''; position: absolute; left: .3rem; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.updated { font-size: .86rem; color: var(--ink-3); padding-bottom: 1.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }

/* position:relative makes this the containing block for the absolutely
   positioned .sr-only cell inside the table. Without it that hidden text
   escapes the overflow clip and widens the whole page on narrow screens. */
.tbl-wrap { position: relative; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); margin: 1.5rem 0; }
.tbl { min-width: 560px; font-size: .92rem; }
.tbl th, .tbl td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl th { background: var(--sand-2); font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); font-weight: 700; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .86rem; color: var(--maroon-700); }

/* ---- 23. 404 -------------------------------------------------- */
.err-page { display: grid; place-items: center; text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.err-code {
  font-family: var(--font-display); font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 700; line-height: .9;
  background: linear-gradient(135deg, var(--maroon-800), var(--gold-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- 23b. WIDE SERVICE CARD (services hub) -------------------- */
.svc-wide {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-wide:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-wide-img { aspect-ratio: 16/9; overflow: hidden; background: var(--sand-3); }
.svc-wide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-wide:hover .svc-wide-img img { transform: scale(1.05); }
.svc-wide-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.svc-wide-body .icon-badge { margin-bottom: .9rem; }
.svc-wide-body h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.svc-wide-body p { font-size: .95rem; }
.svc-wide-body .link-arrow { margin-top: auto; padding-top: 1.15rem; }
.svc-wide:hover .icon-badge { background: var(--maroon-800); color: #fff; }
.svc-wide:hover .icon-badge.gold-bg { background: var(--gold-500); color: #fff; }

/* filter row count + visually hidden text */
.filter-count { margin-left: auto; align-self: center; font-size: .84rem; color: var(--ink-3); font-weight: 600; }
.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;
}

/* sticky aside on service pages (wide screens only) */
@media (min-width: 1081px) {
  .split > aside { position: sticky; top: 100px; }
}

/* ---- 24. REVEAL ANIMATION ------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---- 25. PRINT ------------------------------------------------ */
@media print {
  .site-header, .site-footer, .wa-float, .cookiebar, .topbar, .hero-media { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .tour { break-inside: avoid; }
}
