/* ==========================================================================
   Mus'ab Travel Agency Limited — musabtravelagency.co.ke
   Type system : Gabarito (display)  +  Jost (body / UI / accent italic)
   Palette     : sampled from the company logo
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand — sampled from Logo.jpg */
  --orange:      #EE592E;
  --orange-dark: #D2431B;
  --orange-soft: #FFF1EB;
  --ocean:       #1F6CB2;
  --ocean-soft:  #EAF3FB;
  --navy:        #233D87;
  --navy-deep:   #16255C;
  --navy-ink:    #0E1A3F;

  /* neutrals */
  --ink:      #16203D;
  --body:     #4A5573;
  --muted:    #77839E;
  --line:     #E4E8F0;
  --line-soft:#EEF1F6;
  --surface:  #FFFFFF;
  --shell:    #F7F9FC;
  --cream:    #FFF8F3;

  /* type */
  --display: 'Gabarito', 'Trebuchet MS', system-ui, sans-serif;
  --sans:    'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* fluid scale */
  --fs-hero:  clamp(2.4rem, 1.35rem + 4.6vw, 4.55rem);
  --fs-h1:    clamp(2.1rem, 1.45rem + 2.8vw, 3.5rem);
  --fs-h2:    clamp(1.75rem, 1.3rem + 1.9vw, 2.7rem);
  --fs-h3:    clamp(1.15rem, 1.03rem + .5vw, 1.4rem);
  --fs-lead:  clamp(1.03rem, .97rem + .35vw, 1.2rem);

  /* space + shape */
  --gut:      clamp(1.15rem, .6rem + 2.2vw, 2.5rem);
  --section:  clamp(3.75rem, 2.2rem + 6vw, 7rem);
  --r-sm: 10px;  --r: 16px;  --r-lg: 24px;  --r-xl: 32px;
  --max: 1220px;

  /* elevation */
  --sh-sm: 0 1px 2px rgba(22,37,92,.06), 0 2px 8px rgba(22,37,92,.05);
  --sh:    0 4px 12px rgba(22,37,92,.07), 0 14px 34px rgba(22,37,92,.07);
  --sh-lg: 0 10px 24px rgba(22,37,92,.09), 0 28px 64px rgba(22,37,92,.12);
  --ring:  0 0 0 3px rgba(238,89,46,.32);

  --ease: cubic-bezier(.22,.68,.24,1);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--ocean); text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
p  { text-wrap: pretty; }

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -140%);
  z-index: 999;
  background: var(--navy-deep); color: #fff;
  padding: .8rem 1.5rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; font-size: .95rem;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 3. Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section); }
.section--shell { background: var(--shell); }
.section--cream { background: var(--cream); }
.section--tight { padding-block: clamp(2.75rem, 1.8rem + 3.6vw, 4.5rem); }

.center { text-align: center; }
.stack > * + * { margin-top: 1.05rem; }

/* eyebrow / kicker label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px;
  background: currentColor; border-radius: 2px; flex: none;
}
.center .eyebrow { justify-content: center; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.72;
  color: var(--body);
}
.sec-head { max-width: 44rem; margin-bottom: clamp(2.25rem, 1.6rem + 2vw, 3.5rem); }
.sec-head.center { margin-inline: auto; }

/* accent italic — Jost italic, used for taglines & pull quotes */
.script {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  letter-spacing: .01em;
  color: var(--ocean);
}

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .92em 1.7em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--sans);
  font-size: 1rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), color .22s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(238,89,46,.32); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.42);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.7);
  box-shadow: none;
}
.btn--navy { --btn-bg: var(--navy-deep); }
.btn--navy:hover { box-shadow: 0 8px 22px rgba(22,37,92,.3); }
.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--navy-deep);
  border-color: var(--line);
}
.btn--outline:hover { background: var(--shell); border-color: var(--navy); box-shadow: var(--sh-sm); }
.btn--sm { padding: .68em 1.25em; font-size: .92rem; }
.btn--block { width: 100%; }

