/* ============================================================
   LUX TRAVELY — Public marketing pages
   Scoped to .mk-* — loaded by the base_marketing shell only.
   Every value comes from the styles.css token set; this file
   declares no colours of its own beyond scrim alphas.
   ============================================================ */

.mk-page { background: var(--paper); }

/* ------------------------------------------------------------
   HERO — full-bleed photograph, header overlays it
   ------------------------------------------------------------ */
.mk-hero {
  position: relative;
  isolation: isolate;
  /* Pulls the hero under the sticky header. Matches the home hero's offsets —
     the header is 91px tall on this shell (78px capsule + its 12px inset). */
  margin-top: -95px;
  padding: 196px 0 96px;
  color: #fff;
  background: #0c0c0b;
  overflow: hidden;
}
.mk-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.04);
}
.mk-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 52% at 50% -8%, rgba(180,168,134,.26), transparent 62%),
    radial-gradient(ellipse 44% 40% at 8% 108%, rgba(180,168,134,.12), transparent 70%),
    linear-gradient(180deg, rgba(12,12,11,.86) 0%, rgba(12,12,11,.72) 42%, rgba(12,12,11,.94) 100%);
}
.mk-hero__in { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }

.mk-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  background: rgba(255,255,255,.06);
  padding: 7px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-300);
}
.mk-hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.mk-hero h1 {
  margin: 24px 0 0;
  font-family: var(--display); font-weight: 300;
  font-size: clamp(38px, 5.4vw, 62px); line-height: 1.06; letter-spacing: -.02em;
  color: #fff;
}
.mk-hero h1 .hl { display: block; font-weight: 600; color: var(--gold-300); }

.mk-hero__sub {
  margin: 22px auto 0; max-width: 620px;
  font-size: 17.5px; line-height: 1.65; color: rgba(255,255,255,.74);
}
.mk-hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.mk-hero__cta .btn-ghost,
.mk-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.mk-hero__cta .btn-ghost:hover,
.mk-cta .btn-ghost:hover { border-color: var(--gold); color: var(--gold-300); background: rgba(255,255,255,.05); }

/* Fact strip — sits at the foot of the hero, overlapping the next section */
.mk-facts {
  position: relative;
  margin: 60px auto -142px; max-width: 940px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg);
  background: rgba(22,21,19,.72);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.mk-fact { padding: 22px 18px; text-align: center; }
.mk-fact + .mk-fact { border-left: 1px solid rgba(255,255,255,.1); }
.mk-fact b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 21px; letter-spacing: -.01em; color: var(--gold-300);
}
.mk-fact span { display: block; margin-top: 5px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.mk-hero--facts + .mk-sec { padding-top: 190px; }

/* Breadcrumb */
.mk-crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 22px; font-size: 12.5px; color: rgba(255,255,255,.55);
  justify-content: center;
}
.mk-crumbs a { color: rgba(255,255,255,.72); }
.mk-crumbs a:hover { color: var(--gold-300); }
.mk-crumbs .sep { opacity: .4; }
.mk-crumbs [aria-current] { color: var(--gold-300); }

@media (max-width: 900px) {
  .mk-hero { padding: 156px 0 72px; }
  .mk-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: -118px; }
  .mk-fact:nth-child(odd) { border-left: 0; }
  .mk-fact:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .mk-hero--facts + .mk-sec { padding-top: 166px; }
}
@media (max-width: 860px) {
  .mk-hero { margin-top: -89px; }
}
@media (max-width: 560px) {
  .mk-hero { padding: 138px 0 64px; }
  .mk-hero__cta .btn { width: 100%; }
}

/* ------------------------------------------------------------
   SECTION SHELL
   ------------------------------------------------------------ */
.mk-sec { padding: 96px 0; background: var(--paper); }
.mk-sec--cream { background: var(--cream); }
.mk-sec--white { background: var(--white); }
.mk-sec--dark { background: #0c0c0b; color: #fff; }
.mk-sec--tight { padding: 68px 0; }

.mk-sec__head { max-width: 660px; margin: 0 0 52px; }
.mk-sec__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.mk-sec__head h2 {
  margin: 14px 0 0;
  font-family: var(--display); font-weight: 600; color: var(--black);
  font-size: clamp(28px, 3.5vw, 41px); line-height: 1.14; letter-spacing: -.018em;
}
.mk-sec--dark .mk-sec__head h2 { color: #fff; }
.mk-sec__head p { margin: 16px 0 0; color: var(--muted); font-size: 16.5px; line-height: 1.65; }
.mk-sec--dark .mk-sec__head p { color: rgba(255,255,255,.66); }
.mk-sec--dark .eyebrow { color: var(--gold-300); }

@media (max-width: 680px) { .mk-sec { padding: 68px 0; } .mk-sec__head { margin-bottom: 38px; } }

/* ------------------------------------------------------------
   FEATURE CARDS
   ------------------------------------------------------------ */
.mk-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.mk-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mk-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 1023px) { .mk-grid, .mk-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .mk-grid, .mk-grid--4, .mk-grid--2 { grid-template-columns: 1fr; } }

.mk-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.mk-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.mk-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--line-2); }
.mk-card:hover::before { transform: scaleX(1); }
.mk-card__ic {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--gold-700);
  margin-bottom: 20px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.mk-card:hover .mk-card__ic { background: var(--gold); color: #2a2618; }
.mk-card h3 {
  margin: 0 0 9px;
  font-family: var(--display); font-weight: 600; font-size: 17.5px;
  line-height: 1.3; letter-spacing: -.01em; color: var(--black);
}
.mk-card p { margin: 0; font-size: 14.5px; line-height: 1.68; color: var(--muted); }

/* Card variant carrying a bullet list (business solutions) */
.mk-card__points { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); }
.mk-card__points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.55; color: var(--ink);
}
.mk-card__points li + li { margin-top: 10px; }
.mk-card__points .ic { flex: 0 0 auto; margin-top: 1px; color: var(--gold-700); }
.mk-card__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  font-size: 14px; font-weight: 700; color: var(--gold-700);
}
.mk-card__more:hover { color: var(--black); }
.mk-card__more svg { transition: transform .25s var(--ease); }
.mk-card__more:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------------
   STEPS
   ------------------------------------------------------------ */
