/* ==========================================================================
   Keystone Global Manpower — Design Tokens & Base Styles
   ========================================================================== */

:root {
  /* Color */
  --navy-950: #081326;
  --navy-900: #0B1E3D;
  --navy-800: #13294F;
  --navy-700: #1C3A63;
  --navy-600: #2A4E7E;
  --gold-500: #C9A961;
  --gold-400: #D9BE85;
  --gold-300: #E8D9B5;
  --white: #FFFFFF;
  --gray-100: #F5F6F8;
  --gray-200: #E9EBEF;
  --gray-400: #B8BEC9;
  --slate-500: #5B6472;
  --slate-700: #333B47;
  --success: #2E7D5B;

  /* Type */
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Motion */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.5s;
  --dur-slow: 1.1s;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(11, 30, 61, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 30, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 30, 61, 0.16);
  --shadow-gold: 0 8px 24px rgba(201, 169, 97, 0.25);

  --max-width: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-500);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-premium);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-gold:hover { background: var(--gold-400); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 38px;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
}
.site-topbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-contacts { display: flex; gap: 22px; }
.topbar-contacts a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: 0.76rem; transition: color 0.2s; }
.topbar-contacts a:hover { color: var(--gold-400); }
.topbar-contacts svg { width: 12px; height: 12px; flex-shrink: 0; }
.topbar-address { color: rgba(255,255,255,0.5); font-size: 0.76rem; display: flex; align-items: center; gap: 6px; }
.topbar-address svg { width: 12px; height: 12px; flex-shrink: 0; }
@media (max-width: 760px) { .topbar-address { display: none; } }
@media (max-width: 560px) { .topbar-contacts a span.topbar-text-full { display: none; } }

