/* Winac Group — cinematic scroll landing
   #fff · #188acb · #231f20 · Bonyade Koodak FaNum
*/

@font-face {
  font-family: "Bonyade Koodak FaNum";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../fonts/bonyade-koodak/woff2/BonyadeKoodakFaNum-Regular.woff2") format("woff2"),
    url("../fonts/bonyade-koodak/woff/BonyadeKoodakFaNum-Regular.woff") format("woff");
}
@font-face {
  font-family: "Bonyade Koodak FaNum";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    url("../fonts/bonyade-koodak/woff2/BonyadeKoodakFaNum-Medium.woff2") format("woff2"),
    url("../fonts/bonyade-koodak/woff/BonyadeKoodakFaNum-Medium.woff") format("woff");
}
@font-face {
  font-family: "Bonyade Koodak FaNum";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("../fonts/bonyade-koodak/woff2/BonyadeKoodakFaNum-Bold.woff2") format("woff2"),
    url("../fonts/bonyade-koodak/woff/BonyadeKoodakFaNum-Bold.woff") format("woff");
}
@font-face {
  font-family: "Bonyade Koodak";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../fonts/bonyade-koodak/woff2/BonyadeKoodak-Regular.woff2") format("woff2"),
    url("../fonts/bonyade-koodak/woff/BonyadeKoodak-Regular.woff") format("woff");
}
@font-face {
  font-family: "Bonyade Koodak";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("../fonts/bonyade-koodak/woff2/BonyadeKoodak-Bold.woff2") format("woff2"),
    url("../fonts/bonyade-koodak/woff/BonyadeKoodak-Bold.woff") format("woff");
}