.mk-steps { max-width: 760px; }
.mk-steps--center { margin: 0 auto; }
.mk-step { position: relative; display: flex; gap: 22px; padding-bottom: 30px; }
.mk-step:last-child { padding-bottom: 0; }
.mk-step::before {
  content: ''; position: absolute; left: 21px; top: 50px; bottom: 6px; width: 2px;
  background: linear-gradient(to bottom, var(--gold-300), rgba(180,168,134,.1));
}
.mk-step:last-child::before { display: none; }
.mk-step__n {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-600) 100%);
  color: #2a2618; font-family: var(--display); font-weight: 700; font-size: 15px;
  box-shadow: var(--sh-gold);
}
.mk-step__body {
  flex: 1; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 24px; box-shadow: var(--sh-sm);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.mk-step:hover .mk-step__body { box-shadow: var(--sh-md); border-color: var(--line-2); }
.mk-step h3 {
  margin: 0 0 7px;
  font-family: var(--display); font-weight: 600; font-size: 16.5px; color: var(--black);
}
.mk-step p { margin: 0; font-size: 14.5px; line-height: 1.66; color: var(--muted); }
@media (max-width: 560px) { .mk-step { gap: 16px; } .mk-step::before { left: 19px; } .mk-step__n { width: 40px; height: 40px; } }

/* ------------------------------------------------------------
   SPLIT — copy beside media
   ------------------------------------------------------------ */
.mk-split { display: grid; grid-template-columns: 1.02fr 1fr; gap: 64px; align-items: center; }
.mk-split--flip .mk-split__media { order: -1; }
@media (max-width: 940px) { .mk-split { grid-template-columns: 1fr; gap: 42px; } .mk-split--flip .mk-split__media { order: 0; } }
.mk-split h2 {
  margin: 14px 0 0;
  font-family: var(--display); font-weight: 600; color: var(--black);
  font-size: clamp(27px, 3.2vw, 38px); line-height: 1.16; letter-spacing: -.018em;
}
.mk-split__lead { margin: 18px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--muted); }

.mk-media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.mk-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.mk-media__stats {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 34px 18px 18px;
  background: linear-gradient(to top, rgba(12,12,11,.88), transparent);
}
.mk-media__stat { text-align: center; }
.mk-media__stat b {
  display: block; font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--gold-300);
}
.mk-media__stat span { display: block; margin-top: 2px; font-size: 11.5px; color: rgba(255,255,255,.72); }
.mk-media__tag {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--black);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  box-shadow: var(--sh-sm);
}

/* ------------------------------------------------------------
   CHECK LIST
   ------------------------------------------------------------ */
