:root {
  --gold: #f4b800;
  --gold-deep: #c9930a;
  --gold-pale: #fce8a6;
  --ink: #12181f;
  --ink-2: #1c242e;
  --ink-3: #26313d;
  --slate: #3b4b5a;
  --cream: #f6f1e3;
  --cream-dim: #eae2c9;
  --white: #ffffff;

  --text-dark: #14191f;
  --text-muted: #5b6773;
  --text-light: #f6f1e3;
  --text-light-muted: #afb9c4;

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -20px rgba(18, 24, 31, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(18, 24, 31, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.08;
  color: var(--ink);
  overflow-wrap: anywhere;
}
h5 {
  font-size: clamp(16px, 2vw, 18px);
}
h6 {
  font-size: clamp(14px, 1.8vw, 16px);
}
p {
  margin: 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: block;
}
.eyebrow.on-dark {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(244, 184, 0, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(246, 241, 227, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--ink-3);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}

.topbar {
  background: var(--ink);
  color: var(--text-light-muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar-left {
  display: flex;
  gap: 26px;
  align-items: center;
}
.topbar a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  margin: -12px -4px;
}
.topbar a:hover {
  color: var(--gold);
}
.topbar-flags {
  letter-spacing: 0.02em;
  color: var(--text-light-muted);
  display: none;
}
@media (min-width: 760px) {
  .topbar-flags {
    display: inline;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(18, 24, 31, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    padding 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.3s var(--ease);
}
.site-header.shrink .container {
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    var(--gold),
    var(--gold-deep),
    var(--gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink);
  font-size: 18px;
  box-shadow: 0 6px 16px -4px rgba(244, 184, 0, 0.6);
  flex-shrink: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(244, 184, 0, 0.6);
  background: conic-gradient(
    from 210deg,
    var(--gold),
    var(--gold-deep),
    var(--gold)
  );
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
.brand-name span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 1200px) {
  .main-nav {
    display: flex;
  }
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a.nav-link {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-light-muted);
  border-radius: 100px;
  transition:
    color 0.25s,
    background 0.25s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav a.nav-link.active {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}
.main-nav a.nav-link:hover,
.main-nav li.has-dd:hover a.nav-link {
  color: var(--ink);
  background: var(--gold);
}
.main-nav a.nav-link svg {
  width: 11px;
  height: 11px;
}

.has-dd {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
}
.has-dd:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dd:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.dropdown a:hover {
  background: var(--cream);
  color: var(--gold-deep);
  padding-left: 18px;
}
.dropdown a .dd-ico {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: none;
  flex-direction: column;
  text-align: right;
  font-family: var(--font-mono);
}
@media (min-width: 640px) {
  .header-phone {
    display: flex;
  }
}
.header-phone small {
  font-size: 10.5px;
  color: var(--text-light-muted);
  letter-spacing: 0.08em;
}
.header-phone strong {
  font-size: 14.5px;
  color: var(--text-light);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}
@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: var(--ink);
  z-index: 300;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.4s var(--ease),
    visibility 0.4s;
  padding: 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav .sub-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 18px 4px 6px;
}
.mobile-nav .sub-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-light-muted);
  padding: 10px 4px 10px 14px;
  border-bottom: none;
}
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 290;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
}
.scrim.open {
  opacity: 1;
  visibility: visible;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: min(760px, 96vh);
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s var(--ease),
    visibility 1.1s;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ink) 15%, var(--ink-3) 70%);
  overflow: hidden;
}
.hero-slide-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide-bg .ph {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18, 24, 31, 0.96) 20%,
    rgba(18, 24, 31, 0.72) 55%,
    rgba(18, 24, 31, 0.35) 100%
  );
}
.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  right: -160px;
  top: -120px;
  background: radial-gradient(circle, rgba(244, 184, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 20px;
}
.hero-content .container {
  max-width: 760px;
}
.hero-slide h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--ease) 0.25s,
    transform 0.9s var(--ease) 0.25s;
}
.hero-slide p.lead {
  font-size: 18px;
  color: var(--text-light-muted);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--ease) 0.4s,
    transform 0.9s var(--ease) 0.4s;
}
.hero-slide.active h1,
.hero-slide.active p.lead,
.hero-slide.active .hero-actions,
.hero-slide.active .eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide .eyebrow {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--ease) 0.1s,
    transform 0.9s var(--ease) 0.1s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--ease) 0.55s,
    transform 0.9s var(--ease) 0.55s;
}

