:root {
  --navy-950: #0a1526;
  --navy-900: #0f1e38;
  --navy-800: #16274a;
  --navy-700: #1f3660;
  --navy-600: #2c477a;

  --gold-500: #e3a41c;
  --gold-400: #e7b340;
  --gold-300: #e8c373;
  --gold-glow: rgba(227, 164, 28, 0.35);

  --sand-100: #f3efe6;
  --sand-50: #faf8f3;
  --ink-900: #12203a;
  --ink-700: #3c4c66;
  --ink-500: #6b7a91;

  --line-on-dark: rgba(227, 164, 28, 0.28);
  --line-on-light: rgba(18, 32, 58, 0.12);

  --white: #ffffff;

  /* Type */
  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-w: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/*  Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
li,
figure {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
textarea {
  font: inherit;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow-light {
  color: var(--gold-300);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.section-title-light {
  color: var(--sand-50);
}

.section-text {
  font-size: 1.05rem;
  color: var(--ink-700);
  max-width: 60ch;
}
.section-text-light {
  color: rgba(250, 248, 243, 0.78);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section {
  padding: 100px 0;
}
.section-sand {
  background: var(--sand-50);
}
.section-navy {
  background: var(--navy-900);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}
.btn-small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(250, 248, 243, 0.4);
  color: var(--sand-50);
}
.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

/* Fade-in on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.8s var(--ease) forwards;
}
.animate-in:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-in:nth-child(2) {
  animation-delay: 0.25s;
}
.animate-in:nth-child(3) {
  animation-delay: 0.4s;
}
.animate-in:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Divider ornament (echoes the hero convergence motif, used sparingly) */
.divider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.divider svg {
  width: 120px;
  height: 24px;
}
.divider path {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 1.5;
  opacity: 0.55;
}
.section-navy + .divider path,
.divider.on-navy path {
  stroke: var(--gold-400);
}

/* Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition:
    background 0.35s var(--ease),
    padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 21, 38, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
  border-radius: 30%;
  object-fit: cover;
  /* box-shadow:
    0 0 0 1px rgba(227, 164, 28, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.35),
    0 0 16px var(--gold-glow); */
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.05);
  /* box-shadow:; */
  /* 0 0 0 1px var(--gold-500),
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 22px var(--gold-glow); */
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--sand-50);
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  gap: 34px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(250, 248, 243, 0.75);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width 0.25s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--sand-50);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 110;
}
.menu-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--sand-50);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.menu-toggle.open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(78vw, 340px);
  background: var(--navy-950);
  border-left: 1px solid var(--line-on-dark);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 105;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--sand-50);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-nav-cta {
  align-self: flex-start;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 38, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 104;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 21, 38, 0.55) 0%,
      rgba(10, 21, 38, 0.75) 55%,
      var(--navy-950) 100%
    ),
    linear-gradient(
      100deg,
      rgba(10, 21, 38, 0.9) 20%,
      rgba(10, 21, 38, 0.35) 70%
    );
}

.hero-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.route-line {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.55;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawRoute 2.2s var(--ease) forwards;
  animation-delay: var(--d);
}
@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}
.route-origin {
  fill: var(--gold-300);
  opacity: 0.7;
}
.route-hub {
  fill: var(--gold-400);
}
.route-hub-ring {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1.5;
  opacity: 0.6;
  transform-origin: 620px 220px;
  animation: hubPulse 2.6s var(--ease) infinite;
}
@keyframes hubPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.1);
    opacity: 0;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .route-line {
    stroke-dashoffset: 0;
    animation: none;
  }
  .route-hub-ring {
    animation: none;
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--sand-50);
  margin-bottom: 24px;
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(250, 248, 243, 0.82);
  max-width: 58ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Marquee (industries strip) */
.marquee {
  background: var(--navy-950);
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.65);
}
.marquee-track .dot {
  color: var(--gold-500);
  font-size: 0.7rem;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
  }
  .marquee-track {
    animation: none;
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-media-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-copy .section-title {
  margin-bottom: 20px;
}
.about-copy .section-text {
  margin-bottom: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.service-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 32px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  background: var(--navy-700);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(227, 164, 28, 0.18);
  color: var(--gold-400);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--sand-50);
  margin-bottom: 16px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(250, 248, 243, 0.72);
  font-size: 0.94rem;
  margin-bottom: 9px;
  line-height: 1.5;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--gold-500);
}

.service-card-wide {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-wide-media {
  height: 200px;
}
.service-card-wide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-wide-body {
  padding: 32px;
}
.service-card-wide-body p {
  color: rgba(250, 248, 243, 0.75);
  font-size: 0.96rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-300);
  border: 1px solid rgba(227, 164, 28, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
}

.industries-band {
  margin-top: 22px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.industries-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sand-50);
  white-space: nowrap;
}
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(250, 248, 243, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--navy-700);
  border-radius: 999px;
  padding: 8px 16px;
}
.industry-chip i {
  color: var(--gold-400);
  font-size: 0.85rem;
}

/* Why Partner With Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 48px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-on-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-900);
}
.why-list li i {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(227, 164, 28, 0.2);
  color: var(--gold-500);
  font-size: 0.8rem;
}

/* Partnership CTA */
.partnership {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.partnership-bg {
  position: absolute;
  inset: 0;
}
.partnership-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partnership-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 21, 38, 0.94) 30%,
    rgba(10, 21, 38, 0.6) 100%
  );
}
.partnership-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.partnership-content .section-title {
  margin-bottom: 20px;
}
.partnership-text {
  font-size: 1.05rem;
  color: rgba(250, 248, 243, 0.82);
  margin-bottom: 32px;
  max-width: 58ch;
}

/* Contact */
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head-center {
  max-width: 560px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center .section-text {
  margin-bottom: 0;
}

.contact-cards {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  background: var(--navy-700);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(227, 164, 28, 0.18);
  color: var(--gold-400);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.contact-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 248, 243, 0.5);
  margin-bottom: 8px;
}
.contact-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--sand-50);
  word-break: break-word;
}
.contact-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: gap 0.2s var(--ease);
}
.contact-card-cta i {
  font-size: 0.75rem;
  transition: transform 0.2s var(--ease);
}
.contact-card:hover .contact-card-cta i {
  transform: translateX(4px);
}

.contact-note {
  margin-top: 28px;
  color: rgba(250, 248, 243, 0.5);
  font-style: italic;
  font-size: 0.92rem;
}
.contact-note i {
  color: var(--gold-400);
  font-style: normal;
  margin-right: 4px;
}
.contact-soon {
  color: rgba(250, 248, 243, 0.55);
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  padding-top: 8px;
}
.footer-divider {
  display: flex;
  justify-content: center;
  padding: 36px 0 0;
}
.footer-divider svg {
  width: 120px;
  height: 24px;
}
.footer-divider path {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 1.5;
  opacity: 0.4;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px 24px 40px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand .brand-name {
  color: var(--sand-50);
}
.footer-slogan {
  margin-top: 14px;
  color: rgba(250, 248, 243, 0.6);
  font-size: 0.95rem;
  max-width: 34ch;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(250, 248, 243, 0.68);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(250, 248, 243, 0.4);
  font-size: 0.82rem;
}

/* Responsive */
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    flex-wrap: nowrap;
  }
  .footer-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card-wide {
    grid-column: span 2;
    flex-direction: row;
  }
  .service-card-wide-media {
    height: auto;
    width: 42%;
    flex-shrink: 0;
  }
  .service-card-wide-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}