:root {
  --blue: #188acb;
  --blue-deep: #0d6fa8;
  --blue-glow: rgba(24, 138, 203, 0.45);
  --ink: #231f20;
  --ink-2: #2e292a;
  --muted: #6f686a;
  --line: rgba(35, 31, 32, 0.1);
  --paper: #f4f6f8;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --header-h: 72px;
  --shell: min(1240px, calc(100% - 40px));
  --display: clamp(2.2rem, 5.6vw, 4.5rem);
  --display-sm: clamp(1.85rem, 3.8vw, 3.1rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Bonyade Koodak FaNum", "Bonyade Koodak", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: -120px;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus { top: 12px; }

.lx-icon { display: inline-flex; width: 1.15em; height: 1.15em; flex-shrink: 0; }
.lx-icon svg { width: 100%; height: 100%; display: block; }
.lx-icon--inline { width: 1em; height: 1em; margin-inline-start: 0.4em; }
html[dir="ltr"] .lx-icon[data-icon="arrowLeft"] { transform: scaleX(-1); }

/* Typography system — no forced ch-breaks */
.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.eyebrow--light { color: #8fd0f0; }
.display {
  font-size: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.display--sm { font-size: var(--display-sm); }
.display--light { color: var(--white); }
.lede {
  margin: 0 0 1.5rem;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  max-width: 62rem;
}
.lede--light { color: rgba(255, 255, 255, 0.86); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.45s var(--ease), background 0.35s, box-shadow 0.45s var(--ease), border-color 0.35s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.22);
}
.btn--primary { background: var(--blue); }
.btn--primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 20px 50px var(--blue-glow);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: none;
}
.btn--sm { min-height: 42px; padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn--lg { min-height: 56px; padding: 0.95rem 1.7rem; }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  color: var(--blue);
  font-weight: 600;
  gap: 0.2rem;
  transition: gap 0.35s var(--ease), color 0.3s;
}
.text-link:hover { gap: 0.55rem; color: var(--blue-deep); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.site-header.is-scrolled,
body.nav-is-open .site-header {
  padding: 10px 0;
  background: rgba(35, 31, 32, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
body.nav-is-open .site-header { z-index: 240; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-inline: 2px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  max-width: min(340px, 46vw);
}
.brand__mark {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.brand__logo { height: 34px; width: auto; max-width: min(148px, 42vw); }
.brand__text {
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.68rem, 1.3vw, 0.9rem);
  line-height: 1.2;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.nav-desktop { display: none; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255, 255, 255, 0.78);
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0.8rem;
  bottom: 0.15rem;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left center; }
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
  padding: 0 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1;
  box-sizing: border-box;
  flex-shrink: 0;
  white-space: nowrap;
}
.lang-switch__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7ec8ef;
  flex-shrink: 0;
}
.lang-switch__icon .lx-icon { width: 14px; height: 14px; }
.lang-switch__sep { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.32); flex-shrink: 0; }
.lang-switch__link {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
  font-size: inherit;
  font-family: "Bonyade Koodak", "Bonyade Koodak FaNum", sans-serif;
  line-height: 1;
  padding: 0.15rem 0;
}
.lang-switch__link:hover { color: #fff; }
.lang-switch__link.is-active { color: #fff; }
.lang-switch__link.is-disabled { opacity: 0.4; pointer-events: none; }
.header-cta { display: none; }
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle .lx-icon { width: 20px; height: 20px; }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  flex-direction: column;
  background: rgba(18, 15, 16, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile:not([hidden]) { display: flex; }
.nav-mobile__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-mobile__brand img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-mobile__close {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-mobile__close .lx-icon { width: 18px; height: 18px; }
.nav-mobile__panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0 40px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile__panel > a:not(.btn) {
  color: #fff;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.25rem;
  font-weight: 600;
}
.nav-mobile__panel > .btn {
  margin-top: 20px;
  width: 100%;
}

.scroll-progress {
  position: fixed; inset: 0 0 auto; z-index: 230; height: 2px; pointer-events: none;
}
.scroll-progress > i {
  display: block; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--blue), #7ec8ef);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden; /* clip orbit so it cannot cause horizontal scroll */
  isolation: isolate;
}
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero.is-ready .hero__stage { opacity: 1; }
.hero__media, .hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero__media img {
  object-fit: cover;
  transform: scale(1.18);
  transition: transform 2.4s var(--ease);
  will-change: transform;
}
.hero.is-ready .hero__media img { transform: scale(1.05); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(24, 138, 203, 0.28), transparent 45%),
    linear-gradient(180deg, rgba(35, 31, 32, 0.35) 0%, rgba(35, 31, 32, 0.2) 40%, rgba(35, 31, 32, 0.92) 100%),
    linear-gradient(100deg, rgba(35, 31, 32, 0.72) 0%, transparent 55%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.07; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 56px) 0 80px;
  max-width: 920px;
  margin-inline: 0 auto 0 0;
  width: var(--shell);
  overflow: visible;
  padding-inline: 4px;
}
.hero__eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.hero__eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}
.hero__brand {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  overflow: visible;
}
.hero__brand--mark {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.15rem;
}
.hero__brand--lockup {
  display: block;
  max-width: min(520px, 100%);
}
.hero__lockup {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}
.hero__mark {
  width: clamp(64px, 12vw, 96px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.hero__brand-text {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.hero__brand-fa {
  font-size: clamp(1.55rem, 4.8vw, 2.85rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
  padding-block: 0.06em;
}
.hero__brand-en {
  font-family: "Bonyade Koodak", "Bonyade Koodak FaNum", sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #d7eef9;
  text-shadow: 0 1px 2px rgba(35, 31, 32, 0.55), 0 0 18px rgba(35, 31, 32, 0.35);
}
.hero__headline {
  margin: 0 0 1.15rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}
.hero__lead {
  margin: 0 0 1.85rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.85;
  max-width: 40rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.8rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}
.hero__meta li {
  display: inline-flex; align-items: center;
}
.hero__meta li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue);
  margin-inline: 14px;
}

[data-hero-line] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.09s + 0.25s);
}
.hero.is-ready [data-hero-line] {
  opacity: 1;
  transform: none;
}

.hero__orbit {
  position: absolute;
  inset-inline-end: 0;
  bottom: 12%;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s 0.8s;
}
.hero.is-ready .hero__orbit { opacity: 0.55; }
.hero__orbit span {
  position: absolute; inset: 0;
  border: 1px solid rgba(24, 138, 203, 0.35);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}
.hero__orbit span:nth-child(2) { inset: 12%; animation-duration: 26s; animation-direction: reverse; border-color: rgba(255, 255, 255, 0.12); }
.hero__orbit span:nth-child(3) { inset: 26%; animation-duration: 14s; border-color: rgba(24, 138, 203, 0.55); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

/* ========== SEA TRADE (بازرگانی / حمل دریایی) ========== */
.sea-trade {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: 0;
  background: #0a2436;
}
.sea-trade__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sea-trade__media {
  position: absolute;
  inset: 0;
}
.sea-trade__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.05);
}
.sea-trade__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 36, 54, 0.72) 0%, rgba(10, 36, 54, 0.55) 38%, rgba(10, 36, 54, 0.88) 78%, #0a2436 100%),
    linear-gradient(105deg, rgba(24, 138, 203, 0.28), transparent 55%);
}
.sea-trade__grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}
.sea-trade__waves {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  height: clamp(70px, 12vw, 120px);
  opacity: 0.55;
}
.sea-trade__wave { fill: rgba(24, 138, 203, 0.28); }
.sea-trade__wave--b {
  fill: rgba(10, 36, 54, 0.55);
  animation: sea-wave 10s var(--ease-soft) infinite alternate;
}
.sea-trade__wave--a {
  animation: sea-wave 14s var(--ease-soft) infinite alternate-reverse;
}
@keyframes sea-wave {
  from { transform: translateX(0); }
  to { transform: translateX(-3%); }
}
.sea-trade__routes {
  position: absolute;
  inset: 12% 4% auto;
  width: 92%;
  height: 38%;
  opacity: 0.55;
}
.sea-trade__lane {
  fill: none;
  stroke: rgba(126, 200, 239, 0.85);
  stroke-width: 0.45;
  stroke-dasharray: 2.2 1.8;
  stroke-linecap: round;
  animation: sea-lane 18s linear infinite;
}
.sea-trade__lane--soft {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 0.3;
  animation-duration: 26s;
  animation-direction: reverse;
}
@keyframes sea-lane {
  to { stroke-dashoffset: -64; }
}

