:root {
  --navy: #06102c;
  --navy-soft: #0a1738;
  --paper: #f4f5f7;
  --ink: #07102c;
  --muted: #667185;
  --dark-copy: #b8c1cf;
  --dark-muted: #98a4b7;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(7, 16, 44, 0.15);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --hp: "Space Grotesk", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}

.light {
  color: var(--ink);
  background: var(--paper);
}

.dark {
  color: #fff;
  background: var(--navy);
}

.skip-link {
  position: fixed;
  z-index: 12000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: none;
}

.noscript-note {
  position: relative;
  z-index: 11000;
  padding: 12px 20px;
  color: #382f12;
  background: #fff3cd;
  font: 500 13px/1.5 var(--sans);
  text-align: center;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.light :focus-visible {
  outline-color: var(--navy);
}

/* Loading and transitions: content remains readable without JavaScript. */
.loader {
  display: none;
}

.js .loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  background: var(--navy);
  animation: loader-failsafe 0.5s 1.5s forwards;
  transition: opacity 0.55s, visibility 0.55s;
}

.loader img {
  width: 165px;
}

.loader span,
.nav-transition span {
  color: #aab4c4;
  font-size: 8px;
  letter-spacing: 0.3em;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loader-failsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.nav-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: #fff;
  background: rgba(4, 10, 31, 0.97);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.32s var(--ease), opacity 0.2s;
}

.nav-transition.show {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
}

.nav-transition.leave {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.nav-transition-inner {
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.32s var(--ease);
}

.nav-transition.show .nav-transition-inner {
  transform: none;
}

.nav-transition img {
  width: 190px;
  margin: 0 auto 18px;
}

/* Header */
.topbar {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 82px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-inline: 42px;
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 10, 31, 0.92), transparent);
  transition: height 0.3s, background 0.3s, border-color 0.3s;
}