.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--dur-fast) var(--ease-premium);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(11, 30, 61, 0.94);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.staff-login-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  padding: 0 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.staff-login-link:hover { color: var(--gold-400); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo strong { font-weight: 600; }
.logo span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; list-style: none; gap: 32px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast);
}
.main-nav a:hover { color: var(--gold-400); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .main-nav ul { display: none; }
  .menu-toggle { display: block; }
  .nav-actions .btn-outline-light { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(8,19,38,0.72) 0%, rgba(11,30,61,0.66) 55%, rgba(19,41,79,0.58) 100%),
    var(--hero-photo, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 138px;
}
.hero h1, .hero p.lead, .hero .eyebrow { text-shadow: 0 2px 12px rgba(0,0,0,0.45); }

.hero-map {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin: 20px 0 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero p.lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: none;
  padding: 22px 26px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.hero-stat { padding: 0 26px; border-right: 1px solid rgba(255,255,255,0.14); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--gold-400);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Sections general
   ========================================================================== */

section { padding: 110px 0; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 16px; }
.section-head p { color: var(--slate-500); margin-top: 16px; font-size: 1.02rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.bg-light { background: var(--gray-100); }
.bg-navy { background: var(--navy-900); color: rgba(255,255,255,0.8); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

/* Company Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.overview-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.overview-list li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--slate-700);
}
.overview-list li::before {
  content: '';
  width: 6px; height: 6px;
  margin-top: 8px;
  background: var(--gold-500);
  flex-shrink: 0;
  border-radius: 50%;
}

.membership-strip {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.membership-strip .eyebrow { margin-bottom: 16px; }
.membership-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--slate-500);
  letter-spacing: 0.03em;
}

.credential-card {
  background: var(--navy-900);
  color: var(--white);
  padding: 44px;
  position: relative;
}
.credential-card .badge-row { display: flex; gap: 16px; margin-bottom: 28px; }
.credential-card .badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: 1px solid rgba(201,169,97,0.4);
  color: var(--gold-400);
  text-transform: uppercase;
}
.credential-card blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
}
.credential-card .attribution {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* 404 — mosaic background hero */
.notfound-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 100px;
}
.mosaic-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
}
.mosaic-tile { overflow: hidden; background: var(--navy-950); }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%) brightness(0.9); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,19,38,0.90) 0%, rgba(8,19,38,0.94) 100%);
}
.notfound-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
}
.notfound-content .eyebrow { color: var(--gold-400); }
.notfound-number {
  font-family: var(--font-display);
  font-size: 7.5rem;
  line-height: 1;
  color: var(--gold-500);
  margin: 14px 0;
}
.notfound-content h2 { color: var(--white); margin-bottom: 16px; }
.notfound-content .lead { color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.notfound-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.notfound-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; }
.notfound-links a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}
.notfound-links a:hover { color: var(--gold-400); border-color: var(--gold-400); }
@media (max-width: 900px) {
  .mosaic-bg { grid-template-columns: repeat(4, 1fr); }
  .notfound-number { font-size: 5.5rem; }
}
@media (max-width: 600px) {
  .mosaic-bg { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); }
  .notfound-hero { min-height: 560px; padding: 130px 0 70px; }
}
.overview-media-wrap { position: relative; }
.overview-quote-badge {
  position: absolute;
  right: -28px; bottom: -28px;
  max-width: 260px;
  background: var(--navy-900);
  color: var(--white);
  padding: 26px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.overview-quote-badge .badge-row { display: flex; gap: 10px; margin-bottom: 16px; }
.overview-quote-badge p.statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
}
.feature-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin: 30px 0 8px;
}
.feature-mini { display: flex; gap: 14px; align-items: flex-start; }
.feature-mini-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-premium), background 0.35s, color 0.35s;
}
.feature-mini-icon svg { width: 17px; height: 17px; }
.feature-mini:hover .feature-mini-icon { transform: scale(1.15) rotate(-6deg); background: var(--navy-900); color: var(--gold-400); }
.feature-mini h5 { font-size: 0.92rem; margin-bottom: 4px; }
.feature-mini p { font-size: 0.82rem; color: var(--slate-500); }
.overview-counters {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 22px;
  border-top: 1px solid var(--gray-200);
}
.overview-counters .num { font-family: var(--font-mono); font-size: 1.7rem; color: var(--navy-900); font-weight: 500; }
.overview-counters .label { font-size: 0.74rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
@media (max-width: 960px) {
  .overview-quote-badge { position: static; margin-top: 28px; max-width: none; }
}
@media (max-width: 560px) {
  .feature-mini-grid { grid-template-columns: 1fr; }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.service-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  z-index: 1;
  transition: background var(--dur-fast) var(--ease-premium), transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), z-index 0s;
}
.service-card:hover { background: var(--white); transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); z-index: 2; }
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-500);
  margin-bottom: 18px;
  display: block;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--slate-500); }

/* Process */
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: baseline;
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-400);
}
.process-step h4 { color: var(--white); font-size: 1.08rem; margin-bottom: 4px; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* Why Choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.why-card {
  background: var(--gray-100);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background 0.35s;
}
.why-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.why-card h4 { font-size: 1rem; margin: 14px 0 8px; }
.why-card p { font-size: 0.88rem; color: var(--slate-500); }
.why-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.05rem;
  transition: transform 0.4s var(--ease-premium), background 0.35s, color 0.35s;
}
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-6deg);
  background: var(--navy-900);
  color: var(--gold-400);
}

/* Stats band */
.stats-band {
  background: var(--navy-950);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--gold-400);
  font-weight: 500;
}
.stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonials — auto-sliding carousel */
.testimonial-carousel { max-width: 720px; margin: 0 auto; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-premium);
}
.testimonial-slide { flex: 0 0 100%; padding: 0 6px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 44px 40px;
  text-align: center;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-quote-icon { width: 30px; height: 30px; color: var(--gold-500); opacity: 0.55; margin-bottom: 16px; }
.testimonial-card .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 18px; font-size: 0.9rem; }
.testimonial-card p.quote { font-size: 1.02rem; color: var(--slate-700); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.testimonial-who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.testimonial-who .name { font-weight: 600; color: var(--navy-900); font-size: 0.9rem; }
.testimonial-who .role { font-size: 0.78rem; color: var(--slate-500); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 32px; }
.testimonial-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.3rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}
.testimonial-arrow:hover { background: var(--navy-900); color: var(--gold-400); border-color: var(--navy-900); transform: scale(1.08); }
.testimonial-dots { display: flex; align-items: center; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}
.testimonial-dot.active { background: var(--gold-500); width: 22px; border-radius: 4px; }

