/* ============================================================
   OCEANSTAR LOGISTICS — Design System
   Palette derived from brand logo: warm amber → deep navy → teal
   Display: Anton (bold condensed)  |  Body: Hanken Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --navy-950: #06182b;
  --navy-900: #0a2540;
  --navy-850: #0c2c4d;
  --navy-800: #103257;
  --navy-700: #16406b;
  --navy-600: #1d4f81;
  --teal-600: #1490a6;
  --teal-500: #1aa6be;
  --teal-400: #33c0d6;
  --teal-300: #6ad8e6;
  --amber-600: #dd7a2c;
  --amber-500: #ef9a3c;
  --amber-400: #f6b860;
  --cream: #f7f4ef;
  --cream-200: #efe8dd;
  --cream-300: #e4dccd;
  --ink: #0a1722;
  --muted: #5f7184;
  --muted-light: #9fb0bf;
  --white: #ffffff;

  --brand-gradient: linear-gradient(102deg, var(--amber-500) 0%, var(--amber-600) 16%, var(--navy-800) 52%, var(--teal-600) 84%, var(--teal-400) 100%);
  --brand-gradient-bright: linear-gradient(96deg, var(--amber-400) 0%, var(--amber-500) 38%, var(--teal-400) 100%);
  --brand-gradient-soft: linear-gradient(102deg, #f7c489 0%, #caa9a0 40%, #7fb4c6 70%, #9fdce8 100%);

  --font-display: 'Anton', -apple-system, sans-serif;
  --font-body: 'Hanken Grotesk', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(8, 30, 52, .08);
  --shadow-md: 0 14px 40px rgba(8, 30, 52, .14);
  --shadow-lg: 0 34px 80px rgba(6, 24, 43, .30);

  --maxw: 1280px;
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---- Typographic helpers ---- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .82rem;
}

.gradient-text {
  background: var(--brand-gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.amber {
  color: var(--amber-500)
}

.teal {
  color: var(--teal-400)
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 244, 239, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-300);
}

.nav.nav--dark {
  background: rgba(8, 28, 49, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand img {
  height: 52px;
  width: auto
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--navy-900);
}

.nav--dark .brand__name {
  color: #fff
}

.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .52rem;
  letter-spacing: .42em;
  color: var(--teal-600);
  margin-top: 3px
}

.nav--dark .brand__name small {
  color: var(--teal-300)
}

/* roomier spacing between nav items */
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap
}

.nav__links>a:not(.nav__btn):not(.btn) {
  font-weight: 700;
  font-size: 1.02rem;
  padding: 6px 2px;
  border-radius: 8px;
  color: var(--navy-800);
  transition: .18s;
  position: relative;
}

.nav--dark .nav__links>a:not(.nav__btn):not(.btn) {
  color: #cfe0ec
}

.nav__links>a:not(.nav__btn):not(.btn):hover {
  color: var(--teal-600)
}

.nav--dark .nav__links>a:not(.nav__btn):not(.btn):hover {
  color: #fff
}

.nav__links>a.active:not(.nav__btn):not(.btn) {
  color: #bd5f17
}

.nav__links>a.active:not(.nav__btn):not(.btn):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--amber-500)
}

.nav--dark .nav__links>a.active:not(.nav__btn):not(.btn) {
  color: var(--amber-400)
}

/* Contact styled as a button */
.nav__btn {
  font-weight: 800;
  font-size: .98rem;
  padding: 11px 24px;
  border-radius: 999px;
  border: 2px solid var(--navy-800);
  color: var(--navy-900);
  transition: .2s;
}

.nav__btn:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-1px)
}

.nav__btn.active {
  background: var(--navy-900);
  color: #fff
}

.nav--dark .nav__btn {
  border-color: rgba(255, 255, 255, .4);
  color: #fff
}

.nav--dark .nav__btn:hover {
  background: #fff;
  color: var(--navy-900)
}

.nav__burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 6px
}

.nav__burger span {
  width: 26px;
  height: 3px;
  background: var(--navy-900);
  border-radius: 3px
}

.nav--dark .nav__burger span {
  background: #fff
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s;
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn--primary {
  background: var(--amber-500);
  color: var(--navy-950);
  box-shadow: 0 10px 26px rgba(239, 154, 60, .36)
}

.btn--primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px)
}