.topbar.scrolled {
  height: 68px;
  background: rgba(4, 10, 31, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  width: 104px;
}

.brand img {
  width: 100%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.nav a,
.contact-btn {
  color: #c0c8d4;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-contact-link {
  display: none;
}

.hp-nav {
  font-family: var(--hp);
  font-weight: 600;
  letter-spacing: 0.09em !important;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-btn span {
  margin-left: 10px;
}

.language-switcher {
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.language-switcher button {
  min-width: 32px;
  padding: 9px 7px;
  color: rgba(255, 255, 255, 0.67);
  background: rgba(7, 19, 44, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font: 600 9px/1 var(--sans);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.22s, background 0.22s, border-color 0.22s;
}

.language-switcher button:hover,
.language-switcher button.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.menu {
  display: none;
  width: 30px;
  padding: 6px 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu i {
  display: block;
  width: 28px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}

.menu i + i {
  margin-top: 6px;
}

.menu.open i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu.open i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: #020817;
}

.hero-video,
.hero-visual,
.hero-shade,
.hero-motion,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 1;
  background: #071421 url("assets/media/ship-side.jpeg") center / cover no-repeat;
}

.hero-visual {
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.05);
  transform: scale(1.015);
  background: transparent;
}

.video-fallback .hero-media {
  opacity: 0;
}

.hero-motion {
  background: linear-gradient(115deg, rgba(4, 12, 30, 0.28), rgba(4, 12, 30, 0.04) 48%, rgba(4, 12, 30, 0.42));
}

.hero-grain {
  inset: -20%;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 8, 26, 0.84), rgba(3, 8, 26, 0.2) 65%, rgba(3, 8, 26, 0.4)),
    linear-gradient(0deg, rgba(3, 8, 26, 0.72), transparent 52%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: clamp(150px, 18vh, 190px);
}

.kicker,
.eyebrow {
  margin: 0 0 24px;
  color: #98a5b8;
  font-size: 8px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.kicker b {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 9px;
  vertical-align: middle;
  background: #9aa5b8;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font: 500 clamp(62px, 7.2vw, 108px) / 0.9 var(--display);
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 em,
h2 em,
h3 em {
  font-family: var(--serif);
  font-weight: 500;
}

[data-i18n-lines] > span,
[data-i18n-lines] > em {
  display: block;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0;
  color: #d0d6df;
  font-size: 14px;
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 15px 18px;
  color: var(--ink);
  background: #fff;
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: transform 0.22s, background 0.22s;
}

.button:hover,
.contact-btn:hover {
  transform: translateY(-2px);
}

.button span {
  margin-left: 22px;
  font-size: 16px;
}

.text-link {
  color: #d6dbe3;
  font-size: 10px;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  color: #a8b2c1;
  font-size: 8px;
  letter-spacing: 0.19em;
  transform: translateX(-50%);
}

.video-control {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 4vw, 56px);
  bottom: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(4, 10, 31, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-control span {
  font: 500 11px/1 var(--sans);
}

.video-control:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Shared editorial structures */
.statement,
.about,
.contact {
  padding: 120px 0;
}

.statement-grid,
.capability-head,
.about-top,
.section-intro,
.detail-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(52px, 7vw, 90px);
}

.statement h2,
.capability-head h2,
.about-top h2,
.section-intro h2,
.detail-head h2,
.contact h2 {
  margin: 0;
  font: 500 clamp(44px, 5vw, 74px) / 0.97 var(--display);
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.statement-copy,
.about-corporate-copy,
.capability-head > p,
.section-intro > p,
.detail-head > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.statement-copy p,
.about-corporate-copy p {
  margin: 0 0 18px;
}

.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.inline-facts span {
  padding: 9px 11px;
  color: #6e798d;
  border: 1px solid var(--dark-line);
  font-size: 8px;
  letter-spacing: 0.15em;
}

/* Capabilities */
.capabilities {
  padding: 112px 0 120px;
  background: var(--paper);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--dark-line);
}

.capability {
  min-width: 0;
  min-height: 270px;
  padding: 24px 20px 20px 0;
  border-right: 1px solid var(--dark-line);
}

.capability + .capability {
  padding-left: 20px;
}

.capability:last-child {
  border-right: 0;
}

.capability > span,
.principles span,
.process-step span,
.hp-cards span {
  color: #7d889b;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.capability h3 {
  margin: 40px 0 13px;
  font: 500 28px var(--display);
  letter-spacing: -0.035em;
}

.capability p {
  min-height: 76px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.capability a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--dark-line);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capability a b {
  margin-left: 10px;
}

/* About */
.about-top {
  align-items: start;
}

.about-corporate-copy {
  padding-top: 36px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  margin-top: 72px;
}

.about-visual > div {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 0.8s var(--ease);
}

.about-visual > div:hover img {
  transform: scale(1.025);
}

.about-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 12px #000;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 68px;
}

.principles > div {
  padding: 22px 18px 0 0;
  border-top: 1px solid var(--dark-line);
}

.principles h3 {
  margin: 22px 0 9px;
  font: 500 22px var(--display);
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

/* Services */
.services {
  padding-bottom: 100px;
}

.section-intro {
  padding-top: 118px;
}

.section-intro > p,
.service-card > div:nth-child(2) > p:not(.service-label),
.service-points li,
.brokerage-mini-grid p {
  color: var(--dark-copy);
}

.service-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.service-index a {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 20px 16px 20px 0;
  color: #d0d6df;
  border-right: 1px solid var(--line);
}

.service-index a + a {
  padding-left: 16px;
}

.service-index a:last-child {
  border-right: 0;
}

.service-index span,
.service-index i {
  color: #9aa5b7;
  font-size: 8px;
  font-style: normal;
}

.service-index strong {
  font: 500 10px var(--display);
  letter-spacing: 0.035em;
}

.service-list {
  margin-top: 64px;
}

.service-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(320px, 42%);
  align-items: center;
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.service-card:last-child {
  border-bottom: 1px solid var(--line);
}

.service-card.reverse {
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr) 58px;
}

.service-card.reverse > figure {
  grid-column: 1;
  grid-row: 1;
}

.service-card.reverse > div:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.service-card.reverse > .service-no {
  grid-column: 3;
  grid-row: 1;
  text-align: right;
}

.service-no {
  align-self: start;
  padding-top: 7px;
  color: #98a3b6;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.service-label {
  margin: 0 0 18px;
  color: #a3aec0;
  font-size: 8px;
  letter-spacing: 0.23em;
}

.service-card h3 {
  margin: 0 0 18px;
  font: 500 clamp(38px, 4vw, 57px) / 0.98 var(--display);
  letter-spacing: -0.052em;
}

.service-card > div:nth-child(2) > p:not(.service-label) {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.75;
}

.service-points {
  display: grid;
  gap: 7px;
  margin: 20px 0 4px;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 16px;
  font-size: 10px;
  line-height: 1.55;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border: 1px solid #8793a7;
  border-radius: 50%;
}

.service-card > div:nth-child(2) > a {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 8px;
  color: #fff;
  border-bottom: 1px solid #68758b;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card > div:nth-child(2) > a span {
  margin-left: 14px;
}

.service-card figure,
.hp-feature figure {
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
}

.service-card figure {
  height: 360px;
}

.service-card figure img,
.hp-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.service-card:hover figure img,
.hp-feature:hover img {
  transform: scale(1.025);
  filter: saturate(0.82);
}

.brokerage-card .brokerage-lead {
  max-width: 620px !important;
  color: #d2d8e1 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.brokerage-card strong {
  color: #e5e9ef;
  font-weight: 500;
}

.brokerage-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 4px;
}

.brokerage-mini-grid > div {
  padding: 14px 10px 2px 0;
  border-top: 1px solid var(--line);
}

.brokerage-mini-grid span,
.brokerage-mini-grid strong {
  display: block;
}

.brokerage-mini-grid span {
  margin-bottom: 10px;
  color: #929eb1;
  font-size: 8px;
}

.brokerage-mini-grid strong {
  margin-bottom: 7px;
  color: #e4e8ee;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.brokerage-mini-grid p {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

/* Process */
.service-detail {
  padding: 112px 0 100px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--dark-line);
}

.process-step {
  min-height: 235px;
  padding: 23px 18px 22px 0;
  border-right: 1px solid var(--dark-line);
}

.process-step + .process-step {
  padding-left: 18px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step h3 {
  margin: 42px 0 10px;
  font: 500 24px var(--display);
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.service-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 60px;
  padding: 26px 0;
  border-block: 1px solid var(--dark-line);
}

.service-banner div {
  display: grid;
  gap: 8px;
}

.service-banner span {
  color: #7f899c;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.service-banner strong {
  font: 500 17px var(--display);
}

.service-banner a,
.hp-link {
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-banner b,
.hp-link b {
  margin-left: 11px;
}

/* High Performance */
.high-performance {
  padding-bottom: 105px;
}

.hp-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(48px, 7vw, 90px);
  padding: 118px 0 70px;
}

.hp-title {
  margin: 0;
  font: 500 clamp(60px, 8.5vw, 122px) / 0.8 var(--display);
  letter-spacing: -0.085em;
}

.hp-copy {
  max-width: 540px;
  color: var(--dark-copy);
  font-size: 13px;
  line-height: 1.8;
}

.hp-copy p {
  margin: 0 0 15px;
}

.hp-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: clamp(38px, 5vw, 60px);
  padding-bottom: 72px;
}

.hp-feature figure {
  height: 520px;
}

.hp-feature img {
  object-position: center 58%;
}

.hp-feature > div > span,
.hp-business-grid > div:first-child span {
  color: #9ca8ba;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.hp-feature h3 {
  margin: 18px 0;
  font: 500 38px/1 var(--display);
}

.hp-feature p,
.hp-business-grid p {
  color: var(--dark-copy);
  font-size: 12px;
  line-height: 1.8;
}

.hp-link {
  display: inline-block;
  margin-top: 18px;
  color: #eef1f5;
  border-color: rgba(255, 255, 255, 0.32);
}

.hp-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.hp-cards article {
  min-width: 0;
  min-height: 205px;
  padding: 25px 20px 22px 0;
  border-right: 1px solid var(--line);
}

.hp-cards article + article {
  padding-left: 20px;
}

.hp-cards article:last-child {
  border-right: 0;
}

.hp-cards h3 {
  margin: 22px 0 9px;
  font: 500 19px var(--display);
}

.hp-cards p {
  margin: 0;
  color: var(--dark-copy);
  font-size: 11px;
  line-height: 1.7;
}

.hp-business-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 90px);
  margin-top: 72px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.hp-business-grid > div:first-child span {
  display: block;
  margin-bottom: 16px;
}

.hp-business-grid h3 {
  max-width: 560px;
  margin: 0;
  font: 400 clamp(28px, 3.8vw, 52px) / 1.03 var(--display);
  letter-spacing: -0.04em;
}

.hp-business-grid p {
  max-width: 740px;
  margin: 0 0 15px;
}

/* Contact */
.contact {
  padding-bottom: 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(52px, 7vw, 90px);
}

.contact h2 {
  font-size: clamp(52px, 5.5vw, 82px);
}

.contact-wrap > div:first-child > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.contact-actions {
  margin-top: 28px;
}

.dark-button {
  color: #fff;
  background: var(--navy);
}

.dark-text {
  color: var(--muted);
}

.corporate-contact-card {
  border-top: 1px solid var(--dark-line);
}

.corporate-contact-card > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--dark-line);
  font-size: 11px;
}

