:root {
  --ink: #071421;
  --ink-soft: #0d2233;
  --ink-lift: #153247;
  --paper: #f7f7f2;
  --paper-alt: #eef1ed;
  --white: #ffffff;
  --mint: #8df3d9;
  --mint-deep: #26bda0;
  --gold: #f4c76b;
  --blue: #96aefb;
  --text: #263947;
  --muted: #667783;
  --line: rgba(7, 20, 33, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow-sm: 0 18px 50px rgba(7, 20, 33, 0.09);
  --shadow-lg: 0 36px 110px rgba(1, 10, 18, 0.27);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-height: 82px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(96px, 11vw, 160px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(247, 247, 242, 0.9);
  box-shadow: 0 1px 0 rgba(7, 20, 33, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--mint);
  flex: 0 0 auto;
}

.site-header.is-scrolled .brand-mark,
.site-header.menu-active .brand-mark {
  color: var(--mint-deep);
}

.brand-word {
  font-size: 1.22rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav a:not(.nav-cta) {
  position: relative;
  opacity: 0.84;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1.5px;
  background: currentColor;
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled .nav-cta,
.site-header.menu-active .nav-cta {
  border-color: var(--line);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  padding: 22px 24px 32px;
  display: grid;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 760;
}

/* Shared typography */
.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--mint-deep);
  font-size: 0.73rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--mint);
}

.section-kicker-light {
  color: var(--mint);
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 88px);
}

.section-heading h2,
.reach-copy h2,
.contact-copy h2 {
  margin: 0;
  max-width: 990px;
  font-size: clamp(2.55rem, 5.8vw, 5.7rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 760;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.heading-split h2 {
  max-width: 820px;
}

.heading-split > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

/* Buttons */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(141, 243, 217, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  box-shadow: 0 20px 48px rgba(141, 243, 217, 0.25);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-lift);
  box-shadow: 0 18px 36px rgba(7, 20, 33, 0.18);
}

/* Hero */
.hero {
  position: relative;
  min-height: 940px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 18%, rgba(59, 143, 141, 0.23), transparent 31%),
    radial-gradient(circle at 18% 90%, rgba(52, 83, 126, 0.25), transparent 36%),
    linear-gradient(135deg, #06111c 0%, #081c2c 54%, #071421 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.13));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  width: 620px;
  height: 620px;
  top: -270px;
  right: -220px;
  border: 1px solid rgba(141, 243, 217, 0.16);
  box-shadow: inset 0 0 100px rgba(141, 243, 217, 0.05);
}

.orb-two {
  width: 320px;
  height: 320px;
  bottom: 65px;
  left: -180px;
  border: 1px solid rgba(244, 199, 107, 0.16);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 875px;
  padding-top: 148px;
  padding-bottom: 98px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  gap: clamp(58px, 7vw, 108px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(4.4rem, 7.3vw, 7.8rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
  font-weight: 730;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 0.08em;
  color: var(--mint);
  font-style: normal;
  font-weight: 690;
}

.hero-lead {
  max-width: 670px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-notes {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 27px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 199, 107, 0.1);
}

.hero-visual {
  position: relative;
  width: min(100%, 510px);
  justify-self: end;
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.1deg);
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 27px;
  pointer-events: none;
}

.hero-image-shell img,
.hero-image-shell picture {
  width: 100%;
  height: 100%;
}

.hero-image-shell img {
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 14, 24, 0.62), transparent 48%),
    linear-gradient(115deg, rgba(3, 14, 24, 0.11), transparent 65%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(2, 10, 18, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-card strong,
.floating-card small {
  display: block;
  line-height: 1.28;
}

.floating-card strong {
  font-size: 0.82rem;
}

.floating-card small {
  margin-top: 3px;
  color: #66727b;
  font-size: 0.69rem;
}

.card-path {
  left: -58px;
  bottom: 72px;
}

.card-global {
  top: 55px;
  right: -54px;
}

.floating-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 11px;
  flex: 0 0 auto;
}

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

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 7px rgba(38, 189, 160, 0.12);
  flex: 0 0 auto;
}

.route-line {
  position: absolute;
  z-index: 3;
  width: 180px;
  color: var(--gold);
  top: -56px;
  left: -75px;
  opacity: 0.86;
  transform: rotate(-8deg);
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.3em;
}

/* About */
.about {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 128px);
  align-items: start;
}

.about-copy {
  position: sticky;
  top: 128px;
}

.about-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  line-height: 1.48;
  letter-spacing: -0.022em;
}

.about-copy em {
  color: var(--ink);
}

