:root {
  --navy: #062b36;
  --navy-dark: #031e27;
  --teal: #0aa8a0;
  --teal-light: #7ce0d4;
  --orange: #ff9d42;
  --cream: #f4f2eb;
  --white: #ffffff;
  --ink: #132f36;
  --muted: #6c7d80;
  --line: rgba(12, 47, 55, 0.14);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 92px;
  padding: 0 5vw;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 11px;
  width: max-content;
}

.brand-logo {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 13px rgba(66, 205, 222, 0.12));
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name small {
  margin-top: 7px;
  color: var(--teal-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.27em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  margin-left: 4px;
  padding-left: 20px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-switch button {
  padding: 6px 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.language-switch button:hover,
.language-switch button.active {
  color: var(--teal-light);
}

.lang-zh h1,
.lang-zh h2,
.lang-zh h3,
.lang-zh .brand-name {
  letter-spacing: 0;
}

.lang-zh h1 em,
.lang-zh h2 em {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-style: normal;
}

.site-nav a {
  position: relative;
  padding: 35px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-nav a::after {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  transition: width 180ms ease;
  background: var(--orange);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

.header-cta span,
.button span,
.arrow-link span {
  margin-left: 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 810px;
  padding: 165px 7vw 125px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 42%, rgba(16, 164, 157, 0.28), transparent 35%),
    linear-gradient(125deg, #052f3b 0%, #062a34 55%, #031d26 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, transparent, black 60%, transparent);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(123, 224, 212, 0.17);
  border-radius: 50%;
}

.orbit-one {
  right: -9vw;
  bottom: -40vw;
  width: 72vw;
  height: 72vw;
}

.orbit-two {
  right: 2vw;
  bottom: -29vw;
  width: 53vw;
  height: 53vw;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 54%;
  max-width: 780px;
}

.eyebrow {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  gap: 12px;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(52px, 6.4vw, 98px);
  font-weight: 700;
}

h1 em,
h2 em {
  color: var(--teal-light);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 530px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  border: 0;
  border-radius: 3px;
}

.button-primary {
  color: var(--navy-dark);
  background: var(--orange);
}

.button-primary:hover,
.button-accent:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.text-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  margin-left: 10px;
  color: var(--teal-light);
}

.hero-visual {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 110px;
  width: 51%;
  height: 510px;
  pointer-events: none;
}

.hero-photo {
  right: 3.5vw;
  bottom: 132px;
  width: 47%;
  height: 475px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 30, 39, 0.34), transparent 45%),
    linear-gradient(0deg, rgba(3, 30, 39, 0.55), transparent 40%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sun {
  position: absolute;
  top: 48px;
  right: 15%;
  width: 160px;
  height: 160px;
  opacity: 0.8;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffca83, var(--orange) 55%, transparent 57%);
  box-shadow: 0 0 70px rgba(255, 157, 66, 0.3);
}

.ship {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 85px;
  width: 89%;
  height: 200px;
  filter: drop-shadow(0 25px 20px rgba(0, 0, 0, 0.35));
}

.ship-hull {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 94%;
  height: 82px;
  padding: 22px 13%;
  color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(175deg, #214551 0 53%, #09222d 54%);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 9% 100%);
}

.ship-hull strong {
  font-size: 13px;
  letter-spacing: 0.32em;
}

.containers {
  position: absolute;
  z-index: 2;
  right: 12%;
  bottom: 76px;
  display: grid;
  width: 65%;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.containers i {
  height: 34px;
  background: repeating-linear-gradient(90deg, #0b8d8c 0 4px, #0a7478 4px 6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.containers i:nth-child(2n) {
  background: repeating-linear-gradient(90deg, #bd6537 0 4px, #974c2d 4px 6px);
}

.containers i:nth-child(3),
.containers i:nth-child(6) {
  background: repeating-linear-gradient(90deg, #526a73 0 4px, #3f555e 4px 6px);
}

.ship-bridge {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 76px;
  width: 75px;
  height: 90px;
  padding: 17px 11px;
  background: #d8dfdc;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.ship-bridge span {
  display: inline-block;
  width: 12px;
  height: 7px;
  margin: 0 1px;
  background: #224552;
}

.sea {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 120%;
  border-radius: 50% 50% 0 0;
}

.sea-back {
  z-index: 2;
  height: 118px;
  opacity: 0.7;
  background: linear-gradient(180deg, #128f91, #075365);
  clip-path: polygon(0 30%, 10% 15%, 20% 31%, 31% 12%, 41% 28%, 53% 10%, 63% 29%, 76% 12%, 88% 28%, 100% 8%, 100% 100%, 0 100%);
}

.sea-front {
  z-index: 4;
  height: 75px;
  opacity: 0.84;
  background: #063b4b;
  clip-path: polygon(0 31%, 11% 9%, 22% 31%, 35% 11%, 46% 32%, 59% 8%, 71% 28%, 83% 12%, 93% 27%, 100% 16%, 100% 100%, 0 100%);
}

.hero-footer {
  position: absolute;
  z-index: 5;
  right: 7vw;
  bottom: 0;
  left: 7vw;
  display: grid;
  height: 105px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-footer div {
  display: flex;
  padding-left: 28px;
  flex-direction: column;
  border-left: 2px solid var(--teal);
}

.hero-footer strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.hero-footer span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.section {
  padding: 120px 7vw;
}

.section-label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label.light {
  color: var(--teal-light);
}

.intro {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 1.1fr;
  gap: 6vw;
}

.intro h2,
.network h2,
.quote h2,
.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(42px, 4.6vw, 72px);
}

.intro h2 em,
.network h2 em {
  color: var(--teal);
}

.intro-copy p,
.network-copy p {
  max-width: 650px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.arrow-link {
  display: inline-flex;
  padding-bottom: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--teal);
}

.intro-stats {
  display: grid;
  border-top: 1px solid var(--line);
}

.intro-stats article {
  display: flex;
  padding: 23px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.intro-stats strong {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 33px;
}

.intro-stats span {
  max-width: 120px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.services {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  display: grid;
  margin-bottom: 70px;
  align-items: end;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 10vw;
}

.section-heading p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 35px 30px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

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

.service-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.service-icon {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 46px 0 34px;
  border: 1px solid rgba(124, 224, 212, 0.55);
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.icon-ocean::before {
  top: 31px;
  left: 15px;
  width: 38px;
  height: 13px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 16% 100%);
}

.icon-ocean::after {
  top: 23px;
  left: 23px;
  width: 23px;
  height: 7px;
  border: 2px solid var(--teal-light);
}

.icon-project::before {
  top: 17px;
  left: 21px;
  width: 25px;
  height: 33px;
  border: 2px solid var(--teal-light);
}

.icon-project::after {
  top: 27px;
  left: 13px;
  width: 41px;
  height: 2px;
  transform: rotate(-34deg);
  background: var(--orange);
}

.icon-logistics::before {
  top: 20px;
  left: 14px;
  width: 40px;
  height: 26px;
  border: 2px solid var(--teal-light);
  border-radius: 2px;
}

.icon-logistics::after {
  top: 30px;
  left: 18px;
  width: 30px;
  height: 2px;
  box-shadow: 0 -7px 0 var(--orange), 0 7px 0 var(--orange);
  background: var(--orange);
}

.icon-charter::before {
  top: 14px;
  left: 32px;
  width: 2px;
  height: 40px;
  transform: rotate(31deg);
  background: var(--teal-light);
}

.icon-charter::after {
  top: 28px;
  left: 16px;
  width: 36px;
  height: 12px;
  transform: rotate(-16deg);
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.service-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.service-card > a {
  position: absolute;
  right: 27px;
  bottom: 27px;
  color: var(--teal-light);
  font-size: 20px;
}

.network {
  display: grid;
  min-height: 710px;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
}

.network-visual {
  position: relative;
  height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 35%, rgba(124, 224, 212, 0.25), transparent 18%),
    linear-gradient(145deg, #0c4654, #052b36);
  border-radius: 4px;
}

.network-visual::before,
.network-visual::after {
  position: absolute;
  content: "";
  opacity: 0.2;
  border: 1px solid var(--teal-light);
  border-radius: 45% 55% 63% 37%;
}

.network-visual::before {
  top: 75px;
  left: 80px;
  width: 220px;
  height: 160px;
  transform: rotate(18deg);
}

.network-visual::after {
  right: 45px;
  bottom: 70px;
  width: 260px;
  height: 175px;
  transform: rotate(-12deg);
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 157, 66, 0.18);
}

.dot-one { top: 31%; left: 23%; }
.dot-two { top: 53%; left: 47%; }
.dot-three { top: 29%; right: 20%; }
.dot-four { right: 14%; bottom: 20%; }

.route {
  position: absolute;
  height: 120px;
  border-top: 1px dashed rgba(124, 224, 212, 0.7);
  border-radius: 50%;
}

.route-one {
  top: 34%;
  left: 24%;
  width: 53%;
  transform: rotate(-5deg);
}

.route-two {
  top: 49%;
  left: 47%;
  width: 40%;
  transform: rotate(19deg);
}

.location-card {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 25px;
  display: flex;
  width: 220px;
  padding: 18px 20px;
  flex-direction: column;
  color: var(--white);
  background: rgba(3, 30, 39, 0.82);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--orange);
}

.location-card span,
.location-card small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.location-card strong {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 20px;
}

.network-copy ul {
  display: grid;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.network-copy li {
  font-size: 14px;
  font-weight: 600;
}

.network-copy li span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-right: 11px;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 50%;
  font-size: 11px;
}

.quote {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 71, 82, 0.6), transparent 45%),
    var(--navy-dark);
}

.quote-copy p {
  max-width: 450px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.contact-directory {
  display: grid;
  max-width: 460px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-directory a {
  display: grid;
  padding: 12px 0;
  align-items: center;
  grid-template-columns: 125px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-directory span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-directory strong {
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 600;
}

.contact-directory a:hover strong {
  color: var(--orange);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quote-form label:nth-child(4) {
  grid-column: 1 / -1;
}

.quote-form label > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 15px 0;
  color: var(--white);
  outline: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
}

.quote-form option {
  color: var(--ink);
}

.quote-form textarea {
  min-height: 75px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal-light);
}

.button-accent {
  width: max-content;
  margin-top: 10px;
  color: var(--navy-dark);
  background: var(--orange);
}

.form-message {
  margin: 26px 0 0;
  color: var(--teal-light);
  font-size: 13px;
}

.site-footer {
  padding: 75px 7vw 28px;
  color: rgba(255, 255, 255, 0.7);
  background: #02171e;
}

.footer-top {
  display: grid;
  padding-bottom: 65px;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.brand-footer .brand-logo {
  width: 90px;
  height: 90px;
  opacity: 0.9;
}

.brand-footer .brand-name strong {
  font-size: 23px;
}

.brand-footer .brand-name small {
  font-size: 9px;
}

.footer-top > p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.45;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact span {
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--teal-light);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  display: grid;
  padding-top: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-bottom > span:nth-child(2) {
  text-align: center;
}

.footer-bottom div {
  display: flex;
  justify-content: flex-end;
  gap: 23px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 660px;
  padding: 170px 7vw 95px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 30, 39, 0.94) 0%, rgba(3, 30, 39, 0.68) 47%, rgba(3, 30, 39, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 30, 39, 0.42), transparent 45%),
    var(--page-image) center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
}

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

.page-hero h1 {
  font-size: clamp(52px, 6vw, 92px);
}

.page-hero-content > p:last-child {
  max-width: 580px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.content-section {
  padding: 120px 7vw;
}

.split-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.82fr;
  gap: 9vw;
}

.content-section h2,
.route-intro h2 {
  margin: 18px 0 30px;
  font-size: clamp(42px, 4.5vw, 70px);
}

.content-section h2 em,
.route-intro h2 em {
  color: var(--teal);
}

.content-section p {
  color: var(--muted);
  line-height: 1.8;
}

.content-section .large-copy {
  color: var(--ink);
  font-size: 20px;
}

.photo-panel {
  position: relative;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 25px 55px rgba(3, 30, 39, 0.18);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 19px;
  color: var(--white);
  background: rgba(3, 30, 39, 0.8);
  border-left: 3px solid var(--orange);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.values-band {
  display: grid;
  padding: 0 7vw 120px;
  grid-template-columns: repeat(3, 1fr);
}

.values-band article {
  padding: 45px 38px;
  border: 1px solid var(--line);
  border-right: 0;
}

.values-band article:last-child {
  border-right: 1px solid var(--line);
}

.values-band span,
.detail-number {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.values-band h3 {
  margin: 50px 0 15px;
  font-family: var(--font-display);
  font-size: 23px;
}

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

.service-details {
  padding: 95px 7vw 120px;
}

.service-details article {
  display: grid;
  min-height: 330px;
  padding: 42px 0;
  align-items: center;
  grid-template-columns: 80px 1fr 0.9fr;
  gap: 5vw;
  border-bottom: 1px solid var(--line);
}

.service-details article:first-child {
  border-top: 1px solid var(--line);
}

.service-details h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.4vw, 54px);
}

.service-details p {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.75;
}

.service-details ul {
  display: flex;
  padding: 0;
  gap: 20px;
  list-style: none;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.service-details li::before {
  margin-right: 6px;
  content: "✓";
}

.service-details img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 3px;
}

.cta-strip {
  display: flex;
  padding: 75px 7vw;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy);
}

.cta-strip span {
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-strip h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 55px);
}

.network-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.route-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.route-grid article {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.route-grid article:nth-child(2n),
.route-grid article:last-child {
  border-right: 1px solid var(--line);
}

.route-grid article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.route-grid span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-grid strong {
  display: block;
  margin: 38px 0 13px;
  font-family: var(--font-display);
  font-size: 19px;
}

.route-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.full-photo-band {
  position: relative;
  height: 540px;
  overflow: hidden;
  color: var(--white);
}

.full-photo-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 30, 39, 0.9), rgba(3, 30, 39, 0.25));
}

.full-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-photo-band div {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 7vw;
  transform: translateY(-50%);
}

.full-photo-band span {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.full-photo-band h2 {
  margin: 14px 0 24px;
  font-size: clamp(42px, 5vw, 72px);
}

.full-photo-band a {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--orange);
  font-weight: 700;
}

.contact-page {
  display: grid;
  padding: 110px 7vw 125px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}

.department-list {
  display: grid;
  align-content: start;
}

.department-list .section-label {
  margin-bottom: 28px;
}

.department-list a {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 125px 1fr;
  border-bottom: 1px solid var(--line);
}

.department-list a:first-of-type {
  border-top: 1px solid var(--line);
}

.department-list span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.department-list strong {
  color: var(--teal);
  font-size: 15px;
}

.light-form label > span {
  color: var(--muted);
}

.light-form input,
.light-form select,
.light-form textarea {
  color: var(--ink);
  border-bottom-color: var(--line);
}

.light-form .form-message {
  color: var(--teal);
}

.compact-footer {
  padding-top: 60px;
}

.credits-body {
  background: var(--cream);
}

.credits-page {
  max-width: 850px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 80px 28px;
}

.credits-page > a {
  color: var(--teal);
  font-weight: 700;
}

.credits-page h1 {
  margin: 45px 0 18px;
  color: var(--ink);
  font-size: 52px;
}

.credits-page li {
  margin: 16px 0;
  line-height: 1.6;
}

.credits-page li a {
  color: var(--teal);
  text-decoration: underline;
}

.sp-intro {
  display: grid;
  padding: 110px 7vw;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: 9vw;
}

.sp-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 4.5vw, 70px);
}

.sp-intro h2 em {
  color: var(--teal);
}

.sp-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.vessel-market {
  padding: 90px 7vw 110px;
  background: #e9ece7;
}

.market-toolbar {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
}

.market-toolbar div {
  display: flex;
  flex-direction: column;
}

.market-toolbar span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-toolbar strong {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 30px;
}

.market-toolbar > a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.vessel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vessel-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 17px 40px rgba(3, 30, 39, 0.1);
}

.vessel-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.vessel-card-body {
  padding: 28px;
}

.vessel-card-body > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vessel-card h3 {
  margin: 13px 0 25px;
  font-family: var(--font-display);
  font-size: 23px;
}

.vessel-card dl {
  display: grid;
  margin: 0 0 27px;
  grid-template-columns: repeat(3, 1fr);
}

.vessel-card dl div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vessel-card dt {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vessel-card dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.vessel-card-body > a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.market-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.sp-process {
  padding: 105px 7vw 120px;
  color: var(--white);
  background: var(--navy);
}

.process-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  min-height: 250px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
}

.process-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-grid span {
  color: var(--teal-light);
  font-size: 10px;
}

.process-grid h3 {
  margin: 70px 0 15px;
  font-family: var(--font-display);
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

.account-body {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 70%, rgba(10, 168, 160, 0.2), transparent 30%),
    var(--navy-dark);
}

.account-header {
  position: relative;
}

.account-back {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.account-header-actions {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 25px;
}

.account-language {
  margin: 0;
}

.account-shell {
  display: grid;
  min-height: calc(100vh - 92px);
  padding: 70px 8vw 90px;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
}

.account-intro h1 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.account-intro > p:last-of-type {
  max-width: 520px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.account-intro ul {
  display: grid;
  padding: 0;
  gap: 13px;
  list-style: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.account-intro li::before {
  margin-right: 10px;
  color: var(--teal-light);
  content: "✓";
}

.account-panel {
  padding: 42px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.demo-notice {
  display: flex;
  margin-bottom: 28px;
  padding: 14px 16px;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 157, 66, 0.14);
  border-left: 3px solid var(--orange);
}

.demo-notice strong {
  font-size: 12px;
}

.demo-notice span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.account-tabs {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.account-tabs button {
  padding: 13px;
  cursor: pointer;
  color: var(--muted);
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-weight: 700;
}

.account-tabs button.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.account-form {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.account-form.active {
  display: grid;
}

.account-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-form label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-form input,
.account-form select {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  outline: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.account-form .checkbox-label {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  flex-direction: row;
}

.checkbox-label input {
  width: auto;
}

.checkbox-label span {
  letter-spacing: 0;
  text-transform: none;
}

.account-form .button {
  grid-column: 1 / -1;
}

.account-message {
  min-height: 20px;
  margin: 20px 0 0;
  color: var(--teal);
  font-size: 12px;
}

.account-profile > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-profile h2 {
  margin: 12px 0 6px;
  font-size: 34px;
}

.account-profile p {
  margin: 5px 0;
  color: var(--muted);
}

.profile-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 22px;
}

.profile-actions > button {
  cursor: pointer;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-weight: 700;
}

.charter-intro {
  display: grid;
  padding: 110px 7vw;
  align-items: end;
  grid-template-columns: 1fr 0.78fr;
  gap: 9vw;
}

.charter-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 4.5vw, 70px);
}

.charter-intro h2 em {
  color: var(--teal);
}

.charter-intro > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.charter-types {
  display: grid;
  padding: 0 7vw 120px;
  grid-template-columns: repeat(2, 1fr);
}

.charter-types article {
  min-height: 350px;
  padding: 42px;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.charter-types article:nth-child(2n) {
  border-right: 1px solid var(--line);
}

.charter-types article:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.charter-types article > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.charter-types h3 {
  margin: 45px 0 16px;
  font-family: var(--font-display);
  font-size: 27px;
}

.charter-types p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}

.charter-types ul {
  display: flex;
  padding: 15px 0 0;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}

.charter-types li::before {
  margin-right: 6px;
  content: "✓";
}

.charter-photo-section {
  display: grid;
  min-height: 580px;
  color: var(--white);
  background: var(--navy-dark);
  grid-template-columns: 1.15fr 0.85fr;
}

.charter-photo-section > img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.charter-photo-section > div {
  display: flex;
  padding: 75px 6vw;
  flex-direction: column;
  justify-content: center;
}

.charter-photo-section h2 {
  margin: 20px 0 25px;
  font-size: clamp(38px, 4vw, 60px);
}

.charter-photo-section p {
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
}

.charter-photo-section a {
  width: max-content;
  margin-top: 25px;
  padding-bottom: 7px;
  color: var(--teal-light);
  border-bottom: 1px solid var(--orange);
  font-weight: 700;
}

.charter-workflow {
  padding: 110px 7vw 120px;
}

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

.light-process article,
.light-process article:last-child {
  border-color: var(--line);
}

.light-process h3 {
  color: var(--ink);
}

.light-process p {
  color: var(--muted);
}

.light-process span {
  color: var(--teal);
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 10px;
  }

  .hero-content {
    width: 66%;
  }

  .hero-visual {
    width: 57%;
    opacity: 0.75;
  }

  .hero-photo {
    right: -4%;
    width: 56%;
  }

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

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

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-details article {
    grid-template-columns: 55px 1fr 0.75fr;
    gap: 3vw;
  }

  .brand-name {
    display: none;
  }

  .account-shell {
    gap: 5vw;
  }

  .site-nav a {
    font-size: 11px;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: absolute;
    display: flex;
    height: 78px;
    padding: 0 22px;
    justify-content: space-between;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name strong {
    font-size: 15px;
  }

  .brand-name small {
    margin-top: 5px;
    font-size: 6px;
    letter-spacing: 0.2em;
  }

  .menu-toggle {
    z-index: 3;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px 9px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    transition: transform 180ms ease;
    background: var(--white);
  }

  .menu-toggle.open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 110px 35px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    transform: translateX(100%);
    transition: transform 220ms ease;
    background: var(--navy-dark);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-display);
    font-size: 28px;
  }

  .language-switch {
    width: 100%;
    margin: 18px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .language-switch button {
    font-size: 15px;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 790px;
    padding: 130px 24px 170px;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
  }

  .hero-intro {
    max-width: 90%;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    right: -20%;
    bottom: 100px;
    width: 100%;
    height: 300px;
    opacity: 0.42;
  }

  .hero-photo {
    right: -28%;
    bottom: 104px;
    width: 115%;
    height: 330px;
    opacity: 0.38;
  }

  .sun {
    top: 0;
    width: 110px;
    height: 110px;
  }

  .ship {
    bottom: 25px;
  }

  .hero-footer {
    right: 24px;
    left: 24px;
    height: 95px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-footer div {
    padding-left: 13px;
  }

  .hero-footer div:nth-child(3) {
    display: none;
  }

  .section {
    padding: 85px 24px;
  }

  .intro,
  .section-heading,
  .network,
  .quote {
    grid-template-columns: 1fr;
  }

  .intro,
  .network,
  .quote {
    gap: 55px;
  }

  .intro-stats {
    margin-top: 10px;
  }

  .section-heading {
    gap: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child {
    min-height: 340px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .network-visual {
    height: 390px;
  }

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

  .quote-form label:nth-child(4) {
    grid-column: auto;
  }

  .contact-directory a {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom > span:nth-child(2) {
    text-align: left;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }

  .page-hero {
    min-height: 620px;
    padding: 145px 24px 70px;
    background:
      linear-gradient(90deg, rgba(3, 30, 39, 0.9), rgba(3, 30, 39, 0.46)),
      var(--page-image) center / cover no-repeat;
  }

  .page-hero-content > p:last-child {
    font-size: 16px;
  }

  .content-section,
  .service-details,
  .contact-page {
    padding: 80px 24px;
  }

  .split-grid,
  .network-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    height: 400px;
  }

  .values-band {
    padding: 0 24px 80px;
    grid-template-columns: 1fr;
  }

  .values-band article,
  .values-band article:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .values-band article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .service-details article {
    padding: 40px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-details ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .service-details img {
    height: 230px;
  }

  .cta-strip {
    padding: 60px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

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

  .route-grid article,
  .route-grid article:nth-child(2n),
  .route-grid article:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .route-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .full-photo-band {
    height: 470px;
  }

  .department-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sp-intro,
  .charter-intro,
  .account-shell {
    padding: 80px 24px;
    grid-template-columns: 1fr;
  }

  .vessel-market,
  .sp-process,
  .charter-workflow {
    padding: 75px 24px;
  }

  .market-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .vessel-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:last-child {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .process-grid article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process-grid h3 {
    margin-top: 35px;
  }

  .charter-types {
    padding: 0 24px 80px;
    grid-template-columns: 1fr;
  }

  .charter-types article,
  .charter-types article:nth-child(2n) {
    min-height: auto;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .charter-types article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .charter-photo-section {
    grid-template-columns: 1fr;
  }

  .charter-photo-section > img {
    min-height: 350px;
    height: 350px;
  }

  .charter-photo-section > div {
    padding: 65px 24px;
  }

  .account-header .brand-name {
    display: flex;
  }

  .account-shell {
    gap: 55px;
  }

  .account-panel {
    padding: 28px 22px;
  }

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

  .account-form .checkbox-label,
  .account-form .button {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
