/* ===================================================================
   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 24px; }
.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(32px, 3.3vw, 48px); font-weight: 500; 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: calc(var(--sl-display-hero-size) * 0.9); font-weight: 500; line-height: .96; letter-spacing: -2px; text-transform: uppercase; margin: 0; }
.t-xxl     { font-size: calc(var(--sl-display-xxl-size) * 0.9); font-weight: 500; line-height: .98; letter-spacing: -1.5px; text-transform: uppercase; margin: 0; }
.t-xl      { font-size: calc(var(--sl-display-xl-size) * 0.92); font-weight: 500; line-height: 1; 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);
}
/* Solid-ink header for pages without a dark full-bleed hero (set in header.php). */
.site-header.is-ink {
  background: var(--sl-ink);
  border-bottom-color: rgba(255,255,255,.10);
}
/* Full-width header like the static site — gutters only, no max-width cap. */
.site-header .container { max-width: none; }
.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: 60px; width: auto; }
.site-nav { display: flex; gap: 30px; margin-left: auto; }
.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: 40px; 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: 572px; 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(32px, 2.8vw, 44px); font-weight: 500; 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: 390px; } }

/* ===== WAVEMAKERS (image + copy) =============================== */
.wavemakers { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.wavemakers__media { position: relative; height: 620px; 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(34px, 3.6vw, 54px); font-weight: 500; line-height: 1.04; letter-spacing: -1.5px; margin: 0; max-width: 18ch; }
.wavemakers__text { color: var(--sl-fg-muted); font-size: var(--sl-body-lg-size); line-height: 1.6; margin: 28px 0 36px; max-width: 46ch; }
@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(32px, 3.6vw, 52px); font-weight: 500; 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; }

/* ===== METRICS BAR (red figures band w/ hairline dividers) ====== */
.metrics-band { background: var(--sl-red); }
.metrics-bar { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: rgba(255,255,255,.20); }
.metric { background: var(--sl-red); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 84px 22px; }
.metric__v { font-size: clamp(34px,3.4vw,52px); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; color: rgba(255,255,255,.74); }
.metric__c { font-size: 13px; font-weight: 600; line-height: 1.5; color: rgba(255,255,255,.58); margin-top: 16px; max-width: 20ch; }
@media (max-width: 1000px) { .metrics-bar { grid-template-columns: repeat(3,1fr); } .metric { padding: 56px 20px; } }
@media (max-width: 600px)  { .metrics-bar { grid-template-columns: repeat(2,1fr); } .metric { padding: 44px 16px; } .metric__c { font-size: 12px; margin-top: 12px; } }