.hero-controls {
  position: absolute;
  z-index: 6;
  bottom: 34px;
  left: 0;
  right: 0;
}
.hero-controls .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-arrows {
  display: flex;
  gap: 10px;
}
.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: scale(1.06);
}
.hero-arrow svg {
  width: 17px;
  height: 17px;
}

/* Hero slider arrows: default gold/black, hover reverts to blank white outline (swapped from base style above) */
.hero-controls .hero-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hero-controls .hero-arrow:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  transform: scale(1.06);
}

.ph {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0 2px,
      transparent 2px 18px
    ),
    var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light-muted);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100px;
}
.ph.light {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(18, 24, 31, 0.05) 0 2px,
      transparent 2px 18px
    ),
    var(--cream-dim);
  color: var(--text-muted);
}
.ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px dashed currentColor;
  border-radius: 100px;
  opacity: 0.8;
  max-width: 80%;
}

.stat-strip {
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding: 38px 28px;
}
@media (min-width: 760px) {
  .stat-strip .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--gold);
  font-weight: 700;
}
.stat-item .lbl {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 6px;
}

.section {
  padding: 100px 0;
}
.section.tight {
  padding: 70px 0;
}
.section.on-ink {
  background: var(--ink);
  color: var(--text-light);
}
.section.on-ink h2 {
  color: var(--text-light);
}
.section.on-cream-dim {
  background: var(--cream-dim);
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
}
.section-head p {
  margin-top: 16px;
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.section.on-ink .section-head p {
  color: var(--text-light-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1020px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 820px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  border: 1px solid rgba(18, 24, 31, 0.05);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 44px -18px rgba(18, 24, 31, 0.3);
}
.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-pale);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-ico svg {
  width: 26px;
  height: 26px;
}
.feature-card h3 {
  font-size: clamp(18px, 2vw, 19px);
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -18px rgba(18, 24, 31, 0.28);
}
.service-card .thumb {
  aspect-ratio: 4/3;
}
.service-card > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card .body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.service-card h3 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-top: 6px;
}
.service-card .more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .more svg {
  transform: translateX(5px);
}

.route-strip {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 90px 0 70px;
}
.route-track {
  position: relative;
  margin: 60px 0 0;
}
.route-line-wrap {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  margin: 0 6px;
}
.route-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s var(--ease);
}
.route-line-wrap.in .route-line-fill {
  transform: scaleX(1);
}
.route-mover {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  animation: moveRoute 7s linear infinite;
  box-shadow: 0 6px 16px -4px rgba(244, 184, 0, 0.7);
}
.route-mover svg {
  width: 15px;
  height: 15px;
}
@keyframes moveRoute {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.route-stops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 20px;
  margin-top: 44px;
}
@media (min-width: 760px) {
  .route-stops {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1020px) {
  .route-stops {
    grid-template-columns: repeat(6, 1fr);
  }
}
.route-stop {
  text-align: center;
}
.route-stop .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 3px solid var(--gold);
  margin: 0 auto 14px;
}
.route-stop.origin .dot {
  background: var(--gold);
}
.route-stop .flag {
  font-size: 26px;
  margin-bottom: 8px;
}
.route-stop h4 {
  color: var(--text-light);
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
}
.route-stop .time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.process-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}
@media (min-width: 900px) {
  .process-wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}
.process-step {
  position: relative;
  padding: 0 18px 34px 0;
  counter-increment: step;
}
.process-step .idx {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-pale);
  -webkit-text-stroke: 1.5px var(--gold-deep);
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: clamp(15.5px, 1.8vw, 16.5px);
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 13.8px;
  line-height: 1.6;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: calc(100% - 34px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-deep) 0 8px,
    transparent 8px 14px
  );
  display: none;
}
@media (min-width: 900px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

.testi-track-wrap {
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s var(--ease);
}
.testi-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18, 24, 31, 0.05);
}
@media (min-width: 760px) {
  .testi-card {
    flex: 0 0 calc(50% - 12px);
  }
}
.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p.quote {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 500;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.testi-who strong {
  display: block;
  font-size: 14.5px;
}
.testi-who span {
  font-size: 12.5px;
  color: var(--text-muted);
}
.testi-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
@media (min-width: 760px) {
  .testi-nav {
    justify-content: flex-start;
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-card .thumb {
  aspect-ratio: 16/10;
}
.blog-card > img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.blog-thumb-image {
  background-size: cover;
  background-position: center;
}
.blog-card .body {
  padding: 24px 24px 28px;
}
.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: clamp(17px, 2vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.blog-card .read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 16px;
  color: var(--ink);
}

.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--ink), var(--ink-3));
  padding: 64px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(244, 184, 0, 0.22), transparent 70%);
}
.cta-banner h2 {
  color: var(--text-light);
  font-size: clamp(24px, 3vw, 34px);
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.cta-banner p {
  color: var(--text-light-muted);
  margin-top: 12px;
  max-width: 440px;
  position: relative;
  z-index: 2;
}
.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid rgba(18, 24, 31, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--text-dark);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-deep);
  background: var(--white);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}

