/* ==========================================================================
   King Prime, Travel & Tourism
   Shares the King Group design system (same structure, fonts, motion) but is
   themed deep navy + gold, sampled from the King Prime logo, for a luxury
   travel-and-tourism brand.

   The accent (gold) is a LIGHT colour, so buttons carry dark navy text - the
   one place a plain red->gold token swap is not enough.

   No framework, no build step.
   ========================================================================== */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
  /* --red* names kept so every component reference still resolves; the values
     are the brand gold. */
  --red: #c69230;
  --red-hot: #e2b455;

  --black: #0a1730;
  --black-2: #0f2140;
  --ink: #0a1730;

  --white: #fff;
  --paper: #f4efe4;

  /* Dark-first, deep navy surfaces */
  --bg: var(--black);
  --fg: #eef1f8;
  --fg-2: #c4ccdb;
  --fg-3: #93a0b7;
  --accent: var(--red-hot);
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.24);

  --f-display: 'Display', 'Display Fallback', -apple-system, sans-serif;
  --f-body: 'Body', 'Body Fallback', -apple-system, system-ui, sans-serif;

  --gut: clamp(1.15rem, 4vw, 3rem);
  --shell: 78rem;
  --section: clamp(4.5rem, 11vw, 9rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Light band, when we invert a section. On cream, the accent flips to deep
   navy so eyebrow labels and links clear WCAG AA (gold on cream would not). */
.paper {
  --bg: var(--paper);
  --fg: var(--ink);
  --fg-2: #45506a;
  --fg-3: #6a7690;
  --accent: #0f2140;
  --line: rgba(15, 28, 54, 0.14);
  --line-2: rgba(15, 28, 54, 0.28);
  background: var(--bg);
  color: var(--fg);
}

/* ---- 2. Reset & fonts --------------------------------------------------- */
@font-face {
  font-family: 'Display';
  src: url('../fonts/display.woff2') format('woff2');
  font-weight: 100 900;
  font-display: block;
}
@font-face {
  font-family: 'Body';
  src: url('../fonts/body.woff2') format('woff2');
  font-weight: 100 900;
  font-display: block;
}
@font-face {
  font-family: 'Display Fallback';
  src: local('Segoe UI'), local('Helvetica Neue'), local('Arial');
  size-adjust: 96%;
  ascent-override: 98%;
  descent-override: 24%;
}
@font-face {
  font-family: 'Body Fallback';
  src: local('Segoe UI'), local('Helvetica Neue'), local('Arial');
  size-adjust: 100%;
  ascent-override: 96%;
  descent-override: 24%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--black);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  overflow-x: clip;
}

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

::selection {
  background: var(--red);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 200;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.8rem 1.3rem;
  background: var(--red);
  color: var(--ink);
  font-weight: 600;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- 3. Type ------------------------------------------------------------ */
h1,
h2,
h3 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.h2 {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  text-transform: uppercase;
}
.h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.026em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.eyebrow::before {
  content: '';
  width: 2.1rem;
  height: 2px;
  background: var(--accent);
  flex: none;
}
.eyebrow--center {
  justify-content: center;
}
/* Over the hero photo and the parallax band, the muted grey is hard to read,
   so the label runs near-white while the red rule stays red. */
.hero .eyebrow,
.band .eyebrow {
  color: rgba(244, 244, 245, 0.92);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}
.tiny {
  font-size: 0.76rem;
  color: var(--fg-3);
}

/* ---- 4. Layout ---------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.section {
  padding-block: var(--section);
}
.head {
  max-width: 46rem;
}
.head .h2 {
  margin-top: 1.25rem;
}
.head .lead {
  margin-top: 1.4rem;
  max-width: 36rem;
}
.center {
  margin-inline: auto;
  text-align: center;
}
/* In a centered head the lead has its own max-width, so it must also be
   auto-centered - otherwise the narrow block sits left of the heading and
   only its text is centered, which reads as misaligned. */
.head.center .lead,
.head.center .h2 {
  margin-inline: auto;
}

/* ---- 5. Buttons --------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.9rem;
  background: var(--red);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 8px 26px -12px rgba(198, 146, 48, 0.75);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn:hover {
  color: var(--ink);
}
.btn svg {
  transition: transform 0.4s var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn--ghost::before {
  background: #fff;
}
.btn--ghost:hover {
  color: var(--ink);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

/* ---- 6. Header ---------------------------------------------------------- */
.progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 90;
  will-change: transform;
}
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 80;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled='true'] {
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 4.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
/* Emblem + wordmark, the same icon-plus-text pattern King Group uses. The
   emblem is a self-contained SVG (white rounded tile baked in), so no extra
   chip is needed here; the readable name is the gold-accented wordmark beside
   it. */
.brand__mark {
  display: block;
  height: 2.7rem;
  width: 2.7rem;
  border-radius: 8px;
  flex: none;
}
.brand b {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding-block: 0.4rem;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
}
.burger {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  place-items: center;
  flex: none;
}
.burger i {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s var(--ease);
}
.burger i + i {
  margin-top: 5px;
}
.burger[aria-expanded='true'] i:first-child {
  transform: translateY(3px) rotate(45deg);
}
.burger[aria-expanded='true'] i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.drawer {
  display: none;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
}
.drawer.open {
  display: block;
}
.drawer ul {
  list-style: none;
  padding-block: 0.5rem 1.75rem;
}
.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.05rem;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
}
.drawer a::after {
  content: '→';
  color: var(--accent);
}