.nav__links .btn--primary.active {
  background: var(--amber-500);
  color: #000;
  box-shadow: 0 8px 22px rgba(239, 154, 60, .36)
}

.nav--dark .nav__links .btn--primary.active {
  background: var(--amber-500);
  color: #000
}

.btn--teal {
  background: var(--teal-500);
  color: #03212a;
  box-shadow: 0 10px 26px rgba(26, 166, 190, .34)
}

.btn--teal:hover {
  background: var(--teal-400);
  transform: translateY(-2px)
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: #fff
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08)
}

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

.btn--dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px)
}

.btn--lg {
  font-size: 1.1rem;
  padding: 18px 34px
}

/* ---- Cert badges ---- */
.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.cert {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  color: #eaf3f7;
}

.cert--light {
  background: #fff;
  border: 1px solid var(--cream-300);
  color: var(--navy-800);
  box-shadow: var(--shadow-sm)
}

.cert__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(51, 192, 214, .22)
}

.cert--light .cert__dot {
  background: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(239, 154, 60, .2)
}

/* ---- Stat band ---- */
.statband {
  background: var(--navy-900);
  color: #fff
}

.statband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat {
  padding: 40px 28px;
  border-right: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  gap: 16px
}

.stat:last-child {
  border-right: 0
}

.stat__num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  flex: none;
  background: var(--brand-gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.stat__label {
  margin-top: 0;
  color: var(--muted-light);
  font-weight: 600;
  font-size: .96rem;
  line-height: 1.3
}

/* ---- Section ---- */
.section {
  padding: 96px 0
}

.section--cream {
  background: var(--cream)
}

.section--white {
  background: #fff
}

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

.section__head {
  max-width: 760px;
  margin-bottom: 56px
}

.section__head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.section__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .98;
  color: var(--navy-900)
}

.section--navy .section__title {
  color: #fff
}

.section__lead {
  margin-top: 22px;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6
}

.section--navy .section__lead {
  color: #b6c8d6
}

/* ---- Cards ---- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-300);
  overflow: hidden
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-950);
  color: #c7d6e2;
  padding: 72px 0 32px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--teal-300);
  margin: 0 0 18px
}

.footer a {
  display: block;
  padding: 6px 0;
  color: #9fb4c4;
  font-weight: 500;
  font-size: 1.02rem
}

.footer a:hover {
  color: #fff
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px
}

.footer__brand img {
  height: 46px
}

.footer__brand .brand__name {
  color: #fff;
  font-size: 1.3rem
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .88rem;
  color: #7e93a4
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:980px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .statband__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, .09)
  }

  .stat:nth-child(2) {
    border-right: 0
  }
}

/* Collapse to hamburger early so the full nav never crowds the brand */
@media(max-width:1024px) {
  .nav__links {
    display: none
  }

  .nav__burger {
    display: flex
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: 18px;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  /* high specificity so menu links read white over the navy panel regardless of nav theme */
  .nav .nav__links.open>a:not(.nav__btn):not(.btn) {
    color: #fff;
    font-size: 1.15rem;
    padding: 13px 14px;
    text-align: left;
    border-radius: 10px;
    transition: .15s
  }

  .nav .nav__links.open>a:not(.nav__btn):not(.btn):hover {
    color: var(--amber-400);
    background: rgba(255, 255, 255, .06)
  }

  .nav .nav__links.open>a.active:not(.nav__btn):not(.btn) {
    color: var(--amber-400)
  }

  .nav .nav__links.open>a.active:not(.nav__btn):not(.btn):after {
    display: none
  }

  .nav__links.open .nav__btn,
  .nav__links.open .btn {
    text-align: center;
    justify-content: center
  }

  .nav .nav__links.open .nav__btn {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    background: transparent;
    margin-top: 4px
  }

  .nav .nav__links.open .nav__btn:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--navy-950)
  }
}

@media(max-width:860px) {
  body {
    font-size: 17px
  }

  .section {
    padding: 64px 0
  }

  .container {
    padding: 0 22px
  }
}