/* CTA */
.cta-band {
  background: linear-gradient(120deg, rgba(8,19,38,0.92), rgba(19,41,79,0.90)), var(--cta-bg, none);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.cta-band .container {
  max-width: 720px;
  padding: 56px 48px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,0.65); margin: 18px auto 36px; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .cta-band .container { padding: 40px 24px; } }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.55);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { font-size: 0.88rem; transition: color var(--dur-fast); }
.footer-grid a:hover { color: var(--white); }
.footer-logo { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Inner page hero (About / Services / Careers / Contact)
   ========================================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 100%);
  padding: 208px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,169,97,0.16) 0%, rgba(201,169,97,0) 70%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  display: inline-flex;
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); max-width: 700px; }
.page-hero p.lead { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 18px; font-size: 1.02rem; }

/* Sector icons */
.sector-icon {
  width: 30px;
  height: 30px;
  color: var(--gold-500);
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.sector-card {
  background: var(--white);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), z-index 0s;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.sector-card h4 { font-size: 0.98rem; }
.sector-card p { font-size: 0.85rem; color: var(--slate-500); }
.sector-card .sector-icon { transition: transform 0.4s var(--ease-premium); }
.sector-card:hover .sector-icon { transform: scale(1.15) rotate(-4deg); }

/* Core Values — icon cards (About) */
.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.icon-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 32px 26px;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s;
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.icon-card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease-premium), background 0.35s, color 0.35s;
}
.icon-card-icon svg { width: 22px; height: 22px; }
.icon-card:hover .icon-card-icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--navy-900);
  color: var(--gold-400);
}
.icon-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.icon-card p { font-size: 0.87rem; color: var(--slate-500); }

/* Image placeholder block — swap with licensed photography */
.img-frame {
  position: relative;
  background: var(--gray-100);
  border: 1px dashed var(--gray-400);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame .placeholder-note {
  text-align: center;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate-500);
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.img-frame .placeholder-note strong { display: block; color: var(--navy-800); font-size: 0.78rem; margin-bottom: 6px; }

/* Values grid (About) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.value-card { padding: 4px 0; }
.value-card .value-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-500);
  display: block;
  margin-bottom: 10px;
}
.value-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.value-card p { font-size: 0.87rem; color: var(--slate-500); }

/* Mission / Vision split */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-top: 8px;
}
.mv-card { background: var(--white); padding: 44px; }
.mv-card.navy { background: var(--navy-900); color: rgba(255,255,255,0.75); }
.mv-card.navy h3 { color: var(--white); }
.mv-card .eyebrow { margin-bottom: 18px; }
.mv-card p.statement {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: inherit;
}

/* Timeline (About - company story) */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* Membership accreditation cards (About) */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.accred-card {
  border: 1px solid var(--gray-200);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accred-card .sector-icon { color: var(--navy-700); }
.accred-card h5 { font-size: 0.92rem; color: var(--navy-900); font-weight: 600; font-family: var(--font-body); }
.accred-card p { font-size: 0.82rem; color: var(--slate-500); }

/* Services detail list (Services page) */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 32px 24px;
  margin: 0 -24px;
  border-top: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: background 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
}
.service-detail:last-child { border-bottom: 1px solid var(--gray-200); }
.service-detail:hover { background: var(--white); transform: translateX(4px); }
.service-detail .sector-icon { width: 34px; height: 34px; transition: transform 0.4s var(--ease-premium), color 0.3s; }
.service-detail:hover .sector-icon { transform: scale(1.15) rotate(-6deg); color: var(--gold-500); }
.service-detail h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-detail p { font-size: 0.92rem; color: var(--slate-500); max-width: 640px; }
.service-detail .tags { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.service-detail .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--navy-700);
  background: var(--gray-100);
  padding: 4px 10px;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .service-detail { grid-template-columns: 46px 1fr; }
}

/* Logo image lockup */
.logo-img { height: 42px; width: auto; display: block; }
.footer-logo-img { height: 46px; width: auto; margin-bottom: 16px; }

