/* ===================================================================
   Sallaum Lines — site-wide component & layout styles
   Built on tokens.css (design-system variables). Vanilla, no framework.
   =================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sl-font);
  color: var(--sl-fg);
  background: var(--sl-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--sl-red); color: #fff; }
i[data-lucide] { width: 20px; height: 20px; display: inline-block; vertical-align: middle; stroke-width: 1.75; }

/* ---- layout primitives ---- */
.container { max-width: var(--sl-container); margin: 0 auto; padding: 0 40px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--soft { background: var(--sl-canvas-soft); }
.section--ink { background: var(--sl-ink); color: var(--sl-on-dark); }
.section--red { background: var(--sl-red); color: #fff; }
.lead { max-width: 640px; }

/* ---- about band (red intro) ---- */
.about-band { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-band__title { color: #fff; font-size: clamp(34px, 3.6vw, 52px); font-weight: 800; line-height: 1.08; letter-spacing: -1px; margin: 0; max-width: 12ch; }
.about-band__body { padding-top: 14px; }
.about-band__body p { color: rgba(255,255,255,.94); font-size: var(--sl-body-lg-size); line-height: 1.62; margin: 0 0 22px; }
.about-band__btn { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--sl-ink); font-family: var(--sl-font); font-weight: 700; font-size: 15px; border: none; border-radius: var(--sl-r-pill); padding: 14px 28px; margin-top: 6px; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.about-band__btn:hover { background: var(--sl-canvas-soft); }
.about-band__btn:active { transform: translateY(1px); }
@media (max-width: 860px) {
  .about-band { grid-template-columns: 1fr; gap: 28px; }
  .about-band__body { padding-top: 0; }
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---- type helpers (extend tokens) ---- */
.eyebrow { font-size: var(--sl-eyebrow-size); font-weight: var(--sl-eyebrow-weight); letter-spacing: var(--sl-eyebrow-ls); text-transform: uppercase; color: var(--sl-red); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sl-red); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--ondark { color: #fff; }
.eyebrow--ondark::before { background: var(--sl-red); }
.t-hero    { font-size: var(--sl-display-hero-size); font-weight: 800; line-height: .92; letter-spacing: -2px; text-transform: uppercase; margin: 0; }
.t-xxl     { font-size: var(--sl-display-xxl-size); font-weight: 800; line-height: .94; letter-spacing: -1.5px; text-transform: uppercase; margin: 0; }
.t-xl      { font-size: var(--sl-display-xl-size); font-weight: 800; line-height: .96; letter-spacing: -1px; text-transform: uppercase; margin: 0; }
.t-lg      { font-size: var(--sl-display-lg-size); font-weight: 300; line-height: 1.08; margin: 0; }
.t-md      { font-size: var(--sl-display-md-size); font-weight: 300; line-height: 1.1; margin: 0; }
.t-sm      { font-size: var(--sl-display-sm-size); font-weight: 700; line-height: 1.2; margin: 0; }
.t-xs      { font-size: var(--sl-display-xs-size); font-weight: 700; line-height: 1.2; margin: 0; }
.body-lg   { font-size: var(--sl-body-lg-size); line-height: 1.5; font-weight: 400; }
.body-md   { font-size: var(--sl-body-md-size); line-height: 1.6; font-weight: 400; }
.body-sm   { font-size: var(--sl-body-sm-size); line-height: 1.5; font-weight: 400; }
.muted     { color: var(--sl-fg-muted); }
.on-dark-muted { color: var(--sl-on-dark-muted); }
.red { color: var(--sl-red); }

/* ===== HEADER ===================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: var(--sl-ink);
  border-bottom-color: rgba(255,255,255,.10);
}
.site-header__inner { display: flex; align-items: center; gap: 32px; height: 80px; }
.site-header__logo { flex-shrink: 0; display: flex; align-items: center; }
.site-header__logo img { height: 46px; width: auto; }
.site-nav { display: flex; gap: 30px; margin-left: 8px; flex: 1; }
.site-nav a {
  color: rgba(255,255,255,.74); font-size: 15px; font-weight: 500; letter-spacing: .2px;
  padding: 6px 0; position: relative; transition: color .15s ease; white-space: nowrap;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--sl-red); transition: right .22s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after, .site-nav a.is-active::after { right: 0; }
.site-nav a.is-active { color: #fff; }
.header-track { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.74); font-size: 15px; font-weight: 500; cursor: pointer; transition: color .15s; }
.header-track:hover { color: #fff; }
.header-cta { font-size: 15px !important; padding: 12px 26px !important; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 6px; }

/* mobile menu — full-screen, premium */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--sl-ink); color: #fff;
  display: flex; flex-direction: column;
  padding: 20px clamp(22px, 6vw, 52px) calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .42s cubic-bezier(.4,0,.2,1), transform .42s cubic-bezier(.4,0,.2,1), visibility .42s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(115% 70% at 100% -5%, rgba(233,34,51,.26), transparent 52%),
    radial-gradient(90% 60% at -10% 110%, rgba(233,34,51,.12), transparent 60%); }
.mobile-menu__mark { position: absolute; right: -16%; bottom: -10%; width: 80%; height: 60%; z-index: 0; pointer-events: none;
  background: url("../assets/sallaum-mark-white.png") right bottom / contain no-repeat; opacity: .04; }
.mobile-menu__head, .mobile-menu__nav, .mobile-menu__foot { position: relative; z-index: 1; }

.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; flex: none; }
.mobile-menu__logo img { height: 30px; width: auto; }
.nav-close { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .3s cubic-bezier(.4,0,.2,1); }
.nav-close i { width: 22px; height: 22px; }
.nav-close:hover { background: var(--sl-red); border-color: var(--sl-red); transform: rotate(90deg); }

.mobile-menu__nav { display: flex; flex-direction: column; margin: auto 0; width: 100%; padding: 24px 0; }
.m-link { display: flex; align-items: center; gap: 16px; padding: clamp(11px, 1.9vh, 19px) 2px;
  border-bottom: 1px solid rgba(255,255,255,.10); color: #fff;
  opacity: 0; transform: translateX(30px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
.mobile-menu.is-open .m-link { opacity: 1; transform: none; transition-delay: calc(.14s + var(--i) * .055s); }
.m-link__idx { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--sl-red); width: 26px; flex: none; }
.m-link__label { flex: 1; font-size: clamp(28px, 6.6vw, 44px); font-weight: 800; text-transform: uppercase;
  letter-spacing: -1px; line-height: 1; transition: transform .3s cubic-bezier(.4,0,.2,1), color .2s ease; }
.m-link__arrow { width: 22px; height: 22px; flex: none; color: var(--sl-red);
  opacity: 0; transform: translateX(-10px); transition: opacity .3s ease, transform .3s cubic-bezier(.4,0,.2,1); }
.m-link:hover .m-link__label, .m-link:focus-visible .m-link__label { transform: translateX(8px); }
.m-link:hover .m-link__arrow, .m-link:focus-visible .m-link__arrow { opacity: 1; transform: none; }
.m-link.is-active .m-link__label { color: var(--sl-red); }
.m-link.is-active .m-link__arrow { opacity: 1; transform: none; }

.mobile-menu__foot { flex: none; display: flex; flex-direction: column; gap: 20px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.4,0,.2,1); }
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: none; transition-delay: .42s; }
.mobile-menu__cta { width: 100%; justify-content: center; font-size: 16px; }
.mobile-menu__meta { display: flex; flex-direction: column; gap: 12px; }
.mm-meta { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72);
  font-size: 15px; font-weight: 500; transition: color .15s ease; }
.mm-meta i { width: 18px; height: 18px; color: var(--sl-red); flex: none; }
.mm-meta:hover { color: #fff; }
.mobile-menu__social { display: flex; gap: 12px; }
.mobile-menu__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.72); transition: all .16s ease; }
.mobile-menu__social a:hover { background: #fff; border-color: #fff; color: var(--sl-ink); }
@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .m-link, .mobile-menu__foot { transition: opacity .2s ease; transform: none; }
  .mobile-menu.is-open .m-link, .mobile-menu.is-open .mobile-menu__foot { transition-delay: 0s; }
}