/* text link with arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .96rem; color: var(--navy);
}
.arrow-link svg { width: 1em; height: 1em; transition: transform .22s var(--ease); }
.arrow-link:hover { color: var(--orange); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- 5. Header ---------- */
.topbar {
  background: var(--navy-ink);
  color: rgba(255,255,255,.8);
  font-size: .86rem;
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 42px; padding-block: .35rem;
}
.topbar__list { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar a { color: inherit; display: inline-flex; align-items: center; gap: .48rem; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.topbar__tag { font-style: italic; font-weight: 300; color: rgba(255,255,255,.62); }
@media (max-width: 860px) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(22,37,92,.09); background: rgba(255,255,255,.97); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 74px;
}
/* The logo lock-up already contains the company name, so no text is
   repeated beside it — the accessible name comes from the img alt. */
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: auto; height: 44px; }
@media (min-width: 600px) { .brand img { height: 56px; } }

.nav__links { display: flex; align-items: center; gap: .25rem; }
/* the in-list CTA is for the mobile drawer only */
.nav__links .btn { display: none; }
.nav__links a {
  position: relative;
  display: block; padding: .6rem .95rem;
  font-size: .98rem; font-weight: 500; color: var(--ink);
  border-radius: var(--r-sm);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__links a:hover { color: var(--orange); background: var(--orange-soft); }
.nav__links a[aria-current="page"] { color: var(--orange); font-weight: 600; }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .28rem;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: .6rem; flex: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--shell); border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer; flex: none;
}
.nav__toggle span {
  position: relative; display: block;
  width: 19px; height: 2px; background: var(--navy-deep); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .18s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 19px; height: 2px; background: inherit; border-radius: 2px;
  transition: transform .28s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg);  background: var(--navy-deep); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); background: var(--navy-deep); }

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__cta .btn { display: none; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem var(--gut) 1.35rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(22,37,92,.13);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links a { padding: .95rem .5rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; font-size: 1.05rem; }
  .nav__links a[aria-current="page"]::after { display: none; }
  .nav__links .btn { display: inline-flex; margin-top: 1.1rem; }
}

