/* ===================================================================
   Astra Travels — modern minimal, warm sunset palette
   =================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  /* Editorial warm sunset (default) */
  --bg: #F6F0E4;
  --bg-elev: #FBF7EE;
  --surface: #FFFFFF;
  --ink: #1A1512;
  --ink-soft: #55463C;
  --ink-mute: #8A776A;
  --line: rgba(26, 21, 18, 0.10);
  --line-strong: rgba(26, 21, 18, 0.22);

  --accent: #C8532A;
  /* terracotta */
  --accent-2: #E8A34B;
  /* amber */
  --accent-deep: #8A2E10;
  /* burnt */
  --accent-tint: rgba(200, 83, 42, 0.08);

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(26, 21, 18, 0.04), 0 1px 2px rgba(26, 21, 18, 0.03);
  --shadow: 0 12px 40px -12px rgba(26, 21, 18, 0.15), 0 4px 12px -4px rgba(26, 21, 18, 0.06);
  --shadow-lg: 0 30px 80px -20px rgba(26, 21, 18, 0.25);

  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* (Theme switcher removed — the site now uses a single fixed light theme) */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color 0.6s var(--ease), color 0.6s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #FBF7EE;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.display em {
  font-style: italic;
  color: var(--accent);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(48px, 9vw, 128px);
}

h2 {
  font-size: clamp(36px, 6vw, 84px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
}

h4 {
  font-size: clamp(18px, 2vw, 24px);
}

p {
  text-wrap: pretty;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 96px);
  max-width: 900px;
}

.section-head h2 {
  text-wrap: balance;
}

.section-head p.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.5;
}

/* ---------- Simple accent cursor (desktop only) ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s var(--ease);
  will-change: transform;
}

.cursor-dot.hover {
  width: 14px;
  height: 14px;
  background: var(--accent-deep);
}

@media (max-width: 900px),
(pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}

body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: none;
  background: linear-gradient(180deg,
      rgba(10, 8, 6, 0.55) 0%,
      rgba(10, 8, 6, 0.35) 60%,
      rgba(10, 8, 6, 0) 100%);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav.scrolled {
  padding: 12px var(--gutter);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: none;
  box-shadow: var(--shadow-sm);
}

/* Nav sits over the dark hero photo by default — keep it high-contrast until scrolled */
.nav .brand {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 16px rgba(0, 0, 0, 0.25);
  transition: color 0.4s, text-shadow 0.4s;
}

/* Glass capsule around the link group for a premium, unmistakable contrast surface */
.nav-links {
  background: rgba(15, 12, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.3);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 1px 10px rgba(0, 0, 0, 0.3);
  transition: color 0.3s, background 0.3s, text-shadow 0.4s;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-only-link{
  display:none;
}

.nav-menu-btn {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(15, 12, 10, 0.24);
  backdrop-filter: blur(10px);
}

.nav-menu-btn span,
.nav-menu-btn span::before,
.nav-menu-btn span::after {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nav.scrolled .brand {
  color: var(--ink);
  text-shadow: none;
}

.nav.scrolled .nav-links {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav.scrolled .nav-links a {
  color: var(--ink-soft);
  text-shadow: none;
}

.nav.scrolled .nav-links a:hover {
  color: var(--ink);
  background: var(--accent-tint);
}

.nav.scrolled .nav-menu-btn {
  border-color: var(--line-strong);
  background: transparent;
  backdrop-filter: none;
}

.nav.scrolled .nav-menu-btn span,
.nav.scrolled .nav-menu-btn span::before,
.nav.scrolled .nav-menu-btn span::after {
  background: var(--ink);
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent) 60%, var(--accent-deep));
  display: inline-block;
  transform: translateY(3px);
  box-shadow: 0 0 0 1px var(--line);
  transition: transform 0.6s var(--ease);
}

.brand:hover .brand-mark {
  transform: translateY(3px) rotate(180deg);
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 14.5px;
  border-radius: 999px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #FBF7EE;
}

.nav-cta::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
}