/* Founder message */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.founder-photo { position: relative; }
.founder-photo img { width: 100%; display: block; }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy-900);
  line-height: 1.55;
  border-left: 3px solid var(--gold-500);
  padding-left: 24px;
  margin: 26px 0;
}
.founder-sign { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-800); font-style: italic; }

/* Leadership grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.leader-card { background: var(--white); border: 1px solid var(--gray-200); overflow: hidden; }
.leader-card img { width: 100%; aspect-ratio: 3/3.2; object-fit: cover; display: block; }
.leader-card .leader-info { padding: 20px 22px 24px; }
.leader-card h4 { font-size: 1rem; margin-bottom: 4px; }
.leader-card .role { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 10px; display: block; }
.leader-card p { font-size: 0.84rem; color: var(--slate-500); }

/* Journey timeline */
.journey-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.journey-item { text-align: center; padding-top: 24px; position: relative; }
.journey-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}
.journey-item .year { font-family: var(--font-mono); font-size: 1.1rem; color: var(--navy-900); font-weight: 600; margin-bottom: 8px; }
.journey-item p { font-size: 0.82rem; color: var(--slate-500); }

/* Markets grid (Global Presence) */
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.markets-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.markets-col ul { list-style: none; display: grid; gap: 10px; }
.markets-col li { font-size: 0.92rem; color: var(--slate-700); display: flex; align-items: center; gap: 10px; }
.markets-col li::before { content: ''; width: 5px; height: 5px; background: var(--gold-500); border-radius: 50%; flex-shrink: 0; }

.accred-strip img { width: 100%; display: block; margin-top: 32px; }

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .journey-strip { grid-template-columns: repeat(3, 1fr); }
  .markets-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .journey-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Motion & Interaction System — sitewide hover/transition polish
   ========================================================================== */

/* Image zoom container: wrap an <img> in .img-zoom, overflow hidden parent */
.img-zoom { overflow: hidden; display: block; }
.img-zoom img { transition: transform 0.7s var(--ease-premium); }
.img-zoom:hover img { transform: scale(1.06); }

/* Nav link underline sweep */
.main-nav a { position: relative; }
.main-nav a::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease-premium);
}
.main-nav a:hover::before { width: 100%; }
.main-nav a.active::before { display: none; }

/* Card lift on hover — applied to service, why, sector, leader, accred cards */
.service-card, .why-card, .sector-card, .leader-card, .value-card, .accred-card {
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background 0.35s var(--ease-premium);
}
.service-card:hover, .why-card:hover, .sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.leader-card { transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium); }
.leader-card .img-zoom { }

/* Icon micro-interaction inside cards */
.service-card .sector-icon, .why-card .why-icon, .sector-card .sector-icon {
  transition: transform 0.4s var(--ease-premium), color 0.3s;
}
.service-card:hover .sector-icon, .sector-card:hover .sector-icon { transform: scale(1.12) rotate(-4deg); }
.why-card:hover .why-icon { transform: scale(1.1); background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }

/* Buttons: subtle scale + shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::after { left: 130%; }
.btn:active { transform: scale(0.97); }

/* Testimonial & leader photo zoom */
.leader-card img, .testimonial-card { transition: transform 0.35s var(--ease-premium); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Stagger reveal delays for grid children (nth-child based) */
.services-grid .reveal:nth-child(1), .why-grid .reveal:nth-child(1), .leadership-grid .reveal:nth-child(1) { transition-delay: 0.02s; }
.services-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2), .leadership-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3), .leadership-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4), .why-grid .reveal:nth-child(4), .leadership-grid .reveal:nth-child(4) { transition-delay: 0.20s; }
.services-grid .reveal:nth-child(5), .why-grid .reveal:nth-child(5) { transition-delay: 0.26s; }
.services-grid .reveal:nth-child(6), .why-grid .reveal:nth-child(6) { transition-delay: 0.32s; }

/* Links inside body copy */
a.text-link { color: var(--navy-900); border-bottom: 1px solid var(--gold-500); transition: color 0.2s; }
a.text-link:hover { color: var(--gold-500); }