.corporate-contact-card span {
  flex: 0 0 auto;
  color: #738094;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.corporate-contact-card strong,
.corporate-contact-card a {
  max-width: 72%;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  overflow-wrap: anywhere;
}

.contact-map {
  margin-top: 68px;
}

.contact-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--dark-line);
}

.contact-map-head span {
  display: block;
  margin-bottom: 9px;
  color: #738094;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.contact-map-head strong {
  font: 500 19px var(--display);
}

.contact-map-head a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--dark-line);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-frame {
  height: 420px;
  margin-top: 18px;
  overflow: hidden;
  background: #dfe3e8;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(1.03);
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(160px, 0.5fr));
  gap: clamp(38px, 7vw, 100px);
}

.site-footer-brand img {
  width: 138px;
  margin-bottom: 22px;
}

.site-footer-brand p {
  max-width: 470px;
  margin: 0;
  color: var(--dark-copy);
  font-size: 12px;
  line-height: 1.75;
}

.site-footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.site-footer-links > span {
  margin-bottom: 8px;
  color: #929eb1;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.site-footer-links a,
.site-footer-links p {
  margin: 0;
  color: #d1d7e0;
  font-size: 11px;
  line-height: 1.6;
}

.site-footer-links a:hover {
  color: #fff;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 20px;
  color: #98a4b7;
  border-top: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.site-footer-bottom a {
  color: #d0d6df;
}

/* Progressive enhancement */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Tablet */
@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 24px;
  }

  .nav {
    gap: 18px;
  }

  .contact-btn {
    padding: 10px 9px;
  }

  .language-switcher button {
    min-width: 29px;
    padding-inline: 5px;
    font-size: 8px;
  }

  .service-card {
    grid-template-columns: 48px minmax(0, 1fr) minmax(300px, 40%);
  }

  .service-card.reverse {
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr) 48px;
  }
}