.sea-trade__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding: 96px 0 88px;
}
.sea-trade__copy {
  max-width: 42rem;
}
.sea-trade__copy .display { margin-bottom: 0.9rem; }
.sea-trade__copy .lede { margin-bottom: 1rem; max-width: 38rem; }
.sea-trade__emphasis {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0.95rem 1.05rem;
  color: #e8f6ff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.55;
  border-inline-start: 3px solid var(--blue);
  background: rgba(24, 138, 203, 0.16);
  backdrop-filter: blur(6px);
}
.sea-trade__emphasis .lx-icon {
  margin-top: 0.2rem;
  color: #7ec8ef;
}

.sea-trade__pillars {
  display: grid;
  gap: 12px;
  counter-reset: sea-pillar;
}
.sea-pillar {
  counter-increment: sea-pillar;
  position: relative;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 28, 42, 0.55);
  backdrop-filter: blur(10px);
}
.sea-pillar--lead {
  border-color: rgba(24, 138, 203, 0.65);
  background:
    linear-gradient(135deg, rgba(24, 138, 203, 0.28), rgba(8, 28, 42, 0.4) 55%),
    rgba(8, 28, 42, 0.62);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}
.sea-pillar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.sea-pillar__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #7ec8ef;
  background: rgba(24, 138, 203, 0.2);
  border: 1px solid rgba(126, 200, 239, 0.35);
}
.sea-pillar__icon .lx-icon { width: 22px; height: 22px; }
.sea-pillar__code {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7ec8ef;
  border: 1px solid rgba(126, 200, 239, 0.4);
  padding: 0.25rem 0.55rem;
}
.sea-pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
.sea-pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sea-trade__corridor {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.25rem;
}
.sea-trade__corridor-label,
.sea-trade__cr-label {
  margin: 0;
  color: #7ec8ef;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sea-trade__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0;
}
.sea-trade__route li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.sea-trade__route li span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  color: #fff;
  font-weight: 700;
  background: rgba(24, 138, 203, 0.22);
  border: 1px solid rgba(126, 200, 239, 0.45);
}
.sea-trade__route li:not(:last-child)::after {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(to inline-end, rgba(126, 200, 239, 0.9), rgba(126, 200, 239, 0.15));
}