@media(max-width:560px) {
  .statband__grid {
    grid-template-columns: 1fr
  }

  .stat {
    border-right: 0
  }

  .footer__grid {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   HERO (home — Cold Clean direction)
   ============================================================ */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 192, 214, .18), transparent 68%)
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 32px 90px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  position: relative
}

.hero__copy h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(3rem, 5.6vw, 5rem);
  line-height: .92;
  color: var(--navy-900);
  margin: 18px 0 0
}

.hero__copy h1 .u {
  position: relative;
  white-space: nowrap;
  background: linear-gradient(transparent 60%, var(--amber-400) 60%, var(--amber-400) 90%, transparent 90%);
  padding: 0 .06em
}

.hero__copy h1 .u:after {
  content: none
}

.hero__copy p {
  font-size: 1.26rem;
  color: var(--muted);
  max-width: 530px;
  margin: 24px 0 34px;
  line-height: 1.55
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero__chips {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap
}

.hero__chip {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 9px
}

.hero__chip svg {
  width: 18px;
  height: 18px
}

/* collage media */
.hero__media {
  position: relative;
  height: 560px
}

.hero__img-main {
  position: absolute;
  inset: 0 0 0 22%;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg)
}

.hero__img-inset {
  position: absolute;
  left: -8px;
  bottom: 54px;
  width: 236px;
  height: 286px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 7px solid var(--cream);
  box-shadow: var(--shadow-md)
}

.hero__badge {
  position: absolute;
  right: -12px;
  top: 34px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 3
}

.hero__badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--teal-300);
  line-height: .9
}

.hero__badge span {
  font-size: .62rem;
  letter-spacing: .2em;
  font-weight: 800;
  color: #9fb4c4
}

.hero__stat {
  position: absolute;
  right: 18px;
  bottom: -22px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3
}

.hero__stat b {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy-900);
  line-height: .85
}

.hero__stat span {
  font-weight: 700;
  font-size: .84rem;
  color: var(--muted);
  max-width: 130px;
  line-height: 1.25
}

/* ============================================================
   FEATURE / CORE CARDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px
}

.fcard {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: .22s;
  position: relative;
  overflow: hidden
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300)
}

.fcard__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gradient-bright);
  margin-bottom: 24px
}

.fcard__ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  margin-bottom: 24px
}

.fcard__ico svg {
  width: 30px;
  height: 30px;
  stroke: var(--teal-300)
}

.fcard h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin: 0 0 14px;
  line-height: 1.06
}

.fcard p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.55
}

.fcard__tag {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  color: var(--teal-600);
  font-size: .92rem
}

/* ============================================================
   PRODUCT GALLERY
   ============================================================ */
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.pcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  background: var(--navy-900)
}

.pcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.pcard:hover img {
  transform: scale(1.06)
}

.pcard__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(6, 24, 43, .86))
}

.pcard__cap h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1
}

.pcard__cap span {
  font-size: .86rem;
  color: #bcd0df;
  font-weight: 600;
  display: block;
  padding-top: 10px;
  line-height: 1;
}

/* ============================================================
   HALAL / CERT STRIP
   ============================================================ */
.haloband {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center
}

.haloband__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px
}

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

.certgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px
}

.certitem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm)
}

.certitem__ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(26, 166, 190, .12);
  display: flex;
  align-items: center;
  justify-content: center
}

.certitem__ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal-600)
}

.certitem b {
  display: block;
  color: var(--navy-900);
  font-size: 1.02rem
}

.certitem span {
  color: var(--muted);
  font-size: .92rem
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden
}

.phero:after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 154, 60, .22), transparent 66%)
}

.phero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 32px 88px;
  position: relative;
  z-index: 2
}

.phero__crumb {
  font-weight: 700;
  color: #8aa6bb;
  font-size: .95rem;
  margin-bottom: 18px;
  letter-spacing: .02em
}

.phero__crumb a:hover {
  color: #fff
}

.phero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  margin: 0;
  max-width: 15ch;
  padding-bottom: .08em
}

.phero h1 .hl {
  color: var(--amber-500)
}

.phero p {
  font-size: 1.24rem;
  color: #b6c8d6;
  max-width: 600px;
  margin: 22px 0 0;
  line-height: 1.55
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step
}

.step {
  position: relative;
  padding-top: 30px
}

.step:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--cream-300);
  line-height: .8;
  display: block;
  margin-bottom: 14px
}