/* Mobile navigation and stacked editorial layout */
@media (max-width: 900px) {
  .shell {
    width: calc(100% - 48px);
  }

  .topbar {
    height: 68px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-inline: 24px;
    background: rgba(4, 10, 31, 0.93);
  }

  .brand {
    grid-column: 1;
    width: 94px;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
  }

  .contact-btn {
    display: none;
  }

  .menu {
    grid-column: 3;
    display: block;
  }

  .nav {
    position: fixed;
    z-index: 9998;
    inset: 68px 0 auto;
    height: calc(100dvh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    padding: 40px 24px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(4, 10, 31, 0.985);
    transform: translateY(-10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    padding: 8px 18px;
    color: #fff;
    font-size: clamp(16px, 4vw, 20px);
  }

  .nav a::after {
    display: none;
  }

  .mobile-contact-link {
    display: block;
    margin-top: 12px;
    padding: 13px 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.42);
  }

  .statement-grid,
  .capability-head,
  .about-top,
  .section-intro,
  .detail-head,
  .contact-wrap,
  .hp-intro,
  .hp-feature,
  .hp-business-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-corporate-copy {
    padding-top: 0;
  }

  .capability-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability:nth-child(2n),
  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .capability:nth-child(n + 3),
  .process-step:nth-child(n + 3) {
    border-top: 1px solid var(--dark-line);
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-visual > div {
    height: 390px;
  }

  .about-visual > div:last-child {
    height: 300px;
  }

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

  .service-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-index a:nth-child(2n) {
    border-right: 0;
  }

  .service-index a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .service-card,
  .service-card.reverse {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
  }

  .service-card figure,
  .service-card.reverse > figure {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 340px;
  }

  .service-card.reverse > div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .service-card.reverse > .service-no {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .brokerage-mini-grid {
    grid-template-columns: 1fr;
  }

  .hp-feature figure {
    height: 420px;
  }

  .hp-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-cards article:nth-child(2n) {
    border-right: 0;
  }

  .hp-cards article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-map-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-frame {
    height: 360px;
  }

  .site-footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 32px;
  }
}

/* Small mobile */
@media (max-width: 620px) {
  .shell {
    width: calc(100% - 40px);
  }

  .topbar {
    padding-inline: 18px;
    gap: 8px;
  }

  .brand {
    width: 86px;
  }

  .language-switcher {
    gap: 2px;
  }

  .language-switcher button {
    min-width: 27px;
    padding: 7px 4px;
    font-size: 8px;
  }

  .menu,
  .menu i {
    width: 25px;
  }

  .hero {
    height: 100svh;
    min-height: 620px;
  }

  .hero-copy {
    padding-top: clamp(124px, 18vh, 150px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13.5vw, 54px);
    line-height: 0.93;
    letter-spacing: -0.055em;
    text-wrap: pretty;
  }

  .kicker {
    font-size: 7px;
    letter-spacing: 0.2em;
  }

  .kicker b {
    width: 18px;
    margin-inline: 6px;
  }

  .hero-lead {
    max-width: 95%;
    margin: 22px 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 17px;
  }

  .button {
    padding: 14px 16px;
  }

  .hero-bottom {
    bottom: 21px;
    justify-content: flex-start;
    padding-right: 50px;
  }

  .hero-bottom span:last-child {
    display: none;
  }

  .video-control {
    right: 18px;
    bottom: 14px;
  }

  .statement,
  .about,
  .contact {
    padding: 82px 0;
  }

  .capabilities,
  .service-detail {
    padding: 82px 0;
  }

  .statement h2,
  .capability-head h2,
  .about-top h2,
  .section-intro h2,
  .detail-head h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 50px);
    overflow-wrap: anywhere;
  }

  .statement-copy,
  .about-corporate-copy,
  .capability-head > p,
  .section-intro > p,
  .detail-head > p:last-child {
    font-size: 13px;
    line-height: 1.75;
  }

  .capability-grid,
  .process-grid,
  .service-index,
  .hp-cards {
    grid-template-columns: 1fr;
  }

  .capability,
  .capability + .capability,
  .process-step,
  .process-step + .process-step {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--dark-line);
  }

  .capability h3,
  .process-step h3 {
    margin-top: 24px;
  }

  .capability p {
    min-height: 0;
  }

  .about-visual {
    margin-top: 52px;
  }

  .about-visual > div,
  .about-visual > div:last-child {
    height: clamp(270px, 80vw, 340px);
  }

  .principles {
    margin-top: 52px;
  }

  .section-intro {
    padding-top: 82px;
  }

  .service-index {
    margin-top: 46px;
  }

  .service-index a,
  .service-index a + a {
    padding: 17px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .service-list {
    margin-top: 42px;
  }

  .service-card,
  .service-card.reverse {
    column-gap: 16px;
    padding: 30px 0;
  }

  .service-card h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .service-card figure,
  .service-card.reverse > figure {
    height: clamp(260px, 76vw, 320px);
  }

  .brokerage-mini-grid {
    margin-top: 22px;
  }

  .service-banner {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 45px;
  }

  .high-performance {
    padding-bottom: 82px;
  }

  .hp-intro {
    padding: 82px 0 52px;
  }

  .hp-title {
    font-size: clamp(38px, 12.4vw, 52px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .hp-title em {
    white-space: nowrap;
  }

  .hp-feature {
    padding-bottom: 52px;
  }

  .hp-feature figure {
    height: clamp(270px, 78vw, 330px);
  }

  .hp-feature h3 {
    font-size: 34px;
  }

  .hp-cards article,
  .hp-cards article + article {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .hp-business-grid {
    margin-top: 54px;
    padding-top: 30px;
  }

  .contact-wrap {
    align-items: start;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .corporate-contact-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .corporate-contact-card strong,
  .corporate-contact-card a {
    max-width: 100%;
    text-align: left;
  }

  .contact-map {
    margin-top: 52px;
  }

  .contact-map-head strong {
    font-size: 17px;
  }

  .map-frame {
    height: 300px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .shell {
    width: calc(100% - 32px);
  }

  .topbar {
    padding-inline: 14px;
    gap: 6px;
  }

  .brand {
    width: 76px;
  }

  .language-switcher button {
    min-width: 25px;
    padding-inline: 3px;
  }

  .hero-copy {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(40px, 13.2vw, 48px);
  }

  .hero-lead {
    font-size: 12px;
  }
}

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

  .hero-media,
  .video-control,
  .nav-transition {
    display: none;
  }

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