.sea-trade__cr { display: grid; gap: 0.85rem; }
.sea-trade__codes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sea-trade__codes li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.sea-trade__codes-code {
  color: #7ec8ef;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.sea-trade__codes-title {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.brand-tile--featured {
  border: 1px solid rgba(24, 138, 203, 0.4);
  box-shadow: 0 24px 60px rgba(24, 138, 203, 0.12);
}
.brand-tile__badge {
  display: inline-flex;
  align-self: start;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.35rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer__entity {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__entity div { display: grid; gap: 0.15rem; }
.site-footer__entity dt {
  font-size: 0.75rem;
  color: #7ec8ef;
  font-weight: 600;
}
.site-footer__entity dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hpanel--lead .hpanel__link {
  border-color: rgba(24, 138, 203, 0.45);
  background:
    linear-gradient(180deg, rgba(24, 138, 203, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
}
.hpanel__copy--solo {
  padding: 1.35rem 1.25rem 1.5rem;
  justify-content: flex-start;
  min-height: 220px;
}
.hpanel__index--static {
  position: static;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
}

/* ========== PROCESS ========== */
.manifesto {
  position: relative;
  height: auto;
  background: var(--white);
  --p: 1;
  overflow-x: clip;
  overflow-x: hidden;
}
.manifesto__pin {
  position: relative;
  top: auto;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 80px;
}
.manifesto__glow {
  position: absolute;
  width: min(42vw, 480px);
  height: min(42vw, 480px);
  inset-inline-end: 0;
  top: 8%;
  background: radial-gradient(circle, rgba(24, 138, 203, 0.14), transparent 70%);
  pointer-events: none;
  transform: none;
}
.manifesto__inner { position: relative; z-index: 1; }
.manifesto .display {
  transform-origin: right center;
  transform: scale(calc(1.08 - var(--p, 0) * 0.12));
  opacity: calc(1 - var(--p, 0) * 0.15);
  will-change: transform, opacity;
}
.manifesto__body {
  max-width: 46rem;
  opacity: calc(0.55 + var(--p, 0) * 0.45);
  transform: translate3d(0, calc((1 - var(--p, 0)) * 28px), 0);
  transition: none;
}
.manifesto__body p { color: var(--ink-2); font-size: 1.08rem; line-height: 1.9; }
.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
  opacity: calc(0.4 + var(--p, 0) * 0.6);
  transform: translate3d(0, calc((1 - var(--p, 0)) * 24px), 0);
}
.mstat {
  background: var(--paper);
  padding: 1.4rem 1.2rem;
  display: grid; gap: 0.3rem;
}
.mstat strong {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue);
  line-height: 1;
}
.mstat span { color: var(--muted); font-size: 0.92rem; }

/* ========== SECTORS ========== */
.hscroll {
  position: relative;
  height: auto;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 88px 0 80px;
}
.hscroll__pin {
  position: relative;
  top: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: visible;
  padding: 0;
}
.hscroll__head .lede { color: rgba(255, 255, 255, 0.72); max-width: 48rem; margin-bottom: 0; }
.hscroll__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0.75rem;
}
.hscroll__title-row .display { margin: 0; color: #fff; flex: 1; min-width: min(100%, 28rem); }
.hscroll__progress { display: none; }
.hscroll__viewport {
  width: var(--shell);
  margin-inline: auto;
  overflow: visible;
}
.hscroll__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  padding-inline: 0;
  transform: none;
  align-items: stretch;
}
.hpanel {
  width: auto;
  min-width: 0;
  display: flex;
}
.hpanel__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease), box-shadow 0.5s;
}
.hpanel__link:hover {
  border-color: rgba(24, 138, 203, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.hpanel__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 10;
}
.hpanel__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.hpanel__link:hover .hpanel__media img { transform: scale(1.06); }
.hpanel__index {
  position: absolute;
  inset-inline-start: 14px; top: 14px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  color: #fff;
  background: rgba(35, 31, 32, 0.55);
  padding: 6px 10px;
  backdrop-filter: blur(8px);
}
.hpanel__badge {
  position: absolute;
  inset-inline-end: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background: rgba(24, 138, 203, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hpanel__copy {
  padding: 1.25rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.hpanel__icon {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  margin-bottom: 0.55rem;
  color: var(--blue);
  background: rgba(24, 138, 203, 0.14);
}
.hpanel__icon .lx-icon { width: 20px; height: 20px; }
.hpanel h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}
.hpanel__tag {
  color: #7ec8ef;
  font-weight: 500;
  margin-bottom: 0.45rem !important;
  font-size: 0.92rem;
}
.hpanel__copy > p:not(.hpanel__tag) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.hpanel__cta {
  display: inline-flex; align-items: center;
  color: #fff; font-weight: 600; margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.92rem;
}

/* ========== PROCESS ========== */
.process {
  position: relative;
  height: 280vh;
  background: var(--paper);
}
.process__pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 20px) 0 40px;
}
.process__layout {
  display: grid;
  gap: 36px;
  align-items: start;
}
.process__sticky-copy { position: relative; }
.process__rail {
  width: 100%; height: 2px;
  background: rgba(35, 31, 32, 0.12);
  margin: 1.75rem 0;
  overflow: hidden;
}
.process__rail > i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--blue), #5eb8e8);
}
.process__quote {
  margin: 0;
  padding: 1.4rem 1.3rem;
  background: var(--ink);
  color: #fff;
  opacity: calc(0.55 + var(--p, 0) * 0.45);
  transform: translate3d(0, calc((1 - var(--p, 0)) * 16px), 0);
}
.process__quote p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
  text-wrap: balance;
}
.process__steps { display: grid; gap: 12px; }
.process__step {
  padding: 1.25rem 1.2rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0.35;
  transform: translateX(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.process__step.is-active {
  opacity: 1;
  transform: none;
  border-color: rgba(24, 138, 203, 0.45);
  background: #fff;
  box-shadow: 0 18px 50px rgba(35, 31, 32, 0.08);
}
.process__num {
  display: block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.process__step p { margin: 0; color: var(--muted); }

/* ========== CINEMA ========== */
.cinema {
  position: relative;
  height: 220vh;
  color: #fff;
}
.cinema__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
}
.cinema__media, .cinema__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.cinema__media img {
  object-fit: cover;
  transform: scale(calc(1.2 - var(--p, 0) * 0.2));
  will-change: transform;
}
.cinema__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.92) 0%, rgba(35, 31, 32, 0.55) 55%, rgba(35, 31, 32, 0.25) 100%),
    linear-gradient(180deg, transparent 30%, rgba(35, 31, 32, 0.55));
}
.cinema__content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  max-width: 640px;
  margin-inline: 0 auto 0 0;
  width: var(--shell);
  opacity: calc(0.6 + var(--p, 0) * 0.4);
  transform: translate3d(0, calc((1 - var(--p, 0)) * 36px), 0);
}
.cinema__chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 1.75rem;
}
.cinema__chips li {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ========== BRANDS STAGE ========== */
.brands-stage {
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(24, 138, 203, 0.08), transparent 45%),
    var(--white);
}
.brands-stage__head { margin-bottom: 2rem; }