/* ===== NEWS CAROUSEL (latest insights slider) =================== */
.sl-news-section { background: var(--sl-canvas-soft); }
.sl-news { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.sl-news__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.sl-news__title { margin: 0; color: var(--sl-red); font-size: clamp(32px,4vw,52px); font-weight: 800; letter-spacing: -1px; line-height: 1; }
.sl-news__all { flex: none; display: inline-flex; align-items: center; background: var(--sl-red); color: #fff; text-decoration: none; font-size: 18px; font-weight: 600; padding: 13px 28px; border-radius: var(--sl-r-pill); transition: background .18s; white-space: nowrap; }
.sl-news__all:hover, .sl-news__all:focus-visible { background: var(--sl-red-deep); color: #fff; }
.sl-news__slider { position: relative; }
.sl-news__viewport { overflow: hidden; padding: 6px 0 28px; margin: -6px 0 -28px; }
.sl-news__track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.sl-card { flex: 0 0 calc((100% - 72px) / 4); min-width: 0; background: #fff; border-radius: var(--sl-r-md); overflow: hidden; box-shadow: 0 1px 2px rgba(28,34,38,.06), 0 8px 24px rgba(28,34,38,.06); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.sl-card:hover { box-shadow: 0 2px 4px rgba(28,34,38,.08), 0 18px 40px rgba(28,34,38,.14); transform: translateY(-2px); color: inherit; }
.sl-card__media { aspect-ratio: 1 / 0.74; background: #cfd4d8 center/cover no-repeat; margin: 10px 10px 0; border-radius: 10px; }
.sl-card__body { padding: 22px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.sl-card__cat { color: var(--sl-red); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.sl-card__title { color: var(--sl-ink-soft); font-size: 22px; font-weight: 700; line-height: 1.22; letter-spacing: -.2px; margin: 0 0 22px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sl-card__date { margin-top: auto; color: var(--sl-fg-muted); font-size: 15px; font-weight: 400; }
.sl-news__nav { position: absolute; top: 130px; transform: translateY(-50%); width: 54px; height: 54px; border: none; cursor: pointer; border-radius: 50%; background: var(--sl-red); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(233,34,51,.35); transition: background .18s, opacity .2s; z-index: 5; }
.sl-news__nav:hover { background: var(--sl-red-deep); }
.sl-news__nav[disabled] { opacity: .32; cursor: default; }
.sl-news__nav svg { width: 22px; height: 22px; }
.sl-news__nav--prev { left: -20px; }
.sl-news__nav--next { right: -20px; }
@media (max-width: 1100px) { .sl-card { flex-basis: calc((100% - 48px) / 3); } }
@media (max-width: 760px)  { .sl-card { flex-basis: calc((100% - 24px) / 2); } .sl-news__nav--prev { left: -8px; } .sl-news__nav--next { right: -8px; } }
@media (max-width: 600px)  { .sl-card { flex-basis: 100%; } .sl-news { padding: 0 24px; } .sl-news__nav { width: 46px; height: 46px; } }
@media (prefers-reduced-motion: reduce) { .sl-news__track, .sl-card, .sl-news__nav, .sl-news__all { transition: none; } }

/* Grid mode (News listing page): show every post, no slider/arrows. */
.sl-news--grid .sl-news__slider { position: static; }
.sl-news--grid .sl-news__viewport { overflow: visible; padding: 0; margin: 0; }
.sl-news--grid .sl-news__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; transform: none !important; transition: none; will-change: auto; }
.sl-news--grid .sl-card { flex: none; }
.sl-news--grid .sl-news__nav { display: none; }
@media (max-width: 1100px) { .sl-news--grid .sl-news__track { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .sl-news--grid .sl-news__track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .sl-news--grid .sl-news__track { grid-template-columns: 1fr; } }

/* ===== 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); }

/* Newsletter band (matches brand footer campaign) */
.footer-newsletter { position: relative; overflow: hidden; padding: 76px 0 68px; }
.footer-newsletter__inner { position: relative; z-index: 2; max-width: 720px; margin-left: 0; margin-right: auto; }
.footer-newsletter__title { color: #fff; font-weight: 800; font-size: clamp(38px, 4.4vw, 60px); line-height: 1.06; letter-spacing: -1px; margin: 0 0 40px; max-width: 13ch; }
.footer-newsletter__sub { color: #fff; font-weight: 700; font-size: clamp(20px, 2vw, 26px); margin: 0 0 22px; }
.footer-nl-form { display: flex; align-items: center; gap: 20px; max-width: 560px; }
.footer-nl-input { flex: 1; min-width: 0; background: transparent; border: 0; border-bottom: 2px solid #fff; color: #fff; font: inherit; font-size: 18px; padding: 10px 2px; outline: none; }
.footer-nl-input::placeholder { color: rgba(255,255,255,.7); }
.footer-nl-send { flex-shrink: 0; background: #fff; color: var(--sl-ink); border: 0; border-radius: var(--sl-r-pill); font-family: inherit; font-weight: 700; font-size: 18px; padding: 15px 42px; cursor: pointer; transition: background .18s ease, color .18s ease; }
.footer-nl-send:hover { background: var(--sl-ink); color: #fff; }
.footer-nl-consent { display: flex; align-items: flex-start; gap: 14px; max-width: 600px; margin: 26px 0 0; color: #fff; font-weight: 600; font-size: 15px; line-height: 1.5; cursor: pointer; }
.footer-nl-consent input { flex-shrink: 0; width: 22px; height: 22px; margin: 2px 0 0; accent-color: #fff; }
.footer-follow { display: flex; align-items: center; gap: 18px; margin-top: 46px; }
.footer-follow__label { color: #fff; font-weight: 700; font-size: 18px; }
.footer-follow__icons { display: flex; gap: 12px; }
.footer-follow__icons a { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #fff; display: flex; align-items: center; justify-content: center; color: #fff; transition: background .18s ease, color .18s ease; }
.footer-follow__icons a:hover { background: #fff; color: var(--sl-red); }
.footer-newsletter__mark { position: absolute; z-index: 1; right: 0; top: 50%; transform: translateY(-50%); width: clamp(300px, 32%, 560px); height: auto; pointer-events: none; user-select: none; }
@media (max-width: 900px) { .footer-newsletter__mark { opacity: .16; width: clamp(220px, 40%, 340px); right: -20px; } }
@media (max-width: 560px) { .footer-nl-form { flex-wrap: wrap; } .footer-nl-send { width: 100%; } }
.footer-nl-thanks { color: #fff; font-weight: 700; font-size: 18px; margin: 0; padding: 14px 0; border-bottom: 2px solid rgba(255,255,255,.5); max-width: 560px; }

.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 40px; padding: 80px 0 48px; }
.footer-brand img { height: 42px; 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: 48px; }
  .container { padding: 0 16px; }
  .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 14px; }
  .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; }
}

/* ===== SINGLE ARTICLE ========================================== */
/* Light inner-page heroes sit under the fixed header, so keep the header
   dark (like its scrolled state) for readable white nav over them. */
body:has(.article-hero) .site-header,
body:has(.page-hero-simple) .site-header,
body:has(.careers-hero) .site-header { background: var(--sl-ink); border-bottom: 1px solid rgba(255,255,255,.10); }

.article-hero { background: var(--sl-canvas-soft); padding: 200px 0 64px; }
.article-hero__label { display: flex; align-items: center; gap: 22px; color: var(--sl-fg-muted);
  font-weight: 700; font-size: 20px; letter-spacing: -.2px; }
.article-hero__line { display: block; width: 64px; height: 1.5px; background: var(--sl-ink);
  margin-left: calc(-64px - 22px); flex: none; }
.article-hero__title { color: var(--sl-red); font-weight: 800; font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.04; letter-spacing: -2px; margin: 26px 0 0; max-width: 20ch; }

.article-feature { width: 100%; }
.article-feature img { display: block; width: 100%; height: auto; }

.article-body { background: var(--sl-canvas-soft); padding: 80px 0 96px; }
.article-body__inner { max-width: 760px; margin: 0 auto; }
.article-body__title { color: var(--sl-ink); font-weight: 700; font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22; letter-spacing: -.6px; margin: 0 0 32px; }
.article-body__inner p { color: var(--sl-fg-muted); font-size: 20px; line-height: 1.72; margin: 0 0 26px; }
.article-body__inner p:first-of-type { color: var(--sl-fg); }
.article-body__inner blockquote { margin: 0 0 26px; font-style: italic; color: var(--sl-fg);
  font-size: 21px; line-height: 1.68; }
.article-body__inner blockquote cite, .article-body__inner .attrib { font-style: normal; color: var(--sl-fg-muted); font-size: 17px; margin-top: 8px; display: block; }
.article-body__inner h2, .article-body__inner h3 { color: var(--sl-ink); letter-spacing: -.4px; margin: 40px 0 16px; }
.article-body__inner img { max-width: 100%; height: auto; border-radius: var(--sl-r-sm); margin: 12px 0 26px; }
.article-body__inner a { color: var(--sl-red); text-decoration: underline; text-underline-offset: 3px; }
.article-body__inner ul, .article-body__inner ol { color: var(--sl-fg-muted); font-size: 20px; line-height: 1.72; margin: 0 0 26px; padding-left: 1.2em; }

/* Other articles carousel */
.other { background: var(--sl-canvas); padding: 84px 0 104px; }
.other__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.other__title { margin: 0; color: var(--sl-red); font-size: clamp(34px, 4vw, 52px); font-weight: 800;
  letter-spacing: -1px; line-height: 1; }
.other__all { flex: none; display: inline-flex; align-items: center; background: var(--sl-red); color: #fff;
  text-decoration: none; font-size: 18px; font-weight: 600; padding: 13px 30px; border-radius: 999px;
  transition: background .18s cubic-bezier(.4,0,.2,1); white-space: nowrap; }
.other__all:hover { background: var(--sl-red-deep); }
.other__slider { position: relative; }
.other__viewport { overflow: hidden; padding: 6px 0 28px; margin: -6px 0 -28px; }
.other__track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.oc-card { flex: 0 0 calc((100% - 72px) / 4); min-width: 0; background: #fff; border-radius: 14px;
  overflow: hidden; box-shadow: 0 1px 2px rgba(28,34,38,.06), 0 8px 24px rgba(28,34,38,.06);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: box-shadow .2s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1); }
.oc-card:hover { box-shadow: 0 2px 4px rgba(28,34,38,.08), 0 18px 40px rgba(28,34,38,.14); transform: translateY(-2px); }
.oc-card__media { aspect-ratio: 1 / .74; background: #cfd4d8 center/cover no-repeat; margin: 10px 10px 0; border-radius: 10px; }
.oc-card__body { padding: 22px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.oc-card__cat { color: var(--sl-red); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.oc-card__title { color: var(--sl-ink-soft); font-size: 22px; font-weight: 700; line-height: 1.22;
  letter-spacing: -.2px; margin: 0 0 22px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.oc-card__date { margin-top: auto; color: var(--sl-fg-muted); font-size: 16px; font-weight: 400; }
.other__nav { position: absolute; top: 130px; transform: translateY(-50%); width: 54px; height: 54px;
  border: none; cursor: pointer; border-radius: 50%; background: var(--sl-red); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(233,34,51,.35);
  transition: background .18s cubic-bezier(.4,0,.2,1); z-index: 5; }
.other__nav:hover { background: var(--sl-red-deep); }
.other__nav svg { width: 22px; height: 22px; }
.other__nav--prev { left: -20px; }
.other__nav--next { right: -20px; }

@media (max-width: 1100px) { .oc-card { flex-basis: calc((100% - 48px) / 3); } }
@media (max-width: 760px) {
  .article-hero { padding: 140px 0 48px; }
  .article-hero__line { width: 32px; margin-left: 0; }
  .article-body { padding: 56px 0 64px; }
  .article-body__inner p { font-size: 18px; }
  .oc-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 520px) {
  .oc-card { flex-basis: 100%; }
  .other__all { padding: 11px 22px; font-size: 16px; }
}


/* ===== COLOPHON BAR (below footer) ============================== */
.site-colophon { background: #fff; }
.site-colophon__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; flex-wrap: wrap; }
.site-colophon__left { color: var(--sl-fg-muted); font-size: 14px; font-weight: 500; }
.site-colophon__left a { color: var(--sl-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; transition: color .18s ease; }
.site-colophon__left a:hover { color: var(--sl-red); }
.site-colophon__right { color: var(--sl-fg-muted); font-size: 14px; font-weight: 500; text-decoration: underline; text-underline-offset: 4px; transition: color .18s ease; }
.site-colophon__right:hover { color: var(--sl-ink); }

/* ===== NEWS LISTING (featured post + card grid) ================= */
.news-list-section { background: var(--sl-canvas-soft); padding: 48px 0 104px; }
/* When the listing is the FIRST section on the page (no hero above it),
   clear the fixed header. */
main > .news-list-section:first-child,
.site-main > .news-list-section:first-child { padding-top: 170px; }
@media (max-width: 760px) {
  main > .news-list-section:first-child,
  .site-main > .news-list-section:first-child { padding-top: 130px; }
}

.nw-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nw-meta__date { color: var(--sl-fg-muted); font-size: 17px; }
.nw-more { display: inline-flex; align-items: center; gap: 14px; color: var(--sl-ink); text-decoration: none; }
.nw-more__label { font-size: 19px; font-weight: 500; color: var(--sl-ink-soft); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.nw-more__circle { width: 36px; height: 36px; flex: none; border-radius: var(--sl-r-full); background: var(--sl-red); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .18s ease; }
.nw-more__circle i, .nw-more__circle svg { width: 18px; height: 18px; }
a:hover .nw-more__circle, .nw-more:hover .nw-more__circle { background: var(--sl-red-deep); }

/* featured (latest) post */
.nw-featured { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; margin-bottom: 72px; }
.nw-featured__side { display: flex; flex-direction: column; justify-content: flex-end; gap: 30px; }
.nw-featured__cat { color: var(--sl-red); font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.nw-featured__title { color: var(--sl-ink-soft); font-size: clamp(26px, 2.6vw, 40px); font-weight: 700; line-height: 1.18; letter-spacing: -.8px; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nw-featured__title a { color: inherit; text-decoration: none; }
.nw-featured__title a:hover { color: var(--sl-red); }
.nw-featured__media { display: block; position: relative; aspect-ratio: 2.35 / 1; border-radius: var(--sl-r-sm); overflow: hidden; background: var(--sl-ink) center/cover no-repeat; }

/* card grid */
.nw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; row-gap: 72px; }
.nw-card { display: flex; flex-direction: column; text-decoration: none; }
.nw-card:hover { color: inherit; }
.nw-card__media { aspect-ratio: 4 / 3; border-radius: var(--sl-r-sm); overflow: hidden; background: var(--sl-canvas-line) center/cover no-repeat; margin-bottom: 26px; transition: opacity .25s ease; }
.nw-card:hover .nw-card__media { opacity: .92; }
.nw-card__cat { color: var(--sl-red); font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.nw-card__title { color: var(--sl-ink-soft); font-size: 26px; font-weight: 700; line-height: 1.25; letter-spacing: -.4px; margin: 0 0 28px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nw-card .nw-meta { margin-top: auto; }

@media (max-width: 980px) {
  .nw-featured { grid-template-columns: 1fr; gap: 24px; }
  .nw-featured__side { order: 2; }
  .nw-grid { grid-template-columns: 1fr; row-gap: 56px; }
  .nw-card__title { font-size: 23px; }
}

/* ===== SHORTCODE SECTION (contained, never full-bleed) ========== */
.sl-shortcode-section .container > * { max-width: 100%; }
.sl-shortcode-section--none { padding: 0; }

/* ===== SPLIT TEXT (big title left / body right) ================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split__title { color: var(--sl-red); font-weight: 800; font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -2px; margin: 0; }
.split__body { margin-top: 100px; }
.split__body p { color: var(--sl-fg-muted); font-size: var(--sl-body-lg-size); line-height: 1.62; margin: 0 0 26px; }
.split__body p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split__title { letter-spacing: -1px; }
  .split__body { margin-top: 0; }
}

/* ===== NAV SUBMENUS (desktop dropdown) ========================== */
.site-nav__item { position: relative; display: flex; align-items: center; }
.site-nav__item > a { display: inline-flex; align-items: center; }
.site-nav__caret { width: 15px; height: 15px; margin-left: 5px; opacity: .75; transition: transform .2s ease; }
.site-nav__item:hover .site-nav__caret,
.site-nav__item:focus-within .site-nav__caret { transform: rotate(180deg); }
.site-subnav {
  position: absolute; top: 100%; left: -14px; min-width: 210px;
  background: var(--sl-ink); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--sl-r-md); padding: 8px; margin-top: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 60;
}
.site-subnav::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.site-nav__item:hover .site-subnav,
.site-nav__item:focus-within .site-subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.site-subnav a { color: rgba(255,255,255,.74); font-size: 14px; font-weight: 500;
  padding: 9px 14px; border-radius: 8px; white-space: nowrap; }
.site-subnav a::after { display: none; }
.site-subnav a:hover, .site-subnav a.is-active { color: #fff; background: rgba(255,255,255,.09); }

/* Mobile drawer submenus */
.m-sublinks { display: flex; flex-direction: column; padding: 4px 0 10px 44px; }
.m-sublink { color: rgba(255,255,255,.6); font-size: 17px; font-weight: 500; padding: 9px 0;
  text-decoration: none; transition: color .15s ease; }
.m-sublink:hover, .m-sublink.is-active { color: #fff; }