/* Photo frame with gold corner accent — used for editorial imagery */
.photo-frame { position: relative; }
.photo-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 56px; height: 56px;
  border-top: 3px solid var(--gold-500);
  border-left: 3px solid var(--gold-500);
  z-index: 2;
}
.photo-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 56px; height: 56px;
  border-bottom: 3px solid var(--gold-500);
  border-right: 3px solid var(--gold-500);
  z-index: 2;
}
.photo-frame img { position: relative; z-index: 1; }

/* Split media-text row, alternating */
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.media-row.reverse .media-row-media { order: 2; }
.media-row-media img { width: 100%; display: block; border-radius: 2px; }
@media (max-width: 900px) {
  .media-row { grid-template-columns: 1fr; }
  .media-row.reverse .media-row-media { order: 0; }
}

/* Photo-based service cards */
.photo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 32px;
}
.service-photo-card {
  background: var(--white);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}
.service-photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-photo-card .spc-media {
  position: relative;
  aspect-ratio: 4/2.9;
  overflow: hidden;
}
.service-photo-card .spc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-premium); }
.service-photo-card:hover .spc-media img { transform: scale(1.08); }
.service-photo-card .spc-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,19,38,0.55) 100%);
}
.service-photo-card .spc-badge {
  position: absolute;
  bottom: -26px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-premium);
}
.service-photo-card:hover .spc-badge { transform: scale(1.1) rotate(-6deg); }
.service-photo-card .spc-badge svg { width: 26px; height: 26px; }
.service-photo-card .spc-body { padding: 40px 24px 28px; }
.service-photo-card .spc-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-photo-card .spc-body p { font-size: 0.9rem; color: var(--slate-500); }

/* Careers: destination photo header on job cards */
.job-card-media {
  position: relative;
  height: 130px;
  margin: -36px -32px 20px -32px;
  overflow: hidden;
}
.job-card-media svg { width: 100%; height: 100%; display: block; transition: transform 0.6s var(--ease-premium); }
.job-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-premium); }
.service-card:hover .job-card-media svg,
.service-card:hover .job-card-media img { transform: scale(1.08); }
.job-card-media .jc-label {
  position: absolute; bottom: 10px; left: 14px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--white); text-transform: uppercase; z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.job-card-media .jc-fade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,19,38,0.75) 0%, rgba(8,19,38,0.1) 55%, rgba(8,19,38,0.35) 100%); }

/* Contact page: photo hero, tile grid, visit card */
.page-hero-photo {
  position: relative;
  background: linear-gradient(160deg, rgba(8,19,38,0.88) 0%, rgba(19,41,79,0.82) 100%), var(--hero-bg, none);
  background-size: cover;
  background-position: center;
}
.contact-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.contact-tile {
  border: 1px solid var(--gray-200);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), border-color 0.3s;
}
.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.contact-tile .sector-icon { color: var(--gold-500); flex-shrink: 0; width: 24px; height: 24px; }
.contact-tile h5 { font-size: 0.86rem; color: var(--navy-900); margin-bottom: 4px; }
.contact-tile p { font-size: 0.82rem; color: var(--slate-500); line-height: 1.5; }
.contact-tile.full { grid-column: 1 / -1; }
.visit-card { position: relative; overflow: hidden; }
.visit-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.7s var(--ease-premium); }
.visit-card:hover img { transform: scale(1.06); }
.visit-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,19,38,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.visit-card-overlay h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 12px; }
@media (max-width: 560px) { .contact-tiles { grid-template-columns: 1fr; } }

/* Full-bleed feature banner: text panel + edge-to-edge photo */
.feature-banner {
  background: var(--navy-950);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}