.brands-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.25rem 1.1rem;
  background: var(--ink);
  color: #fff;
}
.brands-bridge__node {
  display: grid;
  gap: 0.2rem;
  text-align: center;
}
.brands-bridge__node strong {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #7ec8ef;
}
.brands-bridge__node span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}
.brands-bridge__line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.brands-bridge__line > i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  min-width: 24px;
}
.brands-bridge__line .lx-icon {
  color: var(--blue);
  width: 18px;
  height: 18px;
}

.brand-tiles {
  display: grid;
  gap: 18px;
}
.brand-tile {
  display: grid;
  background: var(--paper);
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.brand-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 138, 203, 0.35);
  box-shadow: 0 28px 70px rgba(35, 31, 32, 0.12);
}
.brand-tile__media {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.brand-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.brand-tile:hover .brand-tile__media img { transform: scale(1.07); }
.brand-tile__place {
  position: absolute;
  inset-inline-start: 14px;
  top: 14px;
  padding: 0.4rem 0.75rem;
  background: rgba(35, 31, 32, 0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.brand-tile__media--brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(35, 31, 32, 0.35), rgba(35, 31, 32, 0.82)),
    radial-gradient(circle at 50% 45%, rgba(24, 138, 203, 0.25), transparent 55%);
}
.brand-tile__logo-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
}
.brand-tile__logo {
  width: min(180px, 46%);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}