.nav-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
}

.nav-menu-btn span {
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  display: block;
}

.nav-menu-btn span::before,
.nav-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--ink);
}

.nav-menu-btn span::before {
  top: -6px;
}

.nav-menu-btn span::after {
  top: 6px;
}

/* ===============================
   Mobile Navigation
   (see "MOBILE NAV FIX" block near
   end of file for the active rules)
================================ */

/* Mobile menu drawer */
.mobile-menu{

    position:fixed;
    inset:0;

    background:var(--bg);

    padding:90px 24px 40px;

    display:flex;

    flex-direction:column;

    gap:8px;

    transform:translateX(100%);

    transition:.45s var(--ease);

    z-index:999;

}

.mobile-menu.open{

    transform:translateX(0);

}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  padding-top: 100px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #FBF7EE;
}

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-sub {
    margin-top: 10px;
    padding-top: 12px;
    gap: 10px;
  }

  .hero-meta {
    margin-top: 16px;
    margin-bottom: 4px;
    gap: 16px;
  }

  .hero-scroll-cue {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 20px;
  }

  .hero-scroll-cue:hover {
    transform: translateY(-2px);
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.35) 38%, rgba(15, 12, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(15, 12, 10, 0.55) 0%, rgba(15, 12, 10, 0.05) 55%);
}

.hero>.container {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-headline {
  width: 100%;
  max-width: 920px;
  margin-left: 0;
}

.hero-headline h1 {
  text-wrap: balance;
  color: #FBF7EE;
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 1.06;
}

.hero .eyebrow {
  color: var(--accent-2);
}

.hero .eyebrow::before {
  background: var(--accent-2);
}

.hero-sub {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 247, 238, 0.22);
  max-width: 620px;
  width: 100%;

}

.hero-sub p {
  font-size: clamp(14px, 1.15vw, 16.5px);
  color: rgba(251, 247, 238, 0.82);
  max-width: 480px;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.6);
  text-align: left;
  margin-top:32px;
  margin-bottom:28px;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #FBF7EE;
  text-transform: none;
  font-weight: 400;
  margin-top: 3px;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;      /* instead of flex */
  align-items: center;
  gap: 6px;                  /* was 10px */
  padding: 10px 20px;        /* was 14px 26px */
  border-radius: 999px;
  border: 1px solid rgba(251, 247, 238, 0.4);

  font-family: var(--font-mono);
  font-size: 11px;           /* was 12px */
  font-weight: 600;
  letter-spacing: 0.12em;    /* was 0.14em */

  text-transform: uppercase;
  color: #FBF7EE;
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease;
}

.hero-scroll-cue:hover {
  background: rgba(251, 247, 238, 0.22);
  transform: translateX(-50%) translateY(-4px);
  border-color: rgba(251, 247, 238, 0.7);
}

.hero-scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: cueBounce 1s ease-in-out infinite;
}