/* ---- 7. Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* dark fallback so the section looks intentional before the image lands */
  background: radial-gradient(120% 90% at 70% 20%, #16274a, #0a1730 70%);
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  will-change: transform;
  /* slow cinematic settle-in on load; transform-only, disabled under
     prefers-reduced-motion further down */
  animation: heroZoom 3.5s var(--ease) both;
}
@keyframes heroZoom {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
/* legibility scrim for the headline, tinted brand navy rather than black so
   the photo blends into the page instead of sitting behind a grey veil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(10, 23, 48, 0.55) 0%,
      rgba(10, 23, 48, 0) 30%,
      rgba(10, 23, 48, 0.2) 55%,
      rgba(10, 23, 48, 0.94) 100%
    ),
    linear-gradient(90deg, rgba(10, 23, 48, 0.65) 0%, rgba(10, 23, 48, 0) 58%);
}
.hero__inner {
  width: 100%;
  padding-block: clamp(6rem, 12vw, 9rem) clamp(3rem, 7vw, 5rem);
}
.hero h1 {
  margin-top: 1.25rem;
  max-width: 15ch;
}
.hero .lead {
  margin-top: 1.75rem;
  max-width: 34rem;
  color: rgba(244, 244, 245, 0.82);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(var(--accent), transparent);
  animation: scrolldrop 2s var(--ease) infinite;
}
@keyframes scrolldrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---- 8. Statement (big pinned type) ------------------------------------ */
.statement {
  padding-block: clamp(5rem, 14vw, 11rem);
}
.statement p {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 20ch;
  text-wrap: balance;
}
.statement .dim {
  color: var(--fg-3);
}

/* ---- 9. Fleet ----------------------------------------------------------- */
.fleet {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.vehicle {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  background: linear-gradient(160deg, #17171b, #0e0e10);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
}
@media (min-width: 52rem) {
  .vehicle {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .vehicle:nth-child(even) .vehicle__media {
    order: -1;
  }
}
.vehicle__media {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(110% 90% at 60% 30%, #26262d, #0d0d0f 72%);
}
.vehicle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}
.vehicle:hover .vehicle__media img {
  transform: scale(1.14);
}
.vehicle__n {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.vehicle__cls {
  margin-top: 0.75rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.vehicle h3 {
  margin-top: 0.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  text-transform: uppercase;
}
.vehicle p {
  margin-top: 1rem;
  color: var(--fg-2);
  max-width: 40ch;
}
.vehicle__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
  list-style: none;
}
.vehicle__spec li {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: 0.76rem;
  color: var(--fg-2);
}

/* ---- 10. Services ------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
}
.service {
  position: relative;
  background: var(--bg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.paper .service {
  background: #fff;
}
.service:hover {
  background: var(--black-2);
}
.paper .service:hover {
  background: #fbfaf9;
}
.service__ico {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent);
}
.service h3 {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.service p {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fg-2);
}

/* ---- 11. Split feature (image + copy) ----------------------------------- */
.feature {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .feature {
    grid-template-columns: 1fr 1fr;
  }
  .feature--flip .feature__media {
    order: -1;
  }
}
.feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(110% 90% at 60% 30%, #26262d, #0d0d0f 72%);
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.feature__list {
  list-style: none;
  margin-top: 1.75rem;
}
.feature__list li {
  display: flex;
  gap: 0.9rem;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--fg-2);
}
.feature__list li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}

/* ---- 12. Full-bleed parallax band -------------------------------------- */
.band {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}
.band__media {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  background: radial-gradient(120% 90% at 50% 30%, #14254a, #0a1730 70%);
  overflow: hidden;
}
.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 11, 13, 0.9) 0%, rgba(11, 11, 13, 0.2) 70%);
}
.band__inner {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.band h2 {
  max-width: 16ch;
}
.band .lead {
  margin-top: 1.5rem;
  max-width: 32rem;
}

/* ---- 13. Leadership ----------------------------------------------------- */
.leaders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.leader__pic {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1e;
}
.leader__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 1s var(--ease);
}
.leader:hover .leader__pic img {
  transform: scale(1.04);
}
.leader__pic::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--red);
}
.leader h3 {
  margin-top: 1.5rem;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  text-transform: uppercase;
}
.leader__role {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
}
.leader p:last-child {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--fg-2);
  max-width: 32rem;
}