.step h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 0 0 10px
}

.step p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5
}

.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 18px;
  left: 64px;
  right: -12px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--cream-300) 0 8px, transparent 8px 16px)
}

/* ============================================================
   SPLIT INFO (about)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px
}

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

.infolist {
  list-style: none;
  margin: 26px 0 0;
  padding: 0
}

.infolist li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-300)
}

.infolist li:last-child {
  border-bottom: 0
}

.infolist__k {
  flex: none;
  width: 180px;
  font-weight: 800;
  color: var(--navy-900);
  font-size: .96rem
}

.infolist__v {
  color: var(--muted);
  font-size: 1.02rem
}

.checklist {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--navy-850);
  font-size: 1.04rem
}

.checklist svg {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 1px
}

/* checklist on a navy section needs light text */
.section--navy .checklist li {
  color: #eaf3f7
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  background: var(--navy-900);
  color: #fff;
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden
}

.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-gradient);
  opacity: .13
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.cta h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: 0;
  max-width: 16ch
}

.cta p {
  color: #b6c8d6;
  font-size: 1.16rem;
  margin: 20px 0 0;
  max-width: 46ch
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start
}

.infocard {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px
}

.infocard__ico {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center
}

.infocard__ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal-300)
}

.infocard h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin: 0 0 7px
}

.infocard p {
  margin: 0;
  color: var(--navy-850);
  font-size: 1.06rem;
  line-height: 1.45
}

.infocard a {
  color: var(--navy-850)
}

.infocard a:hover {
  color: var(--amber-600)
}

.form {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-md)
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.field {
  margin-bottom: 20px
}

.field label {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
  font-size: .92rem;
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 14px 16px;
  border: 2px solid var(--cream-300);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: .18s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 166, 190, .13)
}

.field textarea {
  resize: vertical;
  min-height: 130px
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d9534f;
  background: #fff7f6
}

.field__err {
  display: none;
  color: #c0392b;
  font-size: .84rem;
  font-weight: 600;
  margin-top: 6px
}

.field.invalid .field__err {
  display: block
}

.form__ok {
  display: none;
  background: rgba(26, 166, 190, .1);
  border: 1px solid var(--teal-400);
  color: var(--teal-600);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 700;
  margin-bottom: 22px
}

.form__ok.show {
  display: block
}

.form__err-box {
  display: none;
  background: #fff7f6;
  border: 1px solid #e7a9a4;
  color: #c0392b;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  margin-bottom: 22px;
  font-size: .96rem
}

.form__err-box.show {
  display: block
}

.captcha__q {
  display: inline-block;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .02em;
  padding: 3px 12px;
  border-radius: 8px;
  font-size: 1.02rem;
  vertical-align: middle
}

.captcha__reload {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--teal-600);
  font-size: 1.1rem;
  padding: 0 4px;
  vertical-align: middle;
  line-height: 1
}

.captcha__reload:hover {
  color: var(--amber-600)
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.mapwrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-300)
}

.mapframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0
}

/* branch offices */
.fcard__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.fcard__row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--muted);
}

.fcard__row p, 
.fcard__pic-list p {
  font-size: .92rem;
}