/* ===== HERO (home, full-screen video) ============================ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--sl-ink); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,34,38,.55) 0%, rgba(28,34,38,.15) 32%, rgba(28,34,38,.45) 64%, rgba(28,34,38,.94) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 76px; padding-top: 140px; }
.hero__title { color: #fff; max-width: 1100px; }
.hero__title .red { color: var(--sl-red); -webkit-text-fill-color: var(--sl-red); }
.hero__sub { color: rgba(255,255,255,.82); max-width: 560px; margin: 26px 0 0; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.hero__scroll i { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ===== PAGE HERO (inner pages) =================================== */
.page-hero { position: relative; padding: 184px 0 96px; background: var(--sl-ink); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(28,34,38,.7) 0%, rgba(28,34,38,.55) 60%, rgba(28,34,38,.95) 100%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title { color: #fff; max-width: 980px; margin: 18px 0 0; }
.page-hero__sub { color: rgba(255,255,255,.78); max-width: 600px; margin: 22px 0 0; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: .5px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ===== PHOTO PLACEHOLDER ========================================= */
.photo { position: relative; overflow: hidden; background: linear-gradient(135deg,#2b343a 0%,#1c2226 72%); border-radius: var(--sl-r-sm); }
.photo--ocean { background: linear-gradient(160deg,#243038 0%,#13181c 100%); }
.photo--port  { background: linear-gradient(135deg,#33403f 0%,#1c2226 80%); }
.photo--steel { background: linear-gradient(120deg,#3a4248 0%,#222a2f 100%); }
.photo--deck  { background: linear-gradient(135deg,#2b343a 0%,#1c2226 70%); }
.photo--dusk  { background: linear-gradient(150deg,#3b2e2c 0%,#1d1715 100%); }
.photo::before { content: ""; position: absolute; inset: 0; opacity: .05;
  background-image: repeating-linear-gradient(90deg,#fff 0 1px,transparent 1px 70px); }
.photo::after { content: ""; position: absolute; right: -8%; bottom: -14%; width: 52%; height: 78%;
  background: url("../assets/sallaum-mark-white.png") right bottom / contain no-repeat; opacity: .055; }
.photo__label { position: absolute; left: 16px; top: 14px; font-size: 11px; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.42); font-weight: 600; z-index: 2; }
.photo__chip { position: absolute; left: 16px; bottom: 16px; z-index: 2; }

/* ===== SPLIT TILES (At Sea / On Land) =========================== */
.split-tiles { display: grid; grid-template-columns: 1fr 1fr; }
.split-tile { position: relative; height: 440px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.split-tile__bg { position: absolute; inset: 0; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.split-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,34,38,.30) 0%, rgba(28,34,38,.55) 100%); z-index: 1; transition: background .4s ease; }
.split-tile:hover .split-tile__bg { transform: scale(1.08); }
.split-tile:hover::after { background: linear-gradient(180deg, rgba(28,34,38,.18) 0%, rgba(28,34,38,.45) 100%); }
.split-tile__label { position: relative; z-index: 2; color: #fff; font-size: clamp(34px, 3vw, 48px); font-weight: 800; letter-spacing: -1px; text-shadow: 0 2px 24px rgba(0,0,0,.4); }
@media (max-width: 760px) { .split-tiles { grid-template-columns: 1fr; } .split-tile { height: 300px; } }

/* ===== WAVEMAKERS (image + copy) =============================== */
.wavemakers { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.wavemakers__media { position: relative; height: 560px; border-radius: var(--sl-r-sm); overflow: hidden; }
.wavemakers__media .photo { position: absolute; inset: 0; border-radius: 0; }
.wavemakers__media svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.wavemakers__title { color: var(--sl-red); font-size: clamp(38px, 4vw, 60px); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; margin: 0; max-width: 11ch; }
.wavemakers__text { color: var(--sl-fg-muted); font-size: var(--sl-body-lg-size); line-height: 1.6; margin: 28px 0 36px; max-width: 30ch; }
@media (max-width: 860px) {
  .wavemakers { grid-template-columns: 1fr; gap: 36px; }
  .wavemakers__media { height: 380px; }
}

/* ===== CULTURE BANNER (people-first) =========================== */
.culture-banner { position: relative; height: 540px; overflow: hidden; }
.culture-banner .photo { position: absolute; inset: 0; border-radius: 0; }
.culture-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(28,34,38,.55) 0%, rgba(28,34,38,.18) 48%, rgba(28,34,38,0) 75%); z-index: 1; }
.culture-banner__inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 64px 0; }
.culture-banner__title { color: #fff; font-size: clamp(34px, 4vw, 58px); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; margin: 0; max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.culture-banner__foot { display: flex; justify-content: flex-end; }
@media (max-width: 760px) { .culture-banner { height: 460px; } .culture-banner__foot { justify-content: flex-start; } }

/* ===== STATS BAND ================================================ */
.stats { background: var(--sl-red); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 52px 36px; border-left: 1px solid rgba(255,255,255,.18); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num { font-size: 60px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -1.5px; }
.stat__label { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 12px; }

/* ===== SECTION HEAD ============================================== */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.sec-head--split .sec-head__copy { max-width: 620px; }

/* ===== CARDS / GRIDS ============================================= */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card { background: #fff; border-radius: var(--sl-r-sm); overflow: hidden; border: 1px solid var(--sl-canvas-line); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--sl-shadow-md); }
.card__media { height: 210px; position: relative; }
.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__title { color: var(--sl-ink); margin: 0 0 10px; }
.card__text { color: var(--sl-fg-muted); margin: 0 0 20px; flex: 1; }
.card__link { color: var(--sl-red); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; transition: gap .18s ease; }
.card:hover .card__link { gap: 12px; }

/* feature list rows ("why choose us") */
.feature-row { display: flex; gap: 22px; padding: 30px 0; border-top: 1px solid var(--sl-canvas-line); }
.feature-row:last-child { border-bottom: 1px solid var(--sl-canvas-line); }
.feature-row__icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; background: rgba(233,34,51,.08); display: flex; align-items: center; justify-content: center; color: var(--sl-red); }
.feature-row__icon i { width: 24px; height: 24px; }
.feature-row__title { color: var(--sl-ink); margin: 0 0 6px; }
.feature-row__text { color: var(--sl-fg-muted); margin: 0; }

/* numbered process steps */
.step { display: flex; gap: 22px; }
.step__num { font-size: 17px; font-weight: 800; color: var(--sl-red); flex-shrink: 0; width: 46px; height: 46px; border: 1.5px solid var(--sl-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step__title { color: var(--sl-ink); margin: 0 0 6px; }

/* dark feature card variants */
.dcard { background: var(--sl-ink-soft); border: 1px solid rgba(255,255,255,.10); border-radius: var(--sl-r-sm); padding: 32px; transition: transform .22s ease, border-color .22s; }
.dcard:hover { transform: translateY(-5px); border-color: rgba(233,34,51,.5); }
.dcard__icon { color: var(--sl-red); margin-bottom: 22px; }
.dcard__icon i { width: 30px; height: 30px; }
.dcard__title { color: #fff; margin: 0 0 10px; }
.dcard__text { color: var(--sl-on-dark-muted); margin: 0; }

/* ===== SCHEDULE / TABS =========================================== */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.tab { font-family: var(--sl-font); font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: var(--sl-r-pill); cursor: pointer;
  background: #fff; color: var(--sl-ink); border: 1.5px solid var(--sl-canvas-line); transition: all .16s ease; white-space: nowrap; }
.tab:hover { border-color: var(--sl-ink); }
.tab.is-active { background: var(--sl-ink); color: #fff; border-color: var(--sl-ink); }
.section--ink .tab { background: transparent; color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.22); }
.section--ink .tab:hover { color:#fff; border-color: rgba(255,255,255,.6); }
.section--ink .tab.is-active { background: var(--sl-red); color: #fff; border-color: var(--sl-red); }

.table-wrap { background: #fff; border: 1px solid var(--sl-canvas-line); border-radius: var(--sl-r-sm); overflow: hidden; }
table.sched { width: 100%; border-collapse: collapse; }
table.sched th { text-align: left; padding: 16px 24px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--sl-fg-muted); background: var(--sl-canvas-soft); font-weight: 700; border-bottom: 1px solid var(--sl-canvas-line); }
table.sched td { padding: 18px 24px; color: var(--sl-fg-muted); font-size: 15px; border-bottom: 1px solid var(--sl-canvas-line); }
table.sched tr:last-child td { border-bottom: none; }
table.sched tr:hover td { background: #fafbfb; }
table.sched .vessel { font-weight: 700; color: var(--sl-ink); display: inline-flex; align-items: center; gap: 9px; }
table.sched .vessel i { color: var(--sl-red); }

/* ===== TESTIMONIALS ============================================== */
.testi-rail { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.testi { background: var(--sl-ink-soft); border: 1px solid rgba(255,255,255,.10); border-radius: var(--sl-r-sm); padding: 28px; display: flex; flex-direction: column; }
.testi.is-feature { background: var(--sl-red); border-color: var(--sl-red); }
.testi__stars { color: var(--sl-red); display: flex; gap: 2px; margin-bottom: 16px; }
.testi.is-feature .testi__stars { color: #fff; }
.testi__quote { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.testi.is-feature .testi__quote { color: #fff; }
.testi__person { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,#3a4248,#222a2f); flex-shrink: 0; border: 1px solid rgba(255,255,255,.14); }
.testi.is-feature .testi__avatar { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); }
.testi__name { color: #fff; font-weight: 700; font-size: 14px; }
.testi__role { color: rgba(255,255,255,.6); font-size: 12px; }
.testi.is-feature .testi__role { color: rgba(255,255,255,.8); }

/* ===== FAQ / ACCORDION =========================================== */
.faq-list { border-top: 1px solid var(--sl-canvas-line); }
.faq { border-bottom: 1px solid var(--sl-canvas-line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--sl-font); text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; font-size: 19px; font-weight: 700; color: var(--sl-ink); }
.faq__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--sl-canvas-soft); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .25s, color .2s; }
.faq.is-open .faq__icon { background: var(--sl-red); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 4px 26px; color: var(--sl-fg-muted); font-size: 16px; line-height: 1.65; max-width: 760px; }

/* ===== VESSELS =================================================== */
.vessel-card { background: #fff; border: 1px solid var(--sl-canvas-line); border-radius: var(--sl-r-sm); overflow: hidden; transition: transform .22s, box-shadow .22s; }
.vessel-card:hover { transform: translateY(-5px); box-shadow: var(--sl-shadow-md); }
.vessel-card__media { height: 200px; position: relative; }
.vessel-card__body { padding: 24px 24px 26px; }
.vessel-card__name { color: var(--sl-ink); margin: 0 0 4px; }
.vessel-card__flag { color: var(--sl-fg-faint); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; }
.vessel-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; border-top: 1px solid var(--sl-canvas-line); padding-top: 18px; }
.spec__v { font-size: 22px; font-weight: 800; color: var(--sl-ink); letter-spacing: -.5px; }
.spec__k { font-size: 12px; color: var(--sl-fg-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.featured-vessel { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--sl-ink); border-radius: var(--sl-r-sm); overflow: hidden; }
.featured-vessel__media { position: relative; min-height: 440px; }
.featured-vessel__body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.featured-vessel .vessel-specs { border-color: rgba(255,255,255,.14); }
.featured-vessel .spec__v { color: #fff; }
.featured-vessel .spec__k { color: rgba(255,255,255,.6); }

/* ===== ROUTES / PORTS ============================================ */
.port-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--sl-canvas-line); border: 1px solid var(--sl-canvas-line); border-radius: var(--sl-r-sm); overflow: hidden; }
.port { background: #fff; padding: 24px; transition: background .16s; }
.port:hover { background: var(--sl-canvas-soft); }
.port__region { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--sl-red); font-weight: 700; margin-bottom: 10px; }
.port__name { color: var(--sl-ink); font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.port__country { color: var(--sl-fg-muted); font-size: 13px; margin-top: 3px; }

/* map */
.map-wrap { position: relative; border-radius: var(--sl-r-sm); overflow: hidden; background: var(--sl-ink); }
.map-wrap svg { display: block; width: 100%; height: auto; }
.map-dot { fill: var(--sl-red); }
.map-pulse { fill: var(--sl-red); opacity: .35; animation: pulse 2.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0%{ transform: scale(.6); opacity: .55;} 100%{ transform: scale(2.6); opacity: 0;} }
.map-arc { fill: none; stroke: var(--sl-red); stroke-width: 1.4; stroke-dasharray: 5 6; opacity: .55; }

/* ===== NEWS ====================================================== */
.news-feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border: 1px solid var(--sl-canvas-line); border-radius: var(--sl-r-sm); overflow: hidden; background: #fff; }
.news-feature__media { position: relative; min-height: 420px; }
.news-feature__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.news-meta { display: flex; gap: 14px; align-items: center; color: var(--sl-fg-faint); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; }
.news-meta .tag { color: var(--sl-red); }
.news-card__media { height: 200px; position: relative; }

/* ===== ESG ======================================================= */
.esg-pillar { background: #fff; border: 1px solid var(--sl-canvas-line); border-radius: var(--sl-r-sm); padding: 36px; }
.esg-pillar__badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--sl-ink); color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 24px; }
.esg-letter-E { background: var(--sl-red); }
.progress { height: 8px; border-radius: 99px; background: var(--sl-canvas-line); overflow: hidden; margin-top: 8px; }
.progress__bar { height: 100%; background: var(--sl-red); border-radius: 99px; width: 0; transition: width 1.1s cubic-bezier(.4,0,.2,1); }
.kpi-big { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.kpi-big .n { font-size: 72px; font-weight: 800; letter-spacing: -2px; line-height: 1; color: var(--sl-ink); }
.section--ink .kpi-big .n { color: #fff; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: rgba(255,255,255,.18); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--sl-ink); border: 2px solid var(--sl-red); }
.tl-item.is-done::before { background: var(--sl-red); }
.tl-year { color: var(--sl-red); font-weight: 800; font-size: 20px; }

/* ===== CONTACT =================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info-card { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--sl-canvas-line); }
.contact-info-card:first-child { padding-top: 0; }
.contact-info-card__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: rgba(233,34,51,.08); color: var(--sl-red); display: flex; align-items: center; justify-content: center; }
.contact-info-card__k { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--sl-fg-faint); font-weight: 700; margin-bottom: 4px; }
.contact-info-card__v { color: var(--sl-ink); font-size: 17px; font-weight: 600; }
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--sl-fg-muted); margin-bottom: 7px; }
.field textarea.sl-input { resize: vertical; min-height: 130px; font-family: var(--sl-font); }
.office-card { background: #fff; border: 1px solid var(--sl-canvas-line); border-radius: var(--sl-r-sm); padding: 28px; }
.office-card.is-hq { border-color: var(--sl-red); border-width: 1.5px; }
.office-card__city { color: var(--sl-ink); margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.office-card__tag { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--sl-red); }
.map-embed { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ===== CTA STRIP ================================================= */
.cta-strip { background: var(--sl-ink); border-radius: var(--sl-r-md); padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-strip::after { content: ""; position: absolute; right: -40px; bottom: -60px; width: 280px; height: 280px; background: url("../assets/sallaum-mark-red.png") right bottom / contain no-repeat; opacity: .12; }
.cta-strip__body { position: relative; z-index: 1; max-width: 600px; }

/* ===== FOOTER =================================================== */
.site-footer { background: var(--sl-red); color: var(--sl-on-dark); }
.footer-actionbar { background: var(--sl-ink); }
.footer-actionbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px 48px; flex-wrap: wrap; padding: 30px 0; }
.fab-item { display: inline-flex; align-items: center; gap: 16px; color: #fff; text-decoration: none; }
.fab-item__label { font-size: 18px; font-weight: 600; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.fab-item__btn { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--sl-red);
  display: flex; align-items: center; justify-content: center; transition: background .18s ease, transform .18s ease; }
.fab-item__btn i { width: 18px; height: 18px; color: #fff; }
.fab-item:hover .fab-item__btn { background: var(--sl-red-deep); transform: translateX(3px); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 40px; padding: 80px 0 48px; }
.footer-brand img { height: 30px; margin-bottom: 22px; }
.footer-brand p { color: #fff; font-weight: 500; max-width: 290px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); transition: all .16s; }
.footer-social a:hover { background: #fff; border-color: #fff; color: var(--sl-red); }
.footer-col h4 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #fff; font-weight: 700; margin: 0 0 18px; }
.footer-col a { display: block; color: #fff; font-weight: 700; font-size: 15px; padding: 6px 0; transition: opacity .15s; }
.footer-col a:hover { opacity: .75; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom, .footer-bottom a { font-size: 13px; color: #fff; font-weight: 600; }
.footer-bottom a:hover { color: #fff; }

/* ===== MODAL ==================================================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(28,34,38,.62); z-index: 90; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal { background: #fff; border-radius: var(--sl-r-md); width: 100%; max-width: 500px; box-shadow: var(--sl-shadow-md); overflow: hidden; transform: translateY(14px) scale(.98); transition: transform .24s cubic-bezier(.4,0,.2,1); }
.modal-overlay.is-open .modal { transform: none; }
.modal__head { background: var(--sl-ink); padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; }
.modal__head .eyebrow { color: var(--sl-red); margin-bottom: 6px; }
.modal__title { color: #fff; font-size: 22px; font-weight: 800; }
.modal__close { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; }
.modal__close:hover { color: #fff; }
.modal__body { padding: 30px; }
.modal__success { text-align: center; padding: 16px 0 8px; }
.modal__success-icon { width: 66px; height: 66px; border-radius: 50%; background: rgba(31,138,76,.12); color: var(--sl-success); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }

/* ===== TRACK WIDGET (floats in home hero) ====================== */
.track-card { background: #fff; border-radius: var(--sl-r-md); box-shadow: var(--sl-shadow-md); padding: 24px; }
.track-card__tabs { display: flex; gap: 6px; background: var(--sl-canvas-soft); border-radius: var(--sl-r-pill); padding: 4px; margin-bottom: 18px; }
.track-card__tabs button { flex: 1; border: none; background: none; cursor: pointer; font-family: var(--sl-font); font-size: 14px; font-weight: 700; padding: 10px; border-radius: var(--sl-r-pill); color: var(--sl-fg-muted); }
.track-card__tabs button.is-active { background: #fff; color: var(--sl-ink); box-shadow: var(--sl-shadow-sm); }

/* ===== REVEAL ANIMATIONS ======================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__scroll i { animation: none; } }

/* ===== UTIL ===================================================== */
.divider { height: 1px; background: var(--sl-canvas-line); border: none; margin: 0; }
.section--ink .divider { background: rgba(255,255,255,.14); }
.stack-sm > * + * { margin-top: 8px; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.maxw-560 { max-width: 560px; } .maxw-640 { max-width: 640px; } .maxw-720 { max-width: 720px; }

/* ===== RESPONSIVE ============================================== */
@media (max-width: 1080px) {
  .t-hero { font-size: 84px; }
  .t-xxl { font-size: 72px; }
  .t-xl { font-size: 56px; }
  .featured-vessel, .news-feature { grid-template-columns: 1fr; }
  .featured-vessel__media, .news-feature__media { min-height: 300px; }
  .testi-rail { grid-template-columns: repeat(2,1fr); }
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .kpi-big { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .site-nav, .header-track { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-header__inner { height: 68px; gap: 16px; }
  .site-header__logo img { height: 38px; }
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .stat { padding: 32px 20px; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat__num { font-size: 48px; }
  .t-hero { font-size: 56px; letter-spacing: -1px; }
  .t-xxl { font-size: 48px; }
  .t-xl { font-size: 40px; }
  .t-lg { font-size: 34px; }
  .t-md { font-size: 28px; }
  .sec-head { margin-bottom: 40px; }
  .sec-head--split { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form .row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 56px 0 40px; }
  .cta-strip { padding: 44px 32px; flex-direction: column; align-items: flex-start; }
  .featured-vessel__body, .news-feature__body { padding: 36px 28px; }
  .featured-vessel__media, .news-feature__media { min-height: 260px; }
  .hero__inner { padding-top: 120px; padding-bottom: 56px; }
  .page-hero { padding: 132px 0 72px; }
  .kpi-big .n { font-size: 56px; }
  .vessel-specs { grid-template-columns: 1fr 1fr; }
  /* horizontally scroll wide schedule tables */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table.sched { min-width: 600px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; }
  .stat__num { font-size: 44px; }
  .testi-rail, .port-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .t-hero { font-size: 44px; }
  .t-xxl { font-size: 40px; }
  .t-xl { font-size: 34px; }
  .t-lg { font-size: 30px; }
  .sec-head { margin-bottom: 32px; }
  .cta-strip { padding: 36px 24px; border-radius: var(--sl-r-sm); }
  .featured-vessel__body, .news-feature__body { padding: 30px 22px; }
  .kpi-big .n { font-size: 48px; }
  .faq__q { font-size: 17px; padding: 22px 2px; }
  .modal__body { padding: 24px 22px; }
  .modal__head { padding: 22px 24px; }
  .sl-btn { font-size: 16px; padding: 15px 26px; }
}