/* ---- 14. Contact / CTA -------------------------------------------------- */
.cta {
  position: relative;
  text-align: center;
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  background: linear-gradient(160deg, #16213f, #0a1020 60%);
  box-shadow: inset 0 0 0 1px var(--line);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(226, 180, 85, 0.18), transparent 70%);
  pointer-events: none;
}
.cta > * {
  position: relative;
}
.cta h2 {
  margin-top: 1.1rem;
  max-width: 18ch;
  margin-inline: auto;
}
.cta .lead {
  margin-top: 1.35rem;
  max-width: 34rem;
  margin-inline: auto;
}
.contact-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: left;
}
.contact-rows dt {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.contact-rows dd {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--fg-2);
}
.contact-rows a:hover {
  color: var(--accent);
}

/* ---- 15. Footer --------------------------------------------------------- */
.footer {
  border-top: 4px solid var(--red);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem 2rem;
  /* Explicit tracks, not auto-fit: with auto-fit the brand track (minmax 0)
     could collapse to zero while the link columns held their min width, so the
     brand paragraph overflowed and overlapped the next column. */
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
}
/* Tablet: brand spans the full width, the three link groups sit in a row. */
@media (max-width: 62rem) {
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
/* Phone: brand full width, link groups in two columns. */
@media (max-width: 40rem) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
.footer__brand p {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 22rem;
}
.footer__logo {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 1rem;
}
.footer__logo img {
  display: block;
  height: 3.4rem;
  width: auto;
}
.footer__group {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.1rem 0.6rem 0.65rem;
  /* Rounded rectangle, not a pill: the label can wrap on narrow screens, and
     a 999px radius on a two-line element renders as a circle. */
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: 0.74rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--fg-2);
  transition: box-shadow 0.3s var(--ease);
}
.footer__group img {
  flex: none;
}
.footer__group:hover {
  box-shadow: inset 0 0 0 1px var(--accent);
}
.footer__group img {
  width: 1.6rem;
  height: 1.6rem;
  background: #fff;
  border-radius: 5px;
  padding: 2px;
}
.footer h4 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer ul {
  list-style: none;
  margin-top: 1.2rem;
}
.footer li + li {
  margin-top: 0.7rem;
}
.footer a {
  color: var(--fg-3);
  font-size: 0.88rem;
  transition: color 0.3s var(--ease);
}
.footer a:hover {
  color: var(--fg);
}
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--fg-3);
}

/* ---- 16. Scroll motion -------------------------------------------------- */
/* Reveal, driven by IntersectionObserver in main.js */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Parallax / hero drift, updated via CSS var from main.js, transform only */
[data-parallax] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .progress,
  .hero__scroll {
    display: none;
  }
  .hero__media img,
  .subhero__media img,
  .vehicle__media img,
  .band__media img {
    transform: none !important;
  }
}