.site-footer {
  background: var(--ink);
  color: var(--text-light-muted);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 820px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }
}
.footer-brand p {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--text-light);
  font-size: clamp(12.5px, 1.5vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 14.5px;
  transition:
    color 0.25s,
    padding-left 0.25s;
  display: inline-block;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.25s;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.social-row svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
}
.footer-bottom .scam-note {
  font-size: 12px;
  color: var(--text-light-muted);
  max-width: 640px;
  line-height: 1.6;
}

.page-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 150px 0 76px;
}
.page-hero .hero-glow {
  right: auto;
  left: -160px;
  top: -200px;
}
.page-hero h1 {
  color: var(--text-light);
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 600;
}
.page-hero p {
  color: var(--text-light-muted);
  font-size: 16.5px;
  max-width: 560px;
  margin-top: 16px;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
.breadcrumb a:hover {
  color: var(--gold);
}

.marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--cream-dim);
  border-top: 1px solid rgba(18, 24, 31, 0.06);
  border-bottom: 1px solid rgba(18, 24, 31, 0.06);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
}
.marquee-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
}

.divider-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px dashed var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-deep);
}
.divider-badge svg {
  width: 30px;
  height: 30px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
table.routes {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 640px;
}
table.routes th {
  background: var(--ink);
  color: var(--text-light);
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
table.routes td {
  padding: 16px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(18, 24, 31, 0.06);
}
table.routes tr:last-child td {
  border-bottom: none;
}
table.routes tr:hover td {
  background: var(--cream);
}

.map-embed {
  width: 100%;
  height: auto;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/10;
}
.map-full {
  margin-top: 60px;
  margin-bottom: -100px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(18, 24, 31, 0.08);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.map-full .map-embed {
  border-radius: 0;
  aspect-ratio: 21/6;
  min-height: 280px;
}
@media (max-width: 700px) {
  .map-full .map-embed {
    aspect-ratio: 16/10;
  }
}

.accordion-item {
  border-bottom: 1px solid rgba(18, 24, 31, 0.1);
}
.accordion-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 16px;
  gap: 20px;
}
.accordion-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--gold-deep);
}
.accordion-item.open .accordion-q svg {
  transform: rotate(45deg);
}
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-item.open .accordion-a {
  max-height: 200px;
}
.accordion-a p {
  padding: 0 4px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 760px;
}

.text-center {
  text-align: center;
}
.mt-lg {
  margin-top: 60px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}
.two-col.align-start {
  align-items: flex-start;
}
.two-col.align-stretch {
  align-items: stretch;
}
.contact-col {
  display: flex;
  flex-direction: column;
}
.contact-col .quote-card {
  flex: 1;
}
.two-col > img {
  width: 100%;
}
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5/4;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 1px;
}

.eyebrow.centered {
  justify-content: center;
}
.content-heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 18px;
}
.content-copy {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 16px;
}
.content-copy + .content-copy {
  margin-top: 16px;
}
.destination-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 16px;
}
.destination-copy {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15.5px;
}
.stat-strip-dark {
  background: var(--ink);
}
.cert-frame {
  height: 70px;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}