/* ---------- 6. Hero (home) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(120% 95% at 88% 4%, rgba(31,108,178,.55) 0%, rgba(31,108,178,0) 58%),
    linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 46%, var(--navy-ink) 100%);
  color: #fff;
  padding-block: clamp(3.25rem, 2rem + 6vw, 6.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image:
    radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(120deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 62%);
  opacity: .6;
}
.hero::after {
  content: ""; position: absolute; z-index: -1;
  width: 46rem; height: 46rem; right: -16rem; top: -20rem;
  background: radial-gradient(circle, rgba(238,89,46,.34), transparent 66%);
  filter: blur(12px); pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0,1.06fr) minmax(0,.94fr);
  align-items: center; gap: clamp(2rem, 1rem + 4vw, 4rem);
}
.hero h1 { color: #fff; font-size: var(--fs-hero); font-weight: 900; }
.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(96deg, #FFB183 0%, var(--orange) 52%, #FF8A5B 100%);
  -webkit-background-clip: text; background-clip: text;
}
.hero__tag {
  font-size: clamp(1.05rem, .98rem + .5vw, 1.32rem);
  color: rgba(255,255,255,.9);
  margin-top: 1.1rem;
}
.hero__copy {
  margin-top: 1.15rem; max-width: 34rem;
  font-size: var(--fs-lead); color: rgba(255,255,255,.76);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: .55rem 1.6rem;
  margin-top: 2.25rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__badges li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: rgba(255,255,255,.82);
}
.hero__badges svg { width: 17px; height: 17px; color: #7FD1A8; flex: none; }

.hero__art { position: relative; }
.hero__art img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(6,14,40,.44);
}
.hero__chip {
  position: absolute; left: -1.1rem; bottom: -1.3rem;
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1.15rem;
  background: #fff; border-radius: var(--r);
  box-shadow: var(--sh-lg);
}
.hero__chip strong {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  color: var(--navy-deep); line-height: 1;
}
.hero__chip span { font-size: .8rem; color: var(--muted); line-height: 1.3; display: block; }
.hero__chip i {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--orange-soft); color: var(--orange);
}
.hero__chip svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__chip { left: auto; right: .5rem; bottom: -1.1rem; }
}
@media (max-width: 520px) { .hero__chip { display: none; } }

/* ---------- 7. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(105% 130% at 92% 0%, rgba(31,108,178,.5) 0%, rgba(31,108,178,0) 60%),
    linear-gradient(152deg, var(--navy) 0%, var(--navy-deep) 55%, var(--navy-ink) 100%);
  color: #fff;
  padding-block: clamp(2.75rem, 1.9rem + 4.4vw, 5rem);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(75% 120% at 15% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(75% 120% at 15% 0%, #000, transparent 72%);
}
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lead { color: rgba(255,255,255,.78); max-width: 46rem; margin-top: 1.1rem; }
.page-hero .eyebrow { color: #FFAE85; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  font-size: .87rem; color: rgba(255,255,255,.6);
  margin-bottom: 1.15rem;
}
.crumbs a { color: rgba(255,255,255,.82); }
.crumbs a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.crumbs svg { width: 13px; height: 13px; opacity: .55; }
.crumbs [aria-current] { color: #FFAE85; }

/* ---------- 8. Cards / grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, .7rem + 1.4vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 1.15rem + 1vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: #D6DEEC; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .99rem; }

.card__ico {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin-bottom: 1.15rem;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--orange-soft), #FFE3D6);
  color: var(--orange);
  transition: transform .3s var(--ease);
}
.card__ico svg { width: 26px; height: 26px; }
.card:hover .card__ico { transform: scale(1.07) rotate(-4deg); }
.card__ico--ocean { background: linear-gradient(140deg, var(--ocean-soft), #D8E9F8); color: var(--ocean); }

.card__list { margin-top: 1.15rem; display: grid; gap: .55rem; }
.card__list li {
  position: relative; padding-left: 1.55rem;
  font-size: .94rem; color: var(--body); line-height: 1.55;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft);
}
.card__foot { margin-top: auto; padding-top: 1.4rem; }

/* numbered step card */
.step { counter-increment: step; }
.step__n {
  font-family: var(--display); font-size: 2.5rem; font-weight: 800;
  line-height: 1; color: var(--line);
  margin-bottom: .9rem;
  transition: color .28s var(--ease);
}
.step:hover .step__n { color: var(--orange); }

/* ---------- 9. Stats band ---------- */
.stats {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 62%, var(--navy-ink) 100%);
  color: #fff;
}
.stats__grid {
  display: grid; gap: clamp(1.75rem, 1rem + 2.4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 1.5rem + 2.2vw, 3.1rem);
  line-height: 1;
  color: transparent;
  background: linear-gradient(100deg, #FFC9AE, var(--orange) 70%);
  -webkit-background-clip: text; background-clip: text;
}
.stat span {
  display: block; margin-top: .6rem;
  font-size: .88rem; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 500;
}

/* ---------- 10. Split feature ---------- */
.split {
  display: grid; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(2rem, 1.2rem + 3.6vw, 4.25rem);
}
/* isolate so the offset accent border (z-index:-1) stays above the
   section background instead of disappearing behind it */
.split__media { position: relative; isolation: isolate; }
.split__media img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--sh);
}
.split__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transform: translate(1.15rem, 1.15rem);
  border: 2px solid var(--orange); border-radius: var(--r-lg);
  opacity: .35;
}
/* photo stacked above a details panel in the same media column */
.split__media--stack { display: grid; gap: 1.15rem; }
.split__media--stack::after { display: none; }

/* Media stays last in flipped splits at every width: on a narrow screen the
   heading must come before the image/details panel, not after it. */
.split--flip .split__media { order: 2; }