@keyframes cueBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 700px) {
  .hero-scroll-cue {
    padding: 12px 22px;
    font-size: 11px;
    bottom: -150px;
  }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 998;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top:hover {
  transform: translateX(-50%) translateY(-4px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.back-to-top.visible:hover {
  transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 600px) {
  .back-to-top {
    left: 18px;
    right: auto;
    bottom: 18px;
    transform: translateY(20px);
  }

  .back-to-top.visible {
    transform: translateY(0);
  }

  .back-to-top.visible:hover {
    transform: translateY(-4px);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marq 50s linear infinite;
  padding-right: 60px;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.marquee span::after {
  content: "✦";
  color: var(--accent);
  font-size: 0.6em;
}

@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Destinations grid ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  cursor: pointer;
}

.dest-card.wide {
  grid-column: span 8;
  aspect-ratio: 16/10;
}

.dest-card.tall {
  grid-column: span 4;
}

.dest-card.half {
  grid-column: span 6;
  aspect-ratio: 5/4;
}

.dest-card.third {
  grid-column: span 4;
  aspect-ratio: 4/5;
}

@media (max-width: 900px) {

  .dest-card.wide,
  .dest-card.half,
  .dest-card.third,
  .dest-card.tall {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease);
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 21, 18, 0) 40%, rgba(26, 21, 18, 0.75) 100%);
  transition: background 0.5s var(--ease);
}

.dest-card:hover .overlay {
  background: linear-gradient(180deg, rgba(26, 21, 18, 0.15) 0%, rgba(26, 21, 18, 0.85) 100%);
}

.dest-card .body {
  position: absolute;
  inset: 0;
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FBF7EE;
}

.dest-card .meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

.dest-card h3 {
  font-size: clamp(28px, 3vw, 44px);
  color: #FBF7EE;
  margin-bottom: 8px;
}

.dest-card .desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(251, 247, 238, 0.85);
  max-width: 420px;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), max-height 0.4s var(--ease);
  overflow: hidden;
}

.dest-card:hover .desc {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.dest-card .arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251, 247, 238, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 247, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBF7EE;
  transition: transform 0.4s var(--ease), background 0.3s;
}

.dest-card:hover .arrow {
  background: var(--accent);
  transform: rotate(-45deg);
}

/* Placeholder destination card (no image) */
.dest-card.placeholder {
  background:
    repeating-linear-gradient(45deg, var(--bg-elev), var(--bg-elev) 12px, var(--bg) 12px, var(--bg) 24px);
  border: 1px solid var(--line);
}

.dest-card.placeholder .overlay {
  background: transparent;
}

.dest-card.placeholder .body {
  color: var(--ink);
}

.dest-card.placeholder h3 {
  color: var(--ink);
}

.dest-card.placeholder .desc {
  color: var(--ink-soft);
  opacity: 1;
  max-height: none;
  transform: none;
}

.dest-card.placeholder .meta {
  color: var(--ink-mute);
}

.dest-card.placeholder .arrow {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--line-strong);
}

.dest-card.placeholder .placeholder-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
}

/* ---------- Fleet section ---------- */
.fleet-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
}

@media (max-width: 1024px) {
  .fleet-wrap {
    grid-template-columns: 1fr;
  }
}

.fleet-list {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-item {
  padding: 20px 4px;
  border-top: 1px solid var(--line);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.4s var(--ease);
}

.fleet-item:last-child {
  border-bottom: 1px solid var(--line);
}

.fleet-item .name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--ink-mute);
  transition: color 0.4s var(--ease);
}

.fleet-item .arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  color: var(--accent);
}

.fleet-item:hover {
  padding-left: 12px;
}

.fleet-item:hover .name {
  color: var(--ink);
}

.fleet-item.active {
  padding-left: 12px;
}

.fleet-item.active .name {
  color: var(--ink);
}

.fleet-item.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.fleet-item.active {
  border-top-color: var(--accent);
}

.fleet-display {
  position: relative;
  background: var(--bg-elev);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.fleet-display::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-tint), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.fleet-image-wrap {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.fleet-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(26, 21, 18, 0.15));
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.fleet-image.leaving {
  opacity: 0;
  transform: translateX(-30px) scale(0.95);
}

.fleet-image.entering {
  opacity: 0;
  transform: translateX(30px) scale(0.95);
}

.fleet-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 640px) {
  .fleet-details {
    grid-template-columns: 1fr;
  }
}

.fleet-details h3 {
  margin-bottom: 12px;
}

.fleet-details p.desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fleet-details .spec-block h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  font-weight: 500;
}

.fleet-details .spec-block ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fleet-details .spec-block li {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--ink);
  background: var(--surface);
}

.fleet-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s var(--ease);
}

.fleet-cta:hover {
  background: var(--accent);
  color: #FBF7EE;
  transform: translateY(-2px);
}

