/* ==========================================================================
   Admire Global Logistics — main stylesheet
   ========================================================================== */

:root {
  --navy-950: #040d1a;
  --navy-900: #07162b;
  --navy-800: #0c2240;
  --navy-700: #13305a;
  --blue: #1b5fad;          /* brand blue, from the logo */
  --blue-500: #2b74cc;
  --sky: #6fb3ff;           /* accent on dark surfaces */
  --ink: #0b1624;
  --ink-2: #3a4556;
  --muted: #6a7586;
  --paper: #ffffff;
  --mist: #f3f6fa;
  --line: #e2e8f0;
  --line-dark: rgba(255, 255, 255, 0.12);

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

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(88px, 11vw, 160px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; letter-spacing: -0.025em; line-height: 1.08; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.icon { width: 24px; height: 24px; flex: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; position: relative; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); }
.section--dark h2, .section--dark h3 { color: #fff; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- Type helpers ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--dark .eyebrow, .on-dark .eyebrow { color: var(--sky); }
.h-xl { font-size: clamp(44px, 7.4vw, 104px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.98; }
.h-lg { font-size: clamp(36px, 5vw, 68px); letter-spacing: -0.035em; line-height: 1.02; }
.h-md { font-size: clamp(28px, 3.2vw, 44px); }
.h-sm { font-size: clamp(21px, 1.8vw, 26px); letter-spacing: -0.02em; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--ink-2); }
.section--dark .lead { color: rgba(255, 255, 255, 0.72); }
.muted { color: var(--muted); }
.text-accent { color: var(--blue); }
.section--dark .text-accent { color: var(--sky); }

.section-head { display: grid; gap: 24px; margin-bottom: clamp(48px, 6vw, 88px); }
.section-head--split { grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

/* ---- Buttons ---- */
.btn {
  --bg: var(--blue); --fg: #fff; --bd: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 56px; padding: 0 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; letter-spacing: 0.005em;
  color: var(--fg); background: var(--bg); border: 1px solid var(--bd); border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn .icon { width: 20px; height: 20px; transition: transform .35s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }
.btn:hover { --bg: var(--blue-500); --bd: var(--blue-500); }
.btn--wa { --bg: #fff; --fg: var(--navy-900); --bd: #fff; }
.btn--wa .icon { color: #1faa53; }
.btn--wa:hover { --bg: #eaf6ee; --bd: #eaf6ee; }
.btn--ghost { --bg: transparent; --fg: #fff; --bd: rgba(255, 255, 255, 0.35); }
.btn--ghost:hover { --bg: rgba(255, 255, 255, 0.08); --bd: #fff; }
.btn--outline { --bg: transparent; --fg: var(--ink); --bd: var(--line); }
.btn--outline:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--sm { height: 44px; padding: 0 18px; font-size: 14.5px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.section--dark .link-arrow { color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 88px; transition: height .4s var(--ease); }
.brand { display: block; position: relative; width: 196px; height: 42px; flex: none; }
.brand img { position: absolute; inset: 0; width: 100%; height: 100%; transition: opacity .4s var(--ease); }
.brand .logo-color { opacity: 0; }

.nav { display: none; align-items: center; gap: 40px; }
.nav a:not(.btn) {
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: rgba(255, 255, 255, 0.86); padding: 8px 0; transition: color .3s;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: #fff; }
.nav .btn { margin-left: 8px; }

.site-header.is-solid { background: rgba(255, 255, 255, 0.94); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px); box-shadow: 0 1px 0 var(--line); }
.site-header.is-solid .site-header__bar { height: 74px; }
.site-header.is-solid .logo-white { opacity: 0; }
.site-header.is-solid .logo-color { opacity: 1; }
.site-header.is-solid .nav a:not(.btn) { color: var(--ink-2); }
.site-header.is-solid .nav a:not(.btn):hover, .site-header.is-solid .nav a[aria-current="page"] { color: var(--ink); }
.site-header.is-solid .nav .btn--ghost { --fg: var(--ink); --bd: var(--line); }
.site-header.is-solid .nav .btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.site-header.is-hidden { transform: translateY(-100%); }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 0; cursor: pointer; color: #fff;
}
.menu-toggle span { display: block; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.site-header.is-solid .menu-toggle { color: var(--ink); }
.menu-open .menu-toggle { color: #fff !important; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

@media (min-width: 1000px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .brand { width: 214px; height: 46px; }
}

.mobile-nav {
  position: fixed; inset: 0; z-index: 45; background: var(--navy-950);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px var(--gutter) 40px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.menu-open .mobile-nav { opacity: 1; visibility: visible; }
.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
.menu-open .site-header .logo-white { opacity: 1; }
.menu-open .site-header .logo-color { opacity: 0; }
.mobile-nav ul { display: grid; gap: 4px; }
.mobile-nav ul a {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: clamp(34px, 9vw, 52px); font-weight: 600; letter-spacing: -0.03em;
  color: #fff; padding: 10px 0; border-bottom: 1px solid var(--line-dark);
}
.mobile-nav ul a .icon { color: var(--sky); width: 28px; height: 28px; }
.mobile-nav__foot { display: grid; gap: 14px; color: rgba(255,255,255,.6); font-size: 15px; }
.mobile-nav__foot .btn { width: 100%; }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column;
  color: #fff; overflow: hidden; background: var(--navy-950); isolation: isolate;
}
.hero__media { position: absolute; inset: -8% 0; z-index: -2; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; animation: kenburns 24s var(--ease) both; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1.02); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 13, 26, 0.92) 0%, rgba(4, 13, 26, 0.7) 38%, rgba(4, 13, 26, 0.15) 75%),
    linear-gradient(0deg, rgba(4, 13, 26, 0.9) 0%, rgba(4, 13, 26, 0) 40%),
    linear-gradient(180deg, rgba(4, 13, 26, 0.55) 0%, rgba(4, 13, 26, 0) 22%);
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero__body { flex: 1; display: flex; align-items: center; padding-top: 140px; padding-bottom: 64px; }
.hero__content { max-width: 880px; }
.hero .eyebrow { color: rgba(255, 255, 255, 0.82); margin-bottom: 32px; }
.hero .eyebrow::before { background: var(--sky); }
.hero h1 { color: #fff; margin-bottom: 32px; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero h1 .line > span { display: block; transform: translateY(105%); animation: rise 1.2s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
.hero h1 em { font-style: normal; color: var(--sky); }
@keyframes rise { to { transform: translateY(0); } }
.hero__copy { max-width: 560px; font-size: clamp(18px, 1.5vw, 21px); color: rgba(255, 255, 255, 0.78); margin-bottom: 44px; }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 1s var(--ease) forwards; }
.fade-up.d1 { animation-delay: .45s; } .fade-up.d2 { animation-delay: .6s; } .fade-up.d3 { animation-delay: .8s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero__rail { border-top: 1px solid var(--line-dark); }
.hero__rail ul { display: grid; grid-template-columns: repeat(2, 1fr); }
.hero__rail li {
  display: flex; align-items: center; gap: 14px; padding: 22px 0;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.75);
}
.hero__rail li .icon { color: var(--sky); width: 22px; height: 22px; }
.hero__rail li + li { padding-left: 0; }
@media (min-width: 800px) {
  .hero__rail ul { grid-template-columns: repeat(4, 1fr) auto; }
  .hero__rail li + li { padding-left: 28px; border-left: 1px solid var(--line-dark); }
}
.scroll-cue { display: none; align-items: center; gap: 12px; padding-left: 28px; border-left: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.scroll-cue i { position: relative; width: 1px; height: 36px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: #fff; animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { to { top: 100%; } }
@media (min-width: 800px) { .scroll-cue { display: flex; } }

/* ---- Page hero (inner pages) ---- */
.page-hero { position: relative; color: #fff; background: var(--navy-950); overflow: hidden; isolation: isolate; padding: clamp(170px, 20vw, 240px) 0 clamp(72px, 9vw, 120px); }
.page-hero__media { position: absolute; inset: -10% 0; z-index: -2; will-change: transform; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,13,26,.94) 0%, rgba(4,13,26,.72) 50%, rgba(4,13,26,.35) 100%), linear-gradient(0deg, rgba(4,13,26,.7), transparent 50%); }
.page-hero h1 { color: #fff; max-width: 15ch; margin: 28px 0 28px; }
.page-hero .eyebrow { color: rgba(255,255,255,.82); }
.page-hero .eyebrow::before { background: var(--sky); }
.page-hero p { max-width: 580px; color: rgba(255,255,255,.76); font-size: clamp(18px, 1.5vw, 21px); }
.crumbs { display: flex; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.crumbs a:hover { color: #fff; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(12% 0 0 0); transition: clip-path 1.4s var(--ease); }
.reveal-img img { transform: scale(1.12); transition: transform 1.8s var(--ease); }
.reveal-img.is-in { clip-path: inset(0 0 0 0); }
.reveal-img.is-in img { transform: scale(1); }

/* ==========================================================================
   Intro
   ========================================================================== */
.intro { display: grid; gap: 56px; }
.intro__statement { font-family: var(--font-display); font-size: clamp(30px, 3.8vw, 54px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; color: var(--ink); }
.intro__statement span { color: var(--muted); }
.intro__side { display: grid; gap: 40px; align-content: start; }
.pillars { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.pillars li { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pillars .icon { color: var(--blue); margin-top: 2px; }
.pillars strong { display: block; font-family: var(--font-display); font-size: 17px; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.pillars p { font-size: 15px; color: var(--muted); line-height: 1.55; }
@media (min-width: 640px) {
  .pillars { grid-template-columns: 1fr 1fr; column-gap: 32px; }
}
@media (min-width: 1000px) {
  .intro { grid-template-columns: 1.25fr 1fr; gap: 96px; }
}

/* ==========================================================================
   Services explorer (home)
   ========================================================================== */
.svc { display: grid; gap: 48px; }
.svc__list { border-top: 1px solid var(--line-dark); counter-reset: svc; }
.svc__item { border-bottom: 1px solid var(--line-dark); }
.svc__trigger {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 16px;
  width: 100%; padding: 24px 0; text-align: left; background: none; border: 0; color: inherit; cursor: pointer; font: inherit;
}
.svc__num { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.45); transition: color .3s; }
.svc__name { font-family: var(--font-display); font-size: clamp(22px, 2.3vw, 32px); font-weight: 600; letter-spacing: -0.025em; color: rgba(255,255,255,.6); transition: color .4s var(--ease), transform .5s var(--ease); }
.svc__trigger .icon { width: 22px; height: 22px; color: var(--sky); opacity: 0; transform: translateX(-10px); transition: opacity .4s, transform .4s var(--ease); }
.svc__item.is-active .svc__name, .svc__trigger:hover .svc__name { color: #fff; }
.svc__item.is-active .svc__name { transform: translateX(8px); }
.svc__item.is-active .svc__num { color: var(--sky); }
.svc__item.is-active .svc__trigger .icon { opacity: 1; transform: none; }
.svc__detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.svc__detail > div { overflow: hidden; }
.svc__item.is-active .svc__detail { grid-template-rows: 1fr; }
.svc__detail-inner { padding: 0 0 28px 60px; display: grid; gap: 18px; }
.svc__detail p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 520px; }
.svc__mobile-img { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.svc__mobile-img img { width: 100%; height: 100%; object-fit: cover; }

.svc__stage { display: none; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy-800); }
.svc__stage figure { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.06); transition: opacity .8s var(--ease), transform 1.4s var(--ease); }
.svc__stage figure.is-active { opacity: 1; transform: scale(1); }
.svc__stage img { width: 100%; height: 100%; object-fit: cover; }
.svc__stage figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,13,26,.85), rgba(4,13,26,0) 55%); }
.svc__stage figcaption { position: absolute; left: 32px; right: 32px; bottom: 30px; z-index: 1; display: flex; align-items: center; gap: 16px; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.svc__stage figcaption .badge { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); }
.svc__stage figcaption .icon { color: #fff; }

@media (min-width: 1000px) {
  .svc { grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: stretch; }
  .svc__stage { display: block; min-height: 640px; position: sticky; top: 110px; height: calc(100vh - 160px); max-height: 760px; }
  .svc__mobile-img { display: none; }
}

/* ==========================================================================
   Why choose
   ========================================================================== */
.why { display: grid; gap: 56px; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; max-height: 720px; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__media blockquote {
  position: absolute; left: 20px; right: 20px; bottom: 20px; margin: 0; padding: 28px;
  background: rgba(7, 22, 43, 0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  color: #fff; font-family: var(--font-display); font-size: clamp(19px, 1.7vw, 23px); font-weight: 500; line-height: 1.35; letter-spacing: -0.015em;
}
.why__grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.why__cell { padding: 32px 0; border-bottom: 1px solid var(--line); display: grid; gap: 14px; align-content: start; }
.why__cell .icon-wrap { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); transition: background .4s var(--ease), color .4s, border-color .4s; }
.why__cell:hover .icon-wrap { background: var(--blue); color: #fff; border-color: var(--blue); }
.why__cell h3 { font-size: 20px; letter-spacing: -0.02em; }
.why__cell p { font-size: 15.5px; color: var(--muted); }
@media (min-width: 640px) {
  .why__grid { grid-template-columns: 1fr 1fr; }
  .why__cell { padding: 36px 32px 36px 0; }
  .why__cell:nth-child(even) { padding: 36px 0 36px 32px; border-left: 1px solid var(--line); }
}
@media (min-width: 1000px) {
  .why { grid-template-columns: 0.85fr 1.15fr; gap: 88px; align-items: start; }
  .why__media { position: sticky; top: 110px; }
}

/* ==========================================================================
   Global reach map
   ========================================================================== */
.reach { background: var(--navy-950); color: rgba(255,255,255,.72); overflow: hidden; }
.reach .section-head h2 { color: #fff; }
.reach::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 70% 45%, rgba(43,116,204,.22), transparent 70%); pointer-events: none; }
.map { position: relative; width: 100%; aspect-ratio: 1000 / 460; }
.map__dots { position: absolute; inset: 0; background: rgba(140, 170, 210, 0.3); -webkit-mask: url(../img/world-dots.svg) center / 100% 100% no-repeat; mask: url(../img/world-dots.svg) center / 100% 100% no-repeat; }
.map__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.map__arc { fill: none; stroke: url(#arcGrad); stroke-width: 1.3; stroke-linecap: round; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); }
.map.is-in .map__arc { animation: draw 2.4s var(--ease) forwards; animation-delay: var(--delay); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.map__pulse { fill: var(--sky); opacity: 0; }
.map.is-in .map__pulse { opacity: 1; transition: opacity .6s; transition-delay: var(--delay); }
.map__traveler { fill: #fff; }
.map__hub circle.core { fill: #fff; }
.map__hub circle.ring { fill: none; stroke: var(--sky); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: ping 2.8s ease-out infinite; animation-delay: var(--delay, 0s); }
.map__hub--origin circle.core { fill: var(--sky); }
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(3.2); opacity: 0; } }
.map__label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; fill: rgba(255,255,255,.62); }
.map__label--origin { fill: #fff; font-weight: 500; }
@media (max-width: 700px) { .map__label { display: none; } .map__label--origin { display: block; font-size: 16px; } }

.reach__foot { display: grid; gap: 1px; margin-top: clamp(40px, 5vw, 72px); background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.reach__foot div { background: var(--navy-950); padding: 28px; display: grid; gap: 10px; }
.reach__foot .icon { color: var(--sky); }
.reach__foot strong { font-family: var(--font-display); color: #fff; font-size: 18px; font-weight: 600; }
.reach__foot p { font-size: 15px; }
.reach__note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.42); }
@media (min-width: 800px) { .reach__foot { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Process
   ========================================================================== */
.process { position: relative; display: grid; gap: 0; }
.process__track { display: none; }
.process__step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 44px; }
.process__step::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 1px; background: var(--line); }
.process__step:last-child::before { display: none; }
.process__step::after { content: ""; position: absolute; left: 27px; top: 56px; width: 1px; height: 0; background: var(--blue); transition: height 1s var(--ease); transition-delay: calc(var(--d, 0s) + .3s); }
.process__step.is-in::after { height: calc(100% - 56px); }
.process__step:last-child::after { display: none; }
.process__dot {
  position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--muted);
  transition: background .6s var(--ease), color .6s, border-color .6s; transition-delay: var(--d, 0s);
}
.process__step.is-in .process__dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.process__step h3 { font-size: 22px; margin: 12px 0 10px; }
.process__step p { font-size: 15.5px; color: var(--muted); max-width: 420px; }

@media (min-width: 1000px) {
  .process { grid-template-columns: repeat(5, 1fr); gap: 32px; }
  .process__track { display: block; position: absolute; left: 28px; right: 28px; top: 28px; height: 1px; background: var(--line); }
  .process__track span { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--blue); transition: width 2.6s var(--ease) .2s; }
  .process.is-in .process__track span { width: 100%; }
  .process__step { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .process__step::before, .process__step::after { display: none; }
  .process__step h3 { margin-top: 32px; }
}

/* ==========================================================================
   Industries
   ========================================================================== */
.industries { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry {
  position: relative; display: grid; gap: 40px; align-content: space-between; padding: 28px 22px; min-height: 180px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; overflow: hidden;
  transition: color .5s var(--ease);
}
.industry::before { content: ""; position: absolute; inset: 0; background: var(--navy-900); transform: translateY(101%); transition: transform .6s var(--ease); z-index: 0; }
.industry > * { position: relative; z-index: 1; }
.industry .icon { width: 32px; height: 32px; color: var(--blue); transition: color .5s; }
.industry h3 { font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -0.02em; transition: color .5s; }
.industry span { font-family: var(--font-mono); font-size: 12px; color: var(--muted); position: absolute; top: 26px; right: 22px; transition: color .5s; }
.industry:hover::before { transform: none; }
.industry:hover h3 { color: #fff; }
.industry:hover .icon { color: var(--sky); }
.industry:hover span { color: rgba(255,255,255,.5); }
@media (min-width: 900px) {
  .industries { grid-template-columns: repeat(4, 1fr); }
  .industry { min-height: 240px; padding: 36px 32px; }
  .industry span { top: 36px; right: 32px; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta { position: relative; color: #fff; overflow: hidden; isolation: isolate; background: var(--navy-950); }
.cta__media { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(4,13,26,.95) 10%, rgba(4,13,26,.7) 55%, rgba(4,13,26,.45)); }
.cta__inner { padding-block: clamp(110px, 14vw, 200px); display: grid; gap: 40px; }
.cta h2 { color: #fff; max-width: 13ch; }
.cta p { color: rgba(255,255,255,.75); max-width: 520px; font-size: clamp(18px, 1.5vw, 21px); }
.cta .eyebrow { color: rgba(255,255,255,.8); }
.cta .eyebrow::before { background: var(--sky); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.62); font-size: 15px; }
.site-footer__top { display: grid; gap: 48px; padding: clamp(72px, 8vw, 110px) 0 56px; }
.site-footer__brand img { width: 220px; height: auto; margin-bottom: 24px; }
.site-footer__brand p { max-width: 340px; }
.site-footer h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 20px; }
.site-footer ul { display: grid; gap: 12px; }
.site-footer a { transition: color .3s; }
.site-footer a:hover { color: #fff; }
.site-footer .contact-line { display: flex; gap: 12px; align-items: flex-start; }
.site-footer .contact-line .icon { width: 18px; height: 18px; color: var(--sky); margin-top: 3px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; padding: 28px 0 36px; border-top: 1px solid var(--line-dark); font-size: 13.5px; color: rgba(255,255,255,.42); }
@media (min-width: 700px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .site-footer__top { grid-template-columns: 1.4fr .8fr 1fr 1.3fr; gap: 56px; } }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%; background: #1faa53; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(31,170,83,.55); transition: transform .4s var(--ease);
  transform: scale(0);
}
.wa-float.is-visible { transform: scale(1); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .icon { width: 30px; height: 30px; }

/* ==========================================================================
   About page
   ========================================================================== */
.split { display: grid; gap: 56px; align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { display: grid; gap: 26px; align-content: start; }
@media (min-width: 1000px) {
  .split { grid-template-columns: 1fr 1fr; gap: 96px; }
  .split--rev .split__media { order: 2; }
}

.mv { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.mv__card { background: var(--navy-900); padding: clamp(36px, 5vw, 64px); display: grid; gap: 24px; align-content: start; }
.mv__card .tag { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); }
.mv__card p { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; line-height: 1.3; letter-spacing: -0.02em; color: #fff; }
@media (min-width: 900px) { .mv { grid-template-columns: 1fr 1fr; } }

.values { display: grid; border-top: 1px solid var(--line); }
.value-row { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.value-row .n { font-family: var(--font-mono); font-size: 13px; color: var(--blue); }
.value-row h3 { font-size: clamp(24px, 2.4vw, 34px); }
.value-row p { color: var(--muted); max-width: 560px; }
@media (min-width: 900px) {
  .value-row { grid-template-columns: 80px 1fr 1.2fr; gap: 32px; align-items: baseline; padding: 40px 0; }
}

.philosophy { text-align: left; max-width: 1040px; }
.philosophy blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(30px, 4vw, 56px); font-weight: 600; line-height: 1.12; letter-spacing: -0.03em; color: var(--ink); }
.philosophy blockquote span { color: var(--blue); }
.philosophy__points { display: grid; gap: 24px; margin-top: 56px; }
.philosophy__points li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.philosophy__points .icon { color: var(--blue); width: 20px; height: 20px; margin-top: 4px; }
@media (min-width: 800px) { .philosophy__points { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .icon { width: 20px; height: 20px; color: var(--blue); margin-top: 4px; }
.section--dark .checklist .icon, .on-dark .checklist .icon { color: var(--sky); }

/* ==========================================================================
   Services page
   ========================================================================== */
.subnav { position: sticky; top: 74px; z-index: 30; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.subnav ul { position: relative; display: flex; gap: 32px; overflow-x: auto; scrollbar-width: none; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { position: relative; display: block; padding: 20px 0; font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--muted); white-space: nowrap; transition: color .3s; }
.subnav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .4s var(--ease); }
.subnav a:hover, .subnav a.is-active { color: var(--ink); }
.subnav a.is-active::after { transform: scaleX(1); }

.service { padding: clamp(80px, 10vw, 140px) 0; border-bottom: 1px solid var(--line); }
.service:nth-of-type(even) { background: var(--mist); }
.service__grid { display: grid; gap: 48px; }
.service__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.service__media img { width: 100%; height: 100%; object-fit: cover; }
.service__media .chip {
  position: absolute; left: 20px; top: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px;
  background: rgba(7,22,43,.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 100px; color: #fff;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.service__media .chip .icon { width: 18px; height: 18px; color: var(--sky); }
.service__body { display: grid; gap: 28px; align-content: start; }
.service__num { font-family: var(--font-mono); font-size: 13px; color: var(--blue); letter-spacing: .1em; }
.service__body h2 { font-size: clamp(36px, 4.4vw, 60px); letter-spacing: -0.035em; }
.service__cols { display: grid; gap: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.service__cols h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.service__cols .checklist li { font-size: 15.5px; line-height: 1.5; }
@media (min-width: 700px) { .service__cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) {
  .service__grid { grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: start; }
  .service__media { position: sticky; top: 160px; aspect-ratio: 4/5; }
  .service--rev .service__media { order: 2; }
}

.compare { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare > div { background: #fff; padding: 24px; display: grid; gap: 8px; align-content: start; }
.compare strong { font-family: var(--font-display); font-size: 18px; color: var(--ink); }
.compare .k { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.compare p { font-size: 15px; color: var(--muted); line-height: 1.55; }
@media (min-width: 600px) { .compare { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; gap: 20px; }
.contact-card {
  position: relative; display: grid; gap: 28px; align-content: space-between; padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; min-height: 260px;
  transition: border-color .4s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
}
a.contact-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(11,22,36,.25); }
.contact-card .icon-wrap { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--mist); color: var(--blue); }
.contact-card .label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.contact-card .value { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); line-height: 1.25; word-break: break-word; }
.contact-card .go { position: absolute; top: clamp(28px, 3vw, 40px); right: clamp(28px, 3vw, 40px); width: 22px; height: 22px; color: var(--muted); transition: color .3s, transform .4s var(--ease); }
a.contact-card:hover .go { color: var(--blue); transform: translate(3px, -3px); }
.contact-card--wa { background: var(--navy-900); border-color: var(--navy-900); color: rgba(255,255,255,.72); }
.contact-card--wa .icon-wrap { background: #1faa53; color: #fff; }
.contact-card--wa .label { color: rgba(255,255,255,.55); }
.contact-card--wa .value { color: #fff; }
.contact-card--wa .go { color: rgba(255,255,255,.6); }
a.contact-card--wa:hover { border-color: #1faa53; }
a.contact-card--wa:hover .go { color: #fff; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) {
  .contact-grid { grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: auto auto; }
  .contact-card--wa { grid-row: span 2; min-height: 540px; }
  .contact-card--addr { grid-column: span 2; }
}

.quick { display: grid; gap: 12px; }
.quick a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  transition: background .35s var(--ease), border-color .35s;
}
.quick a:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.quick .icon { width: 18px; height: 18px; color: var(--sky); }

.map-embed { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--mist); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }
@media (max-width: 700px) { .map-embed { aspect-ratio: 4/5; } }
@media (min-width: 1000px) { .split .map-embed { aspect-ratio: auto; min-height: 560px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 799px) {
  .hero::before { background: linear-gradient(180deg, rgba(4,13,26,.75) 0%, rgba(4,13,26,.6) 45%, rgba(4,13,26,.92) 100%); }
  .hero__media img { object-position: 70% 50%; }
}