/* branded panel used where a suitable photograph is not available */
.info-panel {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 58%, var(--navy-ink) 100%);
  color: rgba(255,255,255,.82);
  box-shadow: var(--sh);
}
.info-panel::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(80% 90% at 100% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(80% 90% at 100% 0%, #000, transparent 72%);
}
.info-panel h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1.25rem; }
.info-panel dl { display: grid; gap: .95rem; margin: 0; }
.info-panel div {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: .5rem 1rem; align-items: baseline;
  padding-bottom: .95rem; border-bottom: 1px solid rgba(255,255,255,.12);
}
.info-panel div:last-child { border-bottom: 0; padding-bottom: 0; }
.info-panel dt { font-size: .97rem; color: rgba(255,255,255,.78); }
.info-panel dd {
  margin: 0; text-align: right;
  font-family: var(--display); font-weight: 700; font-size: .97rem; color: #FFB183;
}
.info-panel p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 1.35rem; }

.checklist { display: grid; gap: .8rem; margin-top: 1.75rem; }
.checklist li {
  display: grid; grid-template-columns: 22px 1fr; gap: .8rem;
  align-items: start; font-size: 1rem;
}
.checklist svg { width: 22px; height: 22px; color: var(--orange); margin-top: .18em; }
.checklist strong { color: var(--ink); font-weight: 600; }