.brand-tile__body {
  padding: 1.45rem 1.3rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.brand-tile__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(24, 138, 203, 0.12);
}
.brand-tile__icon .lx-icon { width: 22px; height: 22px; }
.brand-tile h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin: 0;
}
.brand-tile__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.brand-tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.25rem;
}
.brand-tile__tags li {
  padding: 0.35rem 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 500;
}
.brand-tile .btn { margin-top: 0.5rem; align-self: start; }

/* ========== PRESENCE ========== */
.presence {
  position: relative;
  height: 180vh;
  color: #fff;
  background: var(--ink);
}
.presence__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  overflow: hidden;
}
.presence__media {
  margin: 0;
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc((1 - var(--p, 0)) * 100%) 0 0);
  transition: none;
}
.presence__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(calc(1.15 - var(--p, 0) * 0.15));
}
.presence__pin::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(35, 31, 32, 0.88) 0%, rgba(35, 31, 32, 0.45) 55%, rgba(35, 31, 32, 0.2));
}
.presence__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
  margin-inline: 0 auto 0 0;
  width: var(--shell);
  padding: calc(var(--header-h) + 20px) 0;
  opacity: calc(0.6 + var(--p, 0) * 0.4);
  transform: translate3d(calc((1 - var(--p, 0)) * 24px), 0, 0);
}
.presence__note {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

/* ========== WHY ========== */
.why {
  padding: 110px 0;
  background: var(--paper);
}
.why-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.why-item__n {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.why-item h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin-bottom: 0.3rem; }
.why-item p { margin: 0; color: var(--muted); font-size: 1.02rem; }

/* ========== CONTACT ========== */
.contact {
  position: relative;
  padding: 110px 0;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(24, 138, 203, 0.35), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(24, 138, 203, 0.12), transparent 40%);
  pointer-events: none;
}
.contact__grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: start;
}
.contact__meta { display: grid; gap: 14px; margin-top: 1.75rem; }
.contact__meta a,
.contact__address {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s;
}
.contact__meta a:hover { color: #8fd0f0; }
.contact__meta .lx-icon { color: var(--blue); width: 20px; height: 20px; flex-shrink: 0; }
.contact__form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.6rem;
  backdrop-filter: blur(14px);
}
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; gap: 14px; }
.field { display: grid; gap: 0.4rem; }
.field > span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(24, 138, 203, 0.1);
  box-shadow: 0 0 0 3px rgba(24, 138, 203, 0.22);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: 16px calc(50% - 3px), 22px calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-inline-start: 2rem;
}
.field option { color: var(--ink); }
.form-note { margin: 0; text-align: center; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.9rem 1rem; margin-bottom: 1rem;
  border: 1px solid transparent;
}
.form-alert--ok { background: rgba(24, 138, 203, 0.15); border-color: rgba(24, 138, 203, 0.45); }
.form-alert--err { background: rgba(180, 50, 50, 0.15); border-color: rgba(220, 90, 90, 0.45); }
.form-alert .lx-icon { width: 20px; height: 20px; margin-top: 2px; }
.form-alert p { margin: 0; }