.fleet-cta svg {
  width: 16px;
  height: 16px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--bg-elev);
}

.service-card::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-mute);
  transition: transform 0.4s var(--ease), color 0.4s;
}

.service-card:hover::after {
  transform: rotate(-45deg);
  color: var(--accent);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.4s, color 0.4s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: #FBF7EE;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- Interactive Map (Leaflet) ---------- */
.map-section {
  background: var(--bg-elev);
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

@media (max-width: 900px) {
  .map-wrap {
    grid-template-columns: 1fr;
  }
}

.map-visual {
  position: relative;
}

.map-stage {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  aspect-ratio: 5/6;
  overflow: hidden;
}

/* Leaflet's own chrome, restyled to match the editorial palette */
.map-stage .leaflet-container {
  width: 100%;
  height: 100%;
  background: var(--bg-elev);
  font-family: var(--font-body);
}

.map-stage .leaflet-control-zoom {
  border: 1px solid var(--line-strong) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
}

.map-stage .leaflet-control-zoom a {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.map-stage .leaflet-control-zoom a:hover {
  background: var(--accent-tint) !important;
}

.map-stage .leaflet-control-attribution {
  background: color-mix(in oklab, var(--surface) 85%, transparent) !important;
  color: var(--ink-mute) !important;
  font-size: 10px !important;
}

.map-stage .leaflet-control-attribution a {
  color: var(--ink-soft) !important;
}

/* Custom destination pins (Leaflet divIcon) */
.map-pin {
  position: relative;
}

.map-pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}

.map-pin-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.28;
  animation: pulseHalo 2.4s infinite;
}

.map-pin--active .map-pin-dot {
  background: var(--accent-deep);
  transform: scale(1.3);
}

@keyframes pulseHalo {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* HQ marker — visually distinct ring instead of a pulsing dot */
.map-pin--hq .map-pin-dot {
  background: var(--accent-deep);
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
}

.map-pin--hq .map-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-deep);
  opacity: 0.55;
}

.map-stage .leaflet-tooltip.map-leaflet-tooltip {
  background: var(--ink);
  color: var(--bg-elev);
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 11px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.map-stage .leaflet-tooltip.map-leaflet-tooltip::before {
  border-top-color: var(--ink);
}

.map-hint {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.map-info {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
  min-height: 300px;
  transition: box-shadow 0.4s;
}

.map-info .eyebrow {
  margin-bottom: 12px;
}

.map-info h3 {
  margin-bottom: 8px;
}

.map-info .sub {
  color: var(--ink-mute);
  font-size: 13px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-info p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.map-info .stats {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.map-info .stat {}

.map-info .stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

.map-info .stat .val {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}

/* ---------- Why choose us ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}

.reason {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}

.reason:hover {
  padding-left: 12px;
}

.reason .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

.reason h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.reason p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 min(500px, 88vw);
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.testimonial blockquote::before {
  content: "“";
  color: var(--accent);
}

.testimonial blockquote::after {
  content: "”";
  color: var(--accent);
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #FBF7EE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
}

.testimonial .who {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}

.testimonial .role {
  font-size: 12.5px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}




/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}

@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
}

.about-copy .lead {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.about-stats .val {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  color: var(--ink);
}

.about-stats .lab {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-top: 6px;
}

.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(200, 83, 42, 0.08), transparent 60%),
    repeating-linear-gradient(135deg, var(--bg-elev), var(--bg-elev) 20px, var(--bg) 20px, var(--bg) 40px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--ink);
  color: var(--bg);
}

.contact-section .eyebrow {
  color: rgba(251, 247, 238, 0.6);
}

.contact-section .eyebrow::before {
  background: var(--accent-2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

.contact-section h2 {
  color: var(--bg);
}

.contact-section p.lede {
  color: rgba(251, 247, 238, 0.7);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-method {
  padding: 24px;
  border: 1px solid rgba(251, 247, 238, 0.14);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
}

.contact-method:hover {
  background: rgba(251, 247, 238, 0.05);
  border-color: rgba(251, 247, 238, 0.28);
}

.contact-method .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 247, 238, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

.contact-method .ic svg {
  width: 20px;
  height: 20px;
}

.contact-method .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.5);
  margin-bottom: 4px;
}

.contact-method .val {
  font-size: 16px;
  color: var(--bg);
}

.contact-method .go {
  color: rgba(251, 247, 238, 0.5);
}

/* Form */
.contact-form {
  padding: clamp(24px, 3vw, 40px);
  background: rgba(251, 247, 238, 0.04);
  border: 1px solid rgba(251, 247, 238, 0.10);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-form h3 {
  color: var(--bg);
  margin-bottom: 24px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.55);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 247, 238, 0.20);
  color: var(--bg);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.3s;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(251, 247, 238, 0.35);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--accent-2);
}

.field.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field.row>div {}

.form-cta {
  margin-top: 12px;
  width: 100%;
  padding: 16px;
  background: var(--accent-2);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s, transform 0.3s;
}

.form-cta:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer .footer-brand p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 340px;
  margin-top: 16px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer ul a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color 0.3s;
}

.footer ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/*==============================
   Floating Actions (Call + WhatsApp)
==============================*/

.float-actions{

    position:fixed;

    right:28px;

    bottom:28px;

    z-index:999;

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:14px;

}

.fab{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:16px 26px;
    min-width:172px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    box-shadow:0 12px 28px rgba(0,0,0,.22);
    transition:.3s ease;
    position:relative;
}

.call-fab{

    background:var(--ink);

    color:#fff;

}

.call-fab:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 36px rgba(0,0,0,.32);

}