/* ---------- 11. Destination tiles ---------- */
.dest {
  position: relative; overflow: hidden;
  isolation: isolate;              /* keeps the -z image & scrim inside the tile */
  border-radius: var(--r-lg);
  min-height: 15.5rem;
  display: flex; align-items: flex-end;
  color: #fff;
  box-shadow: var(--sh-sm);
}
.dest img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.dest::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(14,26,63,.9) 4%, rgba(14,26,63,.28) 52%, rgba(14,26,63,.05) 100%);
}
.dest:hover img { transform: scale(1.07); }
.dest__body { position: relative; padding: 1.4rem 1.5rem; }
.dest__body h3 { color: #fff; font-size: 1.22rem; }
.dest__body p { font-size: .89rem; color: rgba(255,255,255,.8); margin-top: .3rem; }
.dest--tall { min-height: 21rem; }

/* ---------- 12. CTA band ---------- */
.cta {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(126deg, var(--orange) 0%, #E0451D 55%, #C33A15 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 1.6rem + 3vw, 3.75rem);
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
  mask-image: radial-gradient(70% 90% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, #000, transparent 75%);
}
.cta h2 { color: #fff; max-width: 30ch; margin-inline: auto; }
.cta p { color: rgba(255,255,255,.9); max-width: 46ch; margin: 1rem auto 0; font-size: var(--fs-lead); }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2rem; }
.cta .btn--navy { --btn-bg: #fff; --btn-fg: var(--orange-dark); }
.cta .btn--navy:hover { box-shadow: 0 10px 26px rgba(0,0,0,.24); }

/* ---------- 13. Contact ---------- */
.contact-grid {
  display: grid; gap: clamp(1.75rem, 1rem + 3vw, 3.25rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 1rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft);
}
.info-row:last-child { border-bottom: 0; }
.info-row i {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--ocean-soft); color: var(--ocean); flex: none;
}
.info-row svg { width: 22px; height: 22px; }
.info-row h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); font-weight: 600; margin-bottom: .3rem; }
.info-row p, .info-row a { font-size: 1.03rem; color: var(--ink); line-height: 1.6; }
.info-row a:hover { color: var(--orange); }
.info-row small { display: block; font-size: .87rem; color: var(--muted); margin-top: .2rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.5rem);
  box-shadow: var(--sh);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block; margin-bottom: .45rem;
  font-size: .89rem; font-weight: 600; color: var(--ink);
}
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .82rem 1rem;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2377839E' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 17px;
  padding-right: 2.75rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--orange); box-shadow: var(--ring);
}
.field-row { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.form-status {
  display: none; margin-bottom: 1.25rem;
  padding: .9rem 1.1rem; border-radius: var(--r-sm);
  font-size: .93rem; line-height: 1.55;
  background: #EAF7EF; border: 1px solid #B6E2C6; color: #1D6B3C;
}
.form-status.is-shown { display: block; }
.form-status.is-error { background: #FDECEA; border-color: #F5C2BC; color: #A8291B; }

.map-embed {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  line-height: 0;
  background: var(--shell);
}
.map-embed iframe { width: 100%; height: clamp(18rem, 34vw, 26rem); border: 0; }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 52rem; margin-inline: auto; display: grid; gap: .85rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color: #D6DEEC; box-shadow: var(--sh-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--display); font-size: 1.06rem; font-weight: 700;
  color: var(--ink); cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none;
  width: 12px; height: 12px;
  border-right: 2.4px solid var(--orange);
  border-bottom: 2.4px solid var(--orange);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .26s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq summary:hover { color: var(--orange); }
.faq__body { padding: 0 1.35rem 1.35rem; font-size: .99rem; }

/* ---------- 15. Values / pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .48rem 1rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem; font-weight: 500; color: var(--ink);
}
.pill svg { width: 15px; height: 15px; color: var(--orange); }

.quote {
  position: relative;
  padding: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
}
.quote p {
  font-family: var(--sans); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 1rem + .7vw, 1.5rem);
  line-height: 1.55; color: var(--ink);
}
.quote cite {
  display: block; margin-top: 1.15rem;
  font-style: normal; font-size: .9rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
}

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--navy-ink);
  color: rgba(255,255,255,.66);
  font-size: .96rem;
  padding-top: clamp(3rem, 2rem + 3.4vw, 4.75rem);
}
/* Explicit tracks rather than auto-fit: mixing repeat(auto-fit,…) with a
   preceding fr track resolves to tracks wider than the container. */
.footer__grid {
  display: grid; gap: clamp(2rem, 1.2rem + 2.6vw, 3.25rem);
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: clamp(2.25rem, 1.6rem + 2vw, 3.25rem);
}
.footer__grid > * { min-width: 0; }
@media (min-width: 620px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1.2fr);
  }
  .footer__brand { grid-column: auto; }
}
.footer__brand img { height: 58px; width: auto; margin-bottom: 1.15rem; }
.footer__brand p { max-width: 30rem; }
.footer h3 {
  color: #fff; font-family: var(--display); font-size: 1.03rem; font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 1.15rem;
}
.footer__links { display: grid; gap: .7rem; }
.footer__links a, .site-footer a { color: rgba(255,255,255,.66); }
.footer__links a:hover, .site-footer a:hover { color: var(--orange); }
.footer__contact { display: grid; gap: .85rem; }
.footer__contact li {
  display: grid; grid-template-columns: 18px minmax(0, 1fr);
  gap: .7rem; align-items: start;
}
/* the email address is one long unbreakable token */
.footer__contact span, .footer__contact a { overflow-wrap: anywhere; }
.footer__contact svg { width: 18px; height: 18px; color: var(--orange); margin-top: .28em; }

.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.socials a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }

.footer__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .85rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.footer__bar p { color: rgba(255,255,255,.5); }

/* ---------- 17. Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, .6rem + 1vw, 1.75rem); bottom: clamp(1rem, .6rem + 1vw, 1.75rem);
  z-index: 90;
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 29px; height: 29px; }

/* ---------- 18. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal:nth-child(2).is-in { transition-delay: .07s; }
.reveal:nth-child(3).is-in { transition-delay: .14s; }
.reveal:nth-child(4).is-in { transition-delay: .21s; }
.reveal:nth-child(5).is-in { transition-delay: .28s; }
.reveal:nth-child(6).is-in { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 19. Utilities ---------- */
.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;
}
.mt-lg { margin-top: clamp(2rem, 1.4rem + 2vw, 3rem); }
.mb-0  { margin-bottom: 0; }

@media print {
  .site-header, .topbar, .wa-float, .nav__toggle, .site-footer { display: none; }
  body { color: #000; }
}