.cert-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-copy {
  font-size: 13.5px;
}
.route-glow {
  top: auto;
  bottom: -200px;
  left: -160px;
  right: auto;
}
.round-media {
  border-radius: 50%;
}
.testi-arrow {
  border-color: rgba(18, 24, 31, 0.15);
  color: var(--ink);
}
.icon-sm {
  width: 14px;
  height: 14px;
}
.empty-state {
  text-align: center;
  color: #888;
  padding: 60px 0;
}
.post-not-found {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.blog-container {
  max-width: 820px;
}
.blog-hero-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 32px;
}
.blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.blog-content p {
  margin-bottom: 20px;
}
.blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.related-guides {
  background: #f8f9fb;
}
.related-guides h2 {
  font-size: 22px;
  margin-bottom: 24px;
}
.page-hero.error-hero {
  padding-bottom: 90px;
}
.error-hero h1 {
  font-size: clamp(60px, 10vw, 140px);
  line-height: 1;
}
.error-hero p {
  margin: 20px auto 0;
  max-width: 520px;
}
.error-hero .hero-actions {
  justify-content: center;
  margin-top: 36px;
}
.contact-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 24px;
}
.quote-submit {
  width: fit-content;
  margin-top: 8px;
}
.quote-status {
  margin-top: 10px;
  font-size: 14px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-panel {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink) 20%, var(--ink-3) 100%);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.contact-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -100px;
  top: -140px;
  background: radial-gradient(circle, rgba(244, 184, 0, 0.16), transparent 70%);
  pointer-events: none;
}
.contact-panel .contact-list {
  position: relative;
  z-index: 2;
  gap: 16px;
}
.contact-panel .contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.contact-panel .contact-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.contact-panel .contact-card .feature-ico {
  background: rgba(244, 184, 0, 0.16);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-panel .contact-card strong {
  color: var(--text-light);
}
.contact-panel .contact-card span {
  color: var(--text-light-muted);
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
}
.contact-card .feature-ico {
  margin: 0;
}
.contact-card strong {
  display: block;
  font-size: 15px;
}
.contact-card span {
  color: var(--text-muted);
  font-size: 14.5px;
  overflow-wrap: anywhere;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.mobile-brand-name {
  color: var(--text-light);
}

@media (max-width: 1199px) {
  .site-header .container {
    gap: 18px;
  }
  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section {
    padding: 64px 0;
  }
  .section.tight {
    padding: 48px 0;
  }
  .section-head {
    margin-bottom: 38px;
  }
  .page-hero {
    padding: 96px 0 56px;
  }
  .hero-slider {
    height: min(680px, 92vh);
    min-height: 540px;
  }
  .hero-slide h1 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.18;
  }
  .hero-slide p.lead {
    font-size: 16px;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-controls {
    bottom: 24px;
  }
  .route-strip {
    padding: 64px 0 50px;
  }
  .route-track {
    margin-top: 42px;
  }
  .site-footer {
    padding-top: 60px;
  }
  .cta-banner {
    padding: 44px 28px;
  }
  .quote-card {
    padding: 28px;
  }
  .contact-panel {
    padding: 28px;
  }
  .mt-lg {
    margin-top: 38px;
  }
  .page-hero.error-hero {
    padding-top: 96px;
    padding-bottom: 64px;
  }
}

@media (max-width: 639px) {
  .topbar .container {
    height: auto;
    min-height: 38px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .topbar-left {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    text-align: center;
  }
  .site-header .container {
    height: 74px;
  }
  .site-header.shrink .container {
    height: 64px;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .brand-name strong {
    font-size: 15px;
  }
  .header-cta {
    gap: 9px;
  }
  .header-cta > .btn {
    padding: 10px 16px;
    font-size: 13.5px;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    flex: 1 1 180px;
  }
  .contact-card {
    align-items: flex-start;
  }
}

@media (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header .brand > .brand-name {
    display: none;
  }
  .btn {
    padding: 13px 22px;
    white-space: normal;
    text-align: center;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow svg {
    width: 15px;
    height: 15px;
  }
  .hero-slider {
    min-height: 600px;
  }
  .feature-card {
    padding: 28px 22px;
  }
  .testi-card {
    padding: 30px 24px;
  }
  .quote-card {
    padding: 22px 18px;
  }
  .contact-panel {
    padding: 22px 18px;
  }
  .cta-banner {
    padding: 38px 22px;
    border-radius: 20px;
  }
  .stat-strip .container {
    gap: 20px 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .stat-item .lbl {
    font-size: 10.5px;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .contact-card {
    padding: 18px;
  }
  .page-hero h1 {
    font-size: clamp(29px, 9vw, 34px);
    line-height: 1.18;
  }
  .error-hero h1 {
    font-size: clamp(52px, 18vw, 84px);
  }
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

@media (max-width: 480px) {
  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