.call-fab .fab-icon{

    width:20px;

    height:20px;

    flex-shrink:0;

}

.fab-text{

    font-size:15px;

    white-space:nowrap;

}

.wa-float{

    background:#25D366;

    color:#fff;

}

.wa-float:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 36px rgba(37,211,102,.45);

}

.wa-float svg{

    width:20px;

    height:20px;

    flex-shrink:0;

}

.wa-text{

    font-size:12px;

    white-space:nowrap;

}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .fab-text,
  .wa-float span.wa-text {
    display: none;
  }

  .fab {
    padding: 14px;
    min-width: 48px;
  }

  .float-actions{
    right:18px;
    bottom:18px;
    gap:12px;
  }
}

/* (theme switcher UI removed) */

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.16s;
}

.reveal.delay-3 {
  transition-delay: 0.24s;
}

.reveal.delay-4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.wa-icon{
    width:20px;
    height:20px;
    flex-shrink:0;
}
.nav{

    gap:18px;

}
/* Theme Control */

/* ==========================
   MOBILE NAV FIX
========================== */

@media (max-width: 900px) {

    .nav{
        padding:14px 16px;
        gap:10px;
    }

    .brand{
        font-size:16px;
        flex-shrink:0;
        gap:6px;
    }

    .brand-mark{
        width:20px;
        height:20px;
    }

    /* Show the link bar on phones too — scrollable instead of hidden */
    .nav-links{
        display:flex;
        flex:1 1 auto;
        min-width:0;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        justify-content:flex-start;
    }

    .nav-links::-webkit-scrollbar{
        display:none;
    }

    .nav-links a{
        font-size:13px;
        padding:7px 12px;
        white-space:nowrap;
        flex-shrink:0;
    }

    .nav-cta{
        display:none ;
    }

    /* Hamburger removed — nav links row is fully visible instead */
    .nav-menu-btn{
        display:none ;
    }

    .mobile-only-link{
        display:inline-flex !important;
    }

}

@media (max-width: 420px) {
    .nav-links a{
        font-size:12px;
        padding:6px 9px;
    }
}
/* Hide only on mobile */
@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
}