.feature-banner-text {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-banner-text h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: 14px; }
.feature-banner-media { position: relative; overflow: hidden; min-height: 320px; }
.feature-banner-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease-premium); }
.feature-banner-media:hover img { transform: scale(1.05); }
.feature-banner-media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-950) 0%, transparent 18%);
  z-index: 1;
}
.badge-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.badge-pill {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,169,97,0.4);
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.badge-pill svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner-media { min-height: 260px; order: -1; }
  .feature-banner-media::before { background: linear-gradient(180deg, transparent 60%, var(--navy-950) 100%); }
}
.process-flow { position: relative; padding: 20px 0 10px; }
.process-flow-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.process-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 56px 16px;
}
.process-node {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
}
.process-node .node-badge {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 14px;
  transition: transform 0.35s var(--ease-premium), background 0.35s, color 0.35s, box-shadow 0.35s;
  box-shadow: 0 0 0 6px rgba(201,169,97,0.08);
}
.process-node .node-badge svg { width: 26px; height: 26px; }
.process-node:hover .node-badge {
  transform: scale(1.1);
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 0 0 10px rgba(201,169,97,0.14);
}
.process-node .node-step { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em; color: var(--gold-400); margin-bottom: 4px; }
.process-node h4 { color: var(--white); font-size: 0.94rem; margin-bottom: 6px; }
.process-node p { color: rgba(255,255,255,0.55); font-size: 0.8rem; max-width: 165px; line-height: 1.5; }

.pn-1 { grid-column: 1; grid-row: 1; }
.pn-2 { grid-column: 2; grid-row: 1; }
.pn-3 { grid-column: 3; grid-row: 1; }
.pn-4 { grid-column: 4; grid-row: 1; }
.pn-5 { grid-column: 4; grid-row: 2; }
.pn-6 { grid-column: 3; grid-row: 2; }
.pn-7 { grid-column: 2; grid-row: 2; }
.pn-8 { grid-column: 1; grid-row: 2; }

@media (max-width: 900px) {
  .process-flow-svg { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .pn-1, .pn-2, .pn-3, .pn-4, .pn-5, .pn-6, .pn-7, .pn-8 { grid-column: auto; grid-row: auto; }
  .process-node p { max-width: 280px; }
}

/* Responsive */
@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 72px 0; }
  .hero { padding-top: 120px; }
  .hero-actions { margin-bottom: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 50px 1fr; }
  .hero-stats { gap: 24px; }
}

/* ==========================================================================
   Destination Route Map (interactive) — airline route-board treatment
   ========================================================================== */
.route-section {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.route-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}
.route-section .section-head h2, .route-section .section-head p { color: var(--white); }
.route-section .section-head p { color: rgba(255,255,255,0.6); }

.route-hub {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}
.route-hub .hub-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(201,169,97,0.18);
  flex-shrink: 0;
}
.route-hub .hub-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201,169,97,0.5) 0 8px, transparent 8px 16px);
}
.route-hub .hub-plane { width: 20px; height: 20px; color: var(--gold-400); flex-shrink: 0; transform: rotate(90deg); animation: routePlaneDrift 3.2s ease-in-out infinite; }
@keyframes routePlaneDrift { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(6px); } }
.route-hub span.hub-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.route-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  isolation: isolate;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.route-card:hover, .route-card:focus-within { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,0.4); }
.route-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-premium); }
.route-card:hover img { transform: scale(1.08); }
.route-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(8,19,38,0) 30%, rgba(8,19,38,0.92) 100%);
}
.route-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  z-index: 1;
  color: var(--white);
}
.route-card-flight {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  color: var(--gold-400);
  margin-bottom: 8px;
  opacity: 0.9;
}
.route-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.route-card .route-card-meta {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.route-card .route-card-cta {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s var(--ease-premium), max-height 0.3s var(--ease-premium);
  font-size: 0.78rem;
  color: var(--gold-400);
  margin-top: 8px;
  display: flex; align-items: center; gap: 6px;
}
.route-card:hover .route-card-cta, .route-card:focus-within .route-card-cta { opacity: 1; max-height: 30px; }
.route-card a.route-card-link { position: absolute; inset: 0; z-index: 2; }
.route-card a.route-card-link:focus-visible { outline: 2px solid var(--gold-400); outline-offset: -2px; }

.route-footnote {
  margin-top: 22px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) { .route-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .route-grid { grid-template-columns: repeat(2, 1fr); } .route-hub span.hub-label { display: none; } }
@media (max-width: 480px) { .route-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .route-card { aspect-ratio: 1 / 1; } }

@media (prefers-reduced-motion: reduce) {
  .route-hub .hub-plane { animation: none; }
  .route-card, .route-card img { transition: none; }
}