/* ========== FOOTER ========== */
.site-footer {
  background: #141112;
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 32px;
}
.site-footer__grid {
  display: grid;
  gap: 36px;
  margin-bottom: 48px;
}
.site-footer__logo {
  display: inline-flex;
  margin-bottom: 1rem;
}
.site-footer__logo img {
  height: 52px;
  width: auto;
  display: block;
}
.site-footer__name {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}
.site-footer__name-en {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.site-footer__brand p { max-width: 42ch; font-size: 0.95rem; }
.site-footer__title { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer__col ul { display: grid; gap: 0.55rem; }
.site-footer__col a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  transition: color 0.25s;
}
.site-footer__col a:hover { color: #8fd0f0; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer__bottom p { margin: 0; font-size: 0.85rem; }

/* Reveal — light, early-friendly */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 899px) {
  :root {
    --display: clamp(1.85rem, 8vw, 2.6rem);
    --display-sm: clamp(1.55rem, 6.5vw, 2.1rem);
    --shell: min(1240px, calc(100% - 36px));
  }

  body { font-size: 16px; overflow-x: hidden; }

  /* Disable tall sticky scenes on mobile */
  .manifesto,
  .hscroll,
  .process,
  .cinema,
  .presence {
    height: auto !important;
    --p: 1;
  }
  .manifesto__pin,
  .hscroll__pin,
  .process__pin,
  .cinema__pin,
  .presence__pin {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .manifesto { padding: 0; }
  .manifesto__pin {
    overflow: visible !important;
    padding: 72px 0 40px;
  }
  .manifesto .display,
  .manifesto__body,
  .manifesto__stats,
  .process__quote,
  .cinema__content,
  .presence__copy {
    opacity: 1 !important;
    transform: none !important;
  }
  .manifesto__stats {
    grid-template-columns: 1fr;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 2rem;
  }
  .manifesto__glow { display: none; }

  /* Sectors: single-column stack on mobile */
  .hscroll {
    padding: 72px 0 56px;
    overflow: visible;
  }
  .hscroll__pin {
    gap: 20px;
  }
  .hscroll__title-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hscroll__title-row .display { max-width: none; min-width: 0; }
  .hscroll__track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hpanel__media { aspect-ratio: 16 / 9; }
  .hpanel__copy {
    padding: 1.15rem 1.1rem 1.3rem;
  }
  .hpanel__link:hover {
    transform: none;
    box-shadow: none;
  }

  .process__pin {
    overflow: visible !important;
    padding: 64px 0 48px;
    background: var(--paper);
  }
  .process__steps { gap: 10px; }
  .process__step {
    opacity: 1 !important;
    transform: none !important;
    background: #fff;
    border-color: rgba(24, 138, 203, 0.25);
  }

  /* Industry: one cohesive full-bleed block */
  .cinema__pin {
    position: relative !important;
    display: block;
    min-height: 0;
    padding: 0;
    overflow: hidden !important;
  }
  .cinema__media {
    position: absolute;
    inset: 0;
  }
  .cinema__media img { transform: none !important; }
  .cinema__veil {
    background:
      linear-gradient(180deg, rgba(35, 31, 32, 0.5) 0%, rgba(35, 31, 32, 0.9) 48%, rgba(35, 31, 32, 0.97) 100%);
  }
  .cinema__content {
    position: relative;
    z-index: 1;
    max-width: none;
    width: var(--shell);
    margin-inline: auto;
    padding: calc(var(--header-h) + 40px) 0 40px;
    opacity: 1 !important;
    transform: none !important;
  }
  .cinema__chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cinema__chips li { width: 100%; }
  .cinema__content .btn {
    width: 100%;
    justify-content: center;
  }

  /* Presence: text rides over a fading image — no stacked seam */
  .presence__pin {
    position: relative !important;
    display: block;
    color: #fff;
    background: var(--ink);
    padding: 0 0 56px;
    overflow: hidden !important;
    min-height: 0 !important;
  }
  .presence__media {
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: min(58vh, 380px);
    min-height: 260px;
    clip-path: none !important;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .presence__media img {
    transform: none !important;
    width: 100%;
    height: 118%;
    object-fit: cover;
    object-position: center 30%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0,0,0,0.55) 62%, transparent 88%);
    mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0,0,0,0.55) 62%, transparent 88%);
  }
  .presence__pin::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    /* taller than media so fade continues into solid ink — no edge cut */
    height: calc(min(58vh, 380px) + 96px);
    min-height: 356px;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(35, 31, 32, 0.45) 0%,
      rgba(35, 31, 32, 0.55) 22%,
      rgba(35, 31, 32, 0.78) 48%,
      rgba(35, 31, 32, 0.95) 70%,
      var(--ink) 88%,
      var(--ink) 100%
    );
    pointer-events: none;
  }
  .presence__copy {
    position: relative;
    z-index: 2;
    max-width: none;
    width: var(--shell);
    margin: 0 auto;
    padding: calc(var(--header-h) + min(20vh, 130px)) 0 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .presence__copy .btn {
    width: 100%;
    justify-content: center;
  }

  .why-item {
    gap: 0.85rem 1rem;
    padding-inline: 0;
  }
  .why-item__n {
    font-size: 1.25rem;
    min-width: 2ch;
  }

  .brands-stage { padding: 72px 0 56px; }
  .brands-stage__head { margin-bottom: 1.5rem; }
  .brands-stage__head .lede,
  .brands-stage__head .display { max-width: none; }
  .brands-bridge {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    margin-bottom: 1.25rem;
  }
  .brands-bridge__line {
    justify-content: center;
    white-space: normal;
  }
  .brand-tiles { gap: 16px; }
  .brand-tile:hover {
    transform: none;
    box-shadow: none;
  }

  .hero__content {
    padding: calc(var(--header-h) + 36px) 0 72px;
    max-width: none;
    width: var(--shell);
    padding-inline: 0;
  }
  .hero__brand--mark {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.85rem;
  }
  .hero__brand--lockup { max-width: min(420px, 100%); }
  .hero__mark { width: 72px; }
  .hero__brand-fa {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .hero__headline { font-size: clamp(1.15rem, 4.8vw, 1.45rem); }
  .hero__lead { font-size: 0.98rem; max-width: none; }
  .hero__orbit { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { gap: 6px 0; font-size: 0.8rem; }
  .hero__meta li:not(:last-child)::after { margin-inline: 10px; }

  .why { padding: 72px 0; }
  .sea-trade__inner { padding: 72px 0 68px; gap: 28px; }
  .sea-trade__emphasis { font-size: 0.98rem; }
  .sea-trade__route li:not(:last-child)::after { width: 18px; }
  .contact { padding: 72px 0 88px; }
  .contact__form-wrap { padding: 1.25rem; }
  .site-footer { padding: 56px 0 28px; }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  :root { --shell: min(1240px, calc(100% - 56px)); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1099px) {
  .hscroll__track { grid-template-columns: 1fr; }
  .hpanel__media { aspect-ratio: 16 / 9; }
}

@media (min-width: 700px) and (max-width: 1099px) {
  .hscroll__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .hscroll__track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
  .brand { max-width: min(340px, 36vw); }
  .lang-switch {
    min-height: 42px;
    padding: 0.55rem 1.1rem;
    gap: 8px;
    font-size: 0.92rem;
  }
  .lang-switch__icon .lx-icon { width: 18px; height: 18px; }
  .lang-switch__sep { height: 16px; }
  .nav-toggle { width: 42px; height: 42px; }
  .process__layout { grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
  .contact__grid { grid-template-columns: 0.95fr 1.05fr; gap: 56px; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .brand-tiles { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .brand-tile { grid-template-rows: auto 1fr; }
  .sea-trade__pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .sea-pillar--lead { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .sea-trade__inner { gap: 40px; padding: 110px 0 100px; }
  .sea-trade__pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sea-pillar--lead { grid-column: auto; }
  .brand-tiles {
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .hero__content { padding-bottom: 100px; }
}

@media (max-width: 380px) {
  .brand { max-width: 38vw; gap: 6px; }
  .brand__mark { height: 28px; }
  .brand__logo { height: 28px; max-width: 120px; }
  .brand__text { font-size: 0.62rem; }
  .lang-switch { padding: 0 0.45rem; gap: 4px; font-size: 0.68rem; min-height: 36px; }
  .lang-switch__icon { display: none; }
  .nav-toggle { width: 36px; height: 36px; }
  .site-header__actions { gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__stage { clip-path: none !important; }
  .hero__media img { transform: none !important; }
  [data-hero-line], [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .hero__orbit { display: none; }
  .sea-trade__wave--a,
  .sea-trade__wave--b,
  .sea-trade__lane,
  .sea-trade__lane--soft { animation: none !important; }
  .sea-trade__media img { transform: none; }
  .manifesto, .hscroll, .process, .cinema, .presence { height: auto !important; }
  .manifesto__pin, .hscroll__pin, .process__pin, .cinema__pin, .presence__pin {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .hscroll__track { transform: none !important; }
  .hpanel { width: auto; }
  .presence__media { clip-path: none !important; }
  .process__step { opacity: 1 !important; transform: none !important; }
}