/* ---- 18. Sub-page hero (interior pages) --------------------------------- */
.subhero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(24rem, 62vh, 34rem);
  padding-block: clamp(7rem, 14vw, 9rem) clamp(2.75rem, 5vw, 4rem);
  overflow: clip;
  isolation: isolate;
}
.subhero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(120% 90% at 70% 20%, #16274a, #0a1730 72%);
  overflow: hidden;
}
.subhero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  will-change: transform;
  animation: heroZoom 3.5s var(--ease) both;
}
/* Navy-tinted dual scrim: strong at the base where the text sits, light at the
   top so the photography still reads as a full image, not a dim backdrop. */
.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(10, 23, 48, 0.7) 0%,
      rgba(10, 23, 48, 0.15) 38%,
      rgba(10, 23, 48, 0.55) 68%,
      rgba(10, 23, 48, 0.97) 100%
    ),
    linear-gradient(90deg, rgba(10, 23, 48, 0.5) 0%, rgba(10, 23, 48, 0) 55%);
}
.subhero .shell {
  width: 100%;
}
.subhero h1 {
  margin-top: 1rem;
  max-width: 18ch;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: -0.04em;
}
.subhero .lead {
  margin-top: 1.5rem;
  max-width: 38rem;
  color: rgba(244, 244, 245, 0.85);
}
.subhero .eyebrow {
  color: rgba(244, 244, 245, 0.92);
}
/* Indicative price pill, shown on tour / service subheros */
.subhero__chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(10, 23, 48, 0.55);
  box-shadow: inset 0 0 0 1px rgba(226, 180, 85, 0.45);
  backdrop-filter: none;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.subhero__chip span {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.75);
}

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--fg-3);
}
.crumbs a:hover {
  color: var(--accent);
}
.crumbs li::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--line-2);
}
.crumbs li:last-child::after {
  display: none;
}
.crumbs li:last-child {
  color: var(--fg-2);
}

/* ---- 19. Fleet card grid (fleet page + home preview) -------------------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
/* Fixed-column variants keep landing grids symmetric (no orphan card). */
.fleet-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.fleet-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 64rem) {
  .fleet-grid--4,
  .fleet-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 40rem) {
  .fleet-grid--4,
  .fleet-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Landing stats band - three even columns with hairline dividers */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stats > div {
  padding: 0.5rem clamp(0.75rem, 2vw, 1.5rem);
  border-inline-start: 1px solid var(--line);
}
.stats > div:first-child {
  border-inline-start: 0;
}
.stats dd {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--accent);
}
.stats dt {
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
@media (max-width: 40rem) {
  .stats {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .stats > div {
    border-inline-start: 0;
  }
}
.vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #16223f, #0b1225);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  /* The card is always a dark surface, so it carries light text even inside a
     light (.paper) section - otherwise the title, copy and price would be
     dark on dark. Override the full ink ramp, not just colour. */
  --fg: #f4f4f5;
  --fg-2: #cbccd2;
  --fg-3: #9aa3b6;
  color: #f4f4f5;
}
.vcard h3 {
  color: #f4f4f5;
}
.vcard:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent),
    0 24px 50px -28px rgba(0, 0, 0, 0.8);
}
.vcard__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: radial-gradient(110% 90% at 60% 30%, #26262d, #0d0d0f 72%);
}
.vcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.vcard:hover .vcard__media img {
  transform: scale(1.06);
}
.vcard__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 11, 13, 0.7);
  backdrop-filter: blur(6px);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.vcard__body {
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vcard h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
}
.vcard p {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--fg-2);
}
.vcard__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.2rem;
  list-style: none;
}
.vcard__spec li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: 0.7rem;
  color: var(--fg-2);
}