.fcard__pic-list {
  border-top: 1px solid #e5e2da;
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcard__pic {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcard__pic svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(26, 166, 190, .12);
  stroke: var(--teal-600);
  flex-shrink: 0;
}

.fcard__row a:hover, 
.fcard__pic-list a:hover {
  color: var(--amber-600);
}

/* ============================================================
   RESPONSIVE — page components
   ============================================================ */
@media(max-width:980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .hero__media {
    height: 460px;
    max-width: 560px
  }

  .grid-3,
  .steps {
    grid-template-columns: 1fr 1fr
  }

  .pgrid {
    grid-template-columns: 1fr 1fr
  }

  .haloband,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .split__media,
  .haloband__img {
    height: 360px
  }

  .step:not(:last-child):after {
    display: none
  }
}

@media(max-width:620px) {

  .grid-3,
  .grid-2,
  .steps,
  .certgrid,
  .checklist,
  .form__row {
    grid-template-columns: 1fr
  }

  .hero__media {
    height: 400px
  }

  .hero__img-inset {
    width: 160px;
    height: 200px
  }

  .cta {
    padding: 44px 30px
  }

  .infolist__k {
    width: 105px
  }

  .form {
    padding: 26px
  }
}

/* ============================================================
   DISPLAY WEIGHT — Anton ships a single 400 weight.
   Heading elements (h1–h4) default to bold, so browsers synthesize
   faux-bold and the type looks too heavy. Force 400 everywhere
   the display face is used so it renders at its true weight.
   ============================================================ */
.section__title,
.hero__copy h1,
.fcard h3,
.fcard__num,
.pcard__cap h4,
.phero h1,
.step h4,
.cta h2,
.brand__name,
.stat__num,
.hero__badge b,
.hero__stat b,
.mapph__pin b,
.footer__brand .brand__name {
  font-weight: 400;
}

/* ============================================================
   MOTION — hero headline reveal + collage drift
   ============================================================ */
@keyframes osLineUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes osInDown {
  from {
    opacity: 0;
    transform: translateY(-26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes osInUp {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes osFloatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes osFloatDown {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(12px)
  }
}

/* main headline — line-by-line fade-up */
.hero__copy h1 .hl-line {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
  animation: osLineUp .85s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero__copy h1 .hl-line:nth-child(1) {
  animation-delay: .12s
}

.hero__copy h1 .hl-line:nth-child(2) {
  animation-delay: .27s
}

.hero__copy h1 .hl-line:nth-child(3) {
  animation-delay: .42s
}

/* right collage — enter from top/bottom, then gently drift */
.hero__img-main {
  will-change: transform, opacity;
  animation: osInDown 1s ease both, osFloatUp 7s ease-in-out 1s infinite
}

.hero__img-inset {
  will-change: transform, opacity;
  animation: osInUp 1s ease .2s both, osFloatDown 6s ease-in-out 1.2s infinite
}

@media(prefers-reduced-motion:reduce) {

  .hero__copy h1 .hl-line,
  .hero__img-main,
  .hero__img-inset {
    animation: none;
    opacity: 1
  }
}

/* ============================================================
   SCROLL REVEAL — headings, media & cards fade up into view.
   The .os-reveal hidden state is added by js/reveal.js, so with
   no JS (or no IntersectionObserver) everything stays visible.
   ============================================================ */
.os-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .75s cubic-bezier(.2, .7, .2, 1)
}

.os-reveal.os-in {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {
  .os-reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* ============================================================
   v2 ADDITIONS — footer text, hero art, halal, org chart,
   industry overview, facility strip
   ============================================================ */

/* footer body text a touch smaller */
.footer p {
  font-size: 1.02rem;
  line-height: 1.6
}

/* inner-page hero — faded facility art merging into the navy */
.phero__art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  opacity: .18;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60%)
}

.phero__art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--navy-900) 8%, rgba(10, 37, 64, .35) 60%, transparent)
}

@media(max-width:760px) {
  .phero__art {
    display: none
  }
}

/* halal certification logo badge */
.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: 18px;
  padding: 16px 24px 16px 16px;
  box-shadow: var(--shadow-sm)
}

.halal-badge__logo {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  background: #fff;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center
}

.halal-badge__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.halal-badge b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: var(--navy-900);
  line-height: 1
}

.halal-badge span {
  color: var(--muted);
  font-size: .96rem;
  font-weight: 600
}

/* circular halal mark for navy sections */
.halal-mark {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 16px
}

.halal-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

/* ORGANISATION CHART */
.orgx {
  --ln: #c4d2de;
  max-width: 1160px;
  margin: 0 auto
}

.orgx__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.orgx__company {
  background: var(--navy-900);
  color: #fff;
  border-radius: 16px;
  padding: 20px 36px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.55rem;
  letter-spacing: .02em;
  line-height: 1
}

.orgx__ceo {
  background: #fff;
  border: 2px solid var(--navy-900);
  border-radius: 14px;
  padding: 16px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm)
}

.orgx__ceo b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1
}

.orgx__ceo span {
  display: block;
  color: var(--teal-600);
  font-weight: 700;
  margin-top: 5px;
  font-size: 1.02rem
}

.orgx__vstub {
  width: 2px;
  height: 28px;
  background: var(--ln);
  margin: 0 auto
}