blockquote {
  position: relative;
  margin: 48px 0 0;
  padding: 28px 0 0 36px;
  border-top: 1px solid var(--line);
}

blockquote > span {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--mint-deep);
  font-size: 4.3rem;
  line-height: 1;
  font-weight: 800;
}

blockquote p {
  margin: 0;
  max-width: 370px;
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.about-image {
  position: relative;
}

.about-image picture,
.about-image img {
  width: 100%;
}

.about-image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.image-caption {
  width: min(82%, 430px);
  margin: -52px 26px 0 auto;
  position: relative;
  z-index: 2;
  padding: 21px 24px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 22px 55px rgba(7, 20, 33, 0.22);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption strong {
  font-size: 1rem;
}

.image-caption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
}

.values-grid {
  margin-top: clamp(72px, 9vw, 126px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  min-height: 250px;
  padding: 34px 28px 36px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.value-card:last-child {
  border-right: 0;
}

.value-card:hover {
  background: rgba(141, 243, 217, 0.14);
  transform: translateY(-4px);
}

.value-number {
  color: var(--mint-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.value-card h3 {
  margin: 54px 0 13px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

/* Services */
.services {
  background: var(--paper-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 20, 33, 0.09);
  border-radius: 25px;
  box-shadow: 0 14px 34px rgba(7, 20, 33, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.13;
  transform: scale(0.75);
  transition: transform 280ms ease, opacity 280ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 189, 160, 0.32);
  background: var(--white);
  box-shadow: 0 26px 65px rgba(7, 20, 33, 0.09);
}

.service-card:hover::after {
  transform: scale(1.2);
  opacity: 0.2;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 15px;
}

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

.service-card h3 {
  margin: 70px 0 15px;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.journey-band {
  margin-top: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.journey-photo,
.journey-photo picture,
.journey-photo img {
  width: 100%;
  height: 100%;
}

.journey-photo img {
  object-fit: cover;
  object-position: center;
}

.journey-content {
  padding: clamp(48px, 6.5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-content h3 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.journey-steps {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-step {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--line-light);
}

.journey-step:last-child {
  border-bottom: 1px solid var(--line-light);
}

.journey-step .step-number {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.journey-step h4 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}

.journey-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

/* Reach */
.reach {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 18%, rgba(38, 189, 160, 0.12), transparent 29%),
    linear-gradient(135deg, #071421 0%, #0a1c2b 100%);
}

.reach-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.reach-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(420px, 1.13fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.reach-copy h2 {
  color: var(--white);
  max-width: 660px;
}

.reach-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.roadmap-note {
  max-width: 620px;
  margin-top: 33px;
  padding: 17px 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.roadmap-note svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 1px;
}

.globe-visual {
  position: relative;
  color: var(--mint);
}

.globe {
  width: min(100%, 560px);
  margin-inline: auto;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.3));
}

.globe-pulses circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: globe-pulse 2.8s ease-out infinite;
}

.globe-pulses circle:nth-child(2) {
  animation-delay: 0.9s;
}

.globe-pulses circle:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes globe-pulse {
  0% { opacity: 0.8; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.7); }
}

.globe-label {
  position: absolute;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(5, 18, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.69rem;
  font-weight: 800;
}

.label-one { left: 1%; bottom: 31%; }
.label-two { left: 44%; top: 22%; }
.label-three { right: 0; top: 38%; }

.locations-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(74px, 9vw, 120px);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.location-card {
  min-height: 280px;
  padding: 30px 24px;
  border-right: 1px solid var(--line-light);
  transition: background 180ms ease;
}

.location-card:last-child {
  border-right: 0;
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.045);
}

.location-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(244, 199, 107, 0.09);
}

.location-card h3 {
  margin: 58px 0 6px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.location-countries {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
}

.location-card p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(60px, 10vw, 145px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 126px;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy > p:not(.section-kicker):not(.pronunciation) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-details {
  margin-top: 44px;
  display: grid;
  gap: 12px;
}

.contact-detail {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-detail:hover,
.contact-detail:focus-visible {
  background: var(--white);
  border-color: rgba(38, 189, 160, 0.42);
  transform: translateY(-2px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 13px;
  flex: 0 0 auto;
}

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

.contact-detail small,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-detail strong {
  margin-top: 2px;
  font-size: 0.9rem;
}

.contact-detail strong {
  overflow-wrap: anywhere;
}

.contact-detail-static {
  cursor: default;
}

.contact-detail-static:hover {
  background: transparent;
  border-color: var(--line);
  transform: none;
}

.pronunciation {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.pronunciation strong {
  color: var(--ink);
}

.contact-form {
  padding: clamp(28px, 4.4vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.form-heading span {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.form-heading small {
  max-width: 285px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: right;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.full-field {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fafbf9;
  border: 1px solid rgba(7, 20, 33, 0.14);
  border-radius: 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input {
  height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 135px;
  padding: 13px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9aa4a9;
}

input:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--mint-deep);
  box-shadow: 0 0 0 4px rgba(38, 189, 160, 0.11);
}

.contact-form .button {
  margin-top: 26px;
}

.form-status {
  min-height: 1.5em;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #050e17;
  padding: 72px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-light);
}

.brand-footer .brand-mark {
  color: var(--mint);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 19px;
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.67);
}

.footer-top nav a:hover,
.footer-top nav a:focus-visible {
  color: var(--white);
}

.footer-legal {
  padding-top: 28px;
}

.footer-legal > p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  line-height: 1.6;
}

.footer-legal > div {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--mint);
}

/* Reveal animation */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal-delay-1 {
  transition-delay: 120ms;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.6vw, 6.4rem);
  }

  .card-global {
    right: -20px;
  }

  .card-path {
    left: -25px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card:nth-child(2) {
    border-right: 0;
  }

  .value-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-card:nth-child(3) {
    border-right: 0;
  }

  .location-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line-light);
  }

  .location-card:nth-child(4),
  .location-card:nth-child(5) {
    min-height: 250px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 138px;
    padding-bottom: 115px;
    grid-template-columns: 1fr;
    gap: 82px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .hero-lead {
    max-width: 690px;
  }

  .hero-visual {
    width: min(88%, 570px);
    justify-self: center;
  }

  .hero-bottom {
    display: none;
  }

  .heading-split,
  .about-layout,
  .reach-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 24px;
  }

  .heading-split > p {
    max-width: 650px;
  }

  .about-copy,
  .contact-copy {
    position: static;
  }

  .about-copy {
    max-width: 720px;
  }

  .about-image {
    max-width: 760px;
    margin-left: auto;
  }

  .journey-band {
    grid-template-columns: 1fr;
  }

  .journey-photo {
    min-height: 430px;
  }

  .journey-content {
    min-height: 550px;
  }

  .reach-layout {
    gap: 64px;
  }

  .reach-copy {
    max-width: 760px;
  }

  .globe-visual {
    width: min(100%, 630px);
    margin-inline: auto;
  }

  .contact-layout {
    gap: 56px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .reach-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-inner {
    padding-top: 122px;
    padding-bottom: 98px;
    gap: 68px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.5rem);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 12px 18px;
  }

  .hero-visual {
    width: calc(100% - 16px);
  }

  .hero-image-shell {
    border-radius: 28px;
  }

  .hero-image-shell::before {
    inset: 10px;
    border-radius: 21px;
  }

  .card-path {
    left: -9px;
    bottom: 31px;
  }

  .card-global {
    top: 28px;
    right: -7px;
  }

  .floating-card {
    padding: 10px 11px;
  }

  .floating-card strong {
    font-size: 0.7rem;
  }

  .floating-card small {
    font-size: 0.6rem;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
  }

  .route-line {
    width: 130px;
    top: -42px;
    left: -28px;
  }

  .image-caption {
    width: calc(100% - 24px);
    margin: -32px auto 0;
  }

  .values-grid,
  .services-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:nth-child(2),
  .location-card,
  .location-card:nth-child(3) {
    border-right: 0;
  }

  .value-card,
  .value-card:nth-child(-n + 2),
  .location-card,
  .location-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child,
  .location-card:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 285px;
  }

  .journey-band {
    border-radius: 27px;
  }

  .journey-photo {
    min-height: 310px;
  }

  .journey-content {
    min-height: auto;
    padding: 42px 25px 48px;
  }

  .journey-content h3 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .journey-step {
    grid-template-columns: 36px 1fr;
    gap: 13px;
  }

  .globe-label {
    font-size: 0.58rem;
  }

  .locations-grid {
    border-bottom: 1px solid var(--line-light);
  }

  .location-card {
    min-height: 230px;
    border-bottom-color: var(--line-light) !important;
  }

  .location-card h3 {
    margin-top: 44px;
  }

  .form-heading {
    display: grid;
    gap: 9px;
  }

  .form-heading small {
    max-width: none;
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .contact-form .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-top nav {
    grid-column: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal > div {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .floating-card small {
    display: none;
  }

  .card-global {
    top: 19px;
  }
}

@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;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