/* ---- 20. Service detail page ------------------------------------------- */
.svc-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 58rem) {
  .svc-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
  .svc-aside {
    position: sticky;
    top: 6rem;
  }
}
.prose p {
  color: var(--fg-2);
  font-size: 1.02rem;
  line-height: 1.7;
}
.prose p + p {
  margin-top: 1.1rem;
}
.checks {
  list-style: none;
  margin-top: 1.75rem;
}
.checks li {
  display: flex;
  gap: 0.85rem;
  padding-block: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--fg-2);
}
.checks li::before {
  content: '';
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex: none;
  border-radius: 999px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 66% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 66% no-repeat;
}
.panel {
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(160deg, #17171b, #0e0e10);
  box-shadow: inset 0 0 0 1px var(--line);
}
.panel h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
}
.panel .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* FAQ */
.faq {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.15rem;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  flex: none;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary::after {
  transform: rotate(225deg);
}
.faq p {
  padding-bottom: 1.35rem;
  max-width: 60ch;
  color: var(--fg-2);
  line-height: 1.65;
  font-size: 0.94rem;
}

/* Related services / link cards */
.linkcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.linkcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.linkcard:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.linkcard b {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.linkcard span {
  color: var(--accent);
}

/* ---- 21. Responsive ----------------------------------------------------- */
@media (max-width: 51.99rem) {
  .nav-links {
    display: none;
  }
  .burger {
    display: grid;
  }
  /* Larger footer tap targets on touch */
  .footer li + li {
    margin-top: 0.9rem;
  }
  .footer ul a {
    display: inline-block;
    padding-block: 0.2rem;
  }
  /* Buttons go full-width so they are easy to hit and don't crowd */
  .actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ==========================================================================
   King Prime only - travel-specific components (destinations + steps).
   Not part of the shared limo layout.
   ========================================================================== */

/* ---- Destinations: tall image cards with an overlaid caption ------------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.dest {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: inset 0 0 0 1px var(--line);
  isolation: isolate;
}
.dest__media {
  position: absolute;
  inset: 0;
}
.dest__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dest:hover .dest__media img {
  transform: scale(1.06);
}
.dest__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 48, 0) 30%, rgba(10, 23, 48, 0.9) 100%);
  z-index: 1;
}
.dest__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 1.9rem);
  color: #fff;
}
.dest__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hot);
}
.dest__body h3 {
  margin-top: 0.5rem;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
}
.dest__body p {
  margin-top: 0.5rem;
  max-width: 26rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
/* A thin gold rule slides in on hover */
.dest::after {
  content: '';
  position: absolute;
  left: clamp(1.25rem, 2.5vw, 1.9rem);
  bottom: 0;
  height: 3px;
  width: 2.4rem;
  background: var(--red-hot);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--ease);
  z-index: 3;
}
.dest:hover::after {
  transform: scaleX(1);
}
@media (max-width: 60rem) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-grid > :first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 34rem) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid > :first-child {
    aspect-ratio: 4 / 5;
  }
}

/* ---- Steps: the three-step trip flow ------------------------------------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 1.75rem;
  border-top: 2px solid var(--line-2);
}
.step__n {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red-hot);
}
.step h3 {
  margin-top: 0.9rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.step p {
  margin-top: 0.6rem;
  color: var(--fg-2);
  font-size: 0.95rem;
}
@media (max-width: 48rem) {
  .steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ---- Why King Prime: value grid ----------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.why {
  padding-top: 1.4rem;
  border-top: 2px solid var(--line-2);
}
.why__n {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.why h3 {
  margin-top: 0.7rem;
  font-size: 1.15rem;
  text-transform: uppercase;
}
.why p {
  margin-top: 0.55rem;
  color: var(--fg-2);
  font-size: 0.94rem;
}
@media (max-width: 60rem) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 40rem) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Card price + footer ------------------------------------------------- */
.vcard__foot {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.price__from {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.card-more {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel__price {
  margin-top: 0.6rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.panel__price span {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---- Gallery: masonry-ish grid ------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1rem);
}
.gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: inset 0 0 0 1px var(--line);
}
.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 3 / 1.35;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 52rem) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
}
@media (max-width: 30rem) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { grid-column: auto; aspect-ratio: 3 / 2; }
}

/* Two plain dark sections in a row otherwise stack full padding on both sides,
   leaving a large empty band. Collapse the top padding at that seam (paper /
   invert sections keep theirs, since the colour change needs the breathing room). */
.section:not(.paper):not(.invert) + .section:not(.paper):not(.invert) {
  padding-top: 0;
}

/* Two-tone headline: the accent word runs gold in an italic serif, a deliberate
   contrast against the geometric display face (the travel-brand flourish). */
.accent-word {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--accent);
}

/* Hero trust chips: three short proof points under the CTAs. */
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 1.8rem;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(244, 244, 245, 0.88);
}
.trust li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