.orgx__mgrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  padding-top: 30px;
  align-items: start
}

.orgx__col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px
}

/* vertical stub from the bar down into each manager box */
.orgx__col:before {
  content: "";
  position: absolute;
  top: -30px;
  left: calc(50% - 1px);
  width: 2px;
  height: 30px;
  background: var(--ln)
}

/* horizontal bar built from the two outer columns so it lands exactly on each centre (gap-proof) */
.orgx__col:first-child:after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: calc(100% + 26px);
  height: 2px;
  background: var(--ln)
}

.orgx__col:nth-child(3):after {
  content: "";
  position: absolute;
  top: -30px;
  right: 50%;
  width: calc(100% + 26px);
  height: 2px;
  background: var(--ln)
}

.orgx__mgr {
  background: var(--navy-800);
  color: #fff;
  border-radius: 12px;
  padding: 15px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.14rem;
  line-height: 1.06
}

.orgx__mgr span {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  color: var(--teal-300);
  font-size: .94rem;
  margin-top: 5px
}

.orgx__dept {
  background: #fff;
  border: 1px solid var(--cream-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.orgx__dept h4 {
  margin: 0;
  padding: 13px 16px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.04rem;
  color: #fff;
  background: var(--teal-600);
  line-height: 1.12
}

.orgx__dept--amber h4 {
  background: var(--amber-600)
}

.orgx__dept--navy h4 {
  background: var(--navy-700)
}

.orgx__dept ul {
  list-style: none;
  margin: 0;
  padding: 12px 16px
}

.orgx__dept li {
  position: relative;
  padding: 5px 0 5px 19px;
  color: var(--navy-850);
  font-weight: 600;
  font-size: .97rem;
  line-height: 1.35
}

.orgx__dept li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500)
}

.orgx__dept--amber li:before {
  background: var(--amber-500)
}

.orgx__dept--navy li:before {
  background: var(--navy-600)
}

/* short stub from each manager down into its department group */
.orgx__mgr {
  position: relative
}

.orgx__mgr:after {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 100%;
  width: 2px;
  height: 16px;
  background: var(--ln)
}

/* CFO secondary link to Sales & Key Accounts is drawn by js/orgchart.js */
.orgx__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible
}

@media(max-width:820px) {
  .orgx__mgrs {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0
  }

  .orgx__mgrs:before,
  .orgx__col:before {
    display: none
  }

  .orgx__col:first-child:after,
  .orgx__col:nth-child(3):after {
    display: none
  }

  .orgx__mgr:after {
    display: none
  }
}

/* INDUSTRY OVERVIEW */
.market {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center
}

.market__figure {
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 44px 40px;
  color: #fff;
  text-align: center
}

.market__big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 4.4rem;
  line-height: .9;
  background: var(--brand-gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.market__cap {
  color: #b6c8d6;
  font-weight: 600;
  margin-top: 8px
}

.market__growth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(51, 192, 214, .16);
  color: var(--teal-300);
  font-weight: 800;
  font-size: .95rem
}

.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px
}

.drivers {
  list-style: none;
  margin: 16px 0 0;
  padding: 0
}

.drivers li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: var(--navy-850);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4
}

.drivers svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  stroke: var(--amber-500)
}

.subhead {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--navy-900);
  font-size: 1.06rem;
  text-transform: uppercase
}

/* FACILITY STRIP */
.facility {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px
}

.facility figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-300);
  position: relative
}

.facility img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px
}

.facility figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 14px;
  color: #fff;
  font-weight: 700;
  font-size: .94rem;
  background: linear-gradient(transparent, rgba(6, 24, 43, .82))
}

@media(max-width:760px) {

  .market,
  .facility {
    grid-template-columns: 1fr
  }

  .twocol {
    grid-template-columns: 1fr;
    gap: 22px
  }
}

/* ============================================================
   LOGISTICS
   ============================================================ */

@media(min-width:980px) {

  .container>.split--narrow:nth-child(odd) {
    grid-template-columns: 0.5fr 1fr;
  }

  .container>.split--narrow:nth-child(even) {
    grid-template-columns: 1fr 0.5fr;
  }

}

@media(min-width:620px) and (max-width:980px) {

  .split__media.large {
    height: 450px;
  }

}