.mk-checks { list-style: none; margin: 30px 0 0; padding: 0; }
.mk-checks--flush { margin-top: 0; }
.mk-checks--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 28px; }
@media (max-width: 680px) { .mk-checks--2 { grid-template-columns: 1fr; } }
.mk-check {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: var(--r-sm);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.mk-check:hover { background: var(--gold-tint); transform: translateX(4px); }
.mk-check__ic {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--gold-700);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.mk-check:hover .mk-check__ic { background: var(--gold); color: #2a2618; }
.mk-check b { display: block; font-size: 14.5px; font-weight: 700; color: var(--black); }
.mk-check span { display: block; margin-top: 3px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------------
   STATS BAND
   ------------------------------------------------------------ */
.mk-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 780px) { .mk-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mk-stat {
  text-align: center; padding: 32px 18px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--white); box-shadow: var(--sh-sm);
}
.mk-sec--dark .mk-stat { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); box-shadow: none; }
.mk-stat b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 42px); line-height: 1; letter-spacing: -.02em; color: var(--gold-700);
}
.mk-sec--dark .mk-stat b { color: var(--gold-300); }
.mk-stat span { display: block; margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.mk-sec--dark .mk-stat span { color: rgba(255,255,255,.62); }

/* ------------------------------------------------------------
   TILES — icon + copy, works on light and dark sections
   ------------------------------------------------------------ */
.mk-tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1023px) { .mk-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .mk-tiles { grid-template-columns: 1fr; } }
.mk-tile {
  padding: 28px 26px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--white); box-shadow: var(--sh-sm);
}
.mk-sec--dark .mk-tile { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); box-shadow: none; }
.mk-tile__ic {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--gold-700);
}
.mk-sec--dark .mk-tile__ic { background: rgba(180,168,134,.16); color: var(--gold-300); }
.mk-tile b {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 16.5px; letter-spacing: -.01em; color: var(--black);
}
.mk-sec--dark .mk-tile b { color: #fff; }
.mk-tile span { display: block; margin-top: 8px; font-size: 14px; line-height: 1.65; color: var(--muted); }
.mk-sec--dark .mk-tile span { color: rgba(255,255,255,.64); }

/* Button row outside the hero */
.mk-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
@media (max-width: 560px) { .mk-actions .btn { width: 100%; } }

/* ------------------------------------------------------------
   STORY — narrative column with a rule
   ------------------------------------------------------------ */
.mk-story { max-width: 680px; margin-top: 22px; }
.mk-story p { margin: 0 0 20px; font-size: 16.5px; line-height: 1.78; color: var(--ink); }
.mk-story p:last-child { margin-bottom: 0; }
.mk-story p:first-of-type::first-letter {
  float: left; margin: 6px 12px 0 0;
  font-family: var(--display); font-weight: 600; font-size: 54px; line-height: .82;
  color: var(--gold-700);
}

/* ------------------------------------------------------------
   FAQ — CSS-only disclosure
   ------------------------------------------------------------ */
.mk-faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.mk-faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.mk-faq__item[open] { border-color: var(--gold-300); box-shadow: var(--sh-md); }
.mk-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 24px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--black);
}
.mk-faq__q::-webkit-details-marker { display: none; }
.mk-faq__q svg { flex: 0 0 auto; color: var(--gold-700); transition: transform .3s var(--ease); }
.mk-faq__item[open] .mk-faq__q svg { transform: rotate(180deg); }
.mk-faq__a { padding: 0 24px 21px; margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); }

/* ------------------------------------------------------------
   RELATED SERVICES RAIL
   ------------------------------------------------------------ */
.mk-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1023px) { .mk-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .mk-rail { grid-template-columns: 1fr; } }
.mk-rail__card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--white); box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.mk-rail__card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--gold-300); }
.mk-rail__ic {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--gold-700);
}
.mk-rail__card b { display: block; font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--black); }
.mk-rail__card span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }

/* ------------------------------------------------------------
   CLOSING CTA BAND
   ------------------------------------------------------------ */
.mk-cta { position: relative; overflow: hidden; background: #0c0c0b; padding: 96px 0; text-align: center; }
.mk-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 58% 70% at 50% 0%, rgba(180,168,134,.2), transparent 66%),
    radial-gradient(ellipse 40% 50% at 92% 100%, rgba(180,168,134,.1), transparent 70%);
}
.mk-cta .wrap { position: relative; }
.mk-cta__ic {
  width: 66px; height: 66px; margin: 0 auto 24px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-600) 100%);
  color: #2a2618; box-shadow: var(--sh-gold);
}
.mk-cta h2 {
  margin: 0 0 14px;
  font-family: var(--display); font-weight: 600; color: #fff;
  font-size: clamp(28px, 3.6vw, 42px); line-height: 1.14; letter-spacing: -.018em;
}
.mk-cta p { margin: 0 auto 34px; max-width: 560px; font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,.68); }
.mk-cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
@media (max-width: 560px) { .mk-cta { padding: 68px 0; } .mk-cta__btns .btn { width: 100%; } }

/* ------------------------------------------------------------
   PULL QUOTE
   ------------------------------------------------------------ */
.mk-quote { max-width: 780px; margin: 0 auto; text-align: center; }
.mk-quote__mark { color: var(--gold-300); }
.mk-quote p {
  margin: 18px 0 0;
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(21px, 2.6vw, 29px); line-height: 1.42; letter-spacing: -.01em; color: var(--black);
}
.mk-quote__by { margin-top: 20px; font-size: 13.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------------
   ACCESSIBILITY / MOTION
   ------------------------------------------------------------ */
.mk-page a:focus-visible,
.mk-page button:focus-visible,
.mk-page summary:focus-visible {
  outline: 2px solid var(--gold-700); outline-offset: 3px; border-radius: 6px;
}
.mk-hero a:focus-visible { outline-color: var(--gold-300); }

@media (prefers-reduced-motion: reduce) {
  .mk-card, .mk-card::before, .mk-check, .mk-rail__card, .mk-step__body,
  .mk-card__ic, .mk-check__ic, .mk-faq__q svg, .mk-card__more svg {
    transition: none !important;
  }
  .mk-card:hover, .mk-check:hover, .mk-rail__card:hover { transform: none; }
}
