
:root{
  --navy:#082d43;
  --navy-mid:#0e415a;
  --burgundy:#7a1f23;
  --charcoal:#1e2328;
  --gray:#65717b;
  --light:#f5f6f7;
  --border:#d9dfe2;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--charcoal);
  background:#fff;
  line-height:1.55;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}

/* APPROVED HEADER */
header{
  background:#fff;
  border-bottom:1px solid #e2e5e7;
}
.navbar{
  max-width:1180px;
  min-height:176px;
  margin:0 auto;
  padding:16px 24px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
}
.brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  flex:0 0 auto;
}
.brand img{
  width:365px;
  height:auto;
  object-fit:contain;
}
.brand-since{
  width:365px;
  margin-top:4px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  color:var(--burgundy);
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}
.brand-since:before,.brand-since:after{
  content:"";
  height:1px;
  width:42px;
  background:var(--burgundy);
}
nav{
  display:flex;
  align-items:center;
  gap:34px;
  white-space:nowrap;
}
nav a{
  color:#0b2535;
  font-size:14px;
  font-weight:600;
}
nav a:hover{color:var(--burgundy)}

/* APPROVED HERO: 48/52 split */
.hero{background:var(--navy);color:#fff}
.hero-grid{
  width:100%;
  min-height:378px;
  display:grid;
  grid-template-columns:48% 52%;
}
.hero-copy{
  padding:44px 54px 42px max(48px,calc((100vw - 1180px)/2 + 24px));
  background:
    radial-gradient(circle at 18% 44%,rgba(255,255,255,.035),transparent 38%),
    linear-gradient(135deg,#082d43,#0c4059);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-copy h1{
  margin:0 0 24px;
  color:#fff;
  font-size:48px;
  line-height:1.08;
  letter-spacing:-.8px;
  max-width:540px;
}
.hero-copy p{
  margin:0 0 16px;
  color:#fff;
  font-size:16px;
  line-height:1.7;
  max-width:530px;
}
.hero-copy .eyebrow{
  color:#f4dddd;
  margin-bottom:8px;
}
.hero-visual{
  min-height:378px;
  background:#12394b;
  overflow:hidden;
}
.hero-visual img{
  width:100%;
  height:100%;
  min-height:378px;
  object-fit:cover;
  object-position:center center;
}
.btn{
  display:inline-block;
  margin-top:8px;
  padding:13px 20px;
  background:#b32622;
  color:#fff;
  font-size:13px;
  font-weight:700;
  border-radius:2px;
}
.btn.alt{
  background:#fff;
  color:#a32320;
  border:1px solid #b32622;
}

/* VALUE STRIP */
.value-section{background:#fff}
.value-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.value{
  position:relative;
  padding:29px 24px 28px;
  text-align:center;
}
.value:not(:last-child):after{
  content:"";
  position:absolute;
  right:0;top:24%;
  width:1px;height:55%;
  background:#dfe3e5;
}
.value h3{
  margin:0 0 8px;
  color:#092c43;
  font-size:13px;
  text-transform:uppercase;
}
.value p{
  margin:0 auto;
  color:#4f5b63;
  font-size:12px;
  line-height:1.55;
  max-width:215px;
}

/* APPROVED MAIN SECTION */
.section{padding:64px 24px}
.section.light{background:#f5f6f7}
.container{max-width:1180px;margin:0 auto}
.split{
  display:grid;
  grid-template-columns:minmax(0,42fr) minmax(0,58fr);
  gap:48px;
  align-items:center;
}
h1,h2,h3{color:#092c43;line-height:1.18}
h1{font-size:44px}
h2{font-size:32px;margin:0 0 17px}
h3{font-size:20px}
.eyebrow{
  color:#a42320;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.lead{
  color:#283944;
  font-size:15px;
  line-height:1.6;
  font-weight:600;
  max-width:860px;
}

/* APPROVED LOGISTICS MOSAIC */
.logistics-collage{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:6px;
}
.logistics-collage figure{
  margin:0;
  overflow:hidden;
  background:#e9edef;
}
.logistics-collage .ship{
  grid-column:1/-1;
  height:181px;
}
.logistics-collage .small{
  height:171px;
}
.logistics-collage img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* MATERIALS */
.materials{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
}
.material{
  position:relative;
  padding:22px 18px 16px;
  text-align:center;
}
.material:not(:last-child):after{
  content:"";
  position:absolute;
  right:0;top:25%;
  width:1px;height:56%;
  background:#d9dee1;
}
.material h3{
  margin:0 0 6px;
  color:#092c43;
  font-size:13px;
  text-transform:uppercase;
}
.material p{
  margin:0;
  color:#4f5b63;
  font-size:12px;
  line-height:1.5;
}

/* INNER PAGES */
.page-title{
  padding:54px 24px;
  background:#f5f6f7;
  border-bottom:1px solid #dde3e6;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  border:1px solid var(--border);
  background:#fff;
  padding:26px;
  border-radius:5px;
}
.check-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:9px 24px;
  padding:0;
  list-style:none;
}
.check-list li:before{
  content:"✓";
  color:var(--burgundy);
  font-weight:bold;
  margin-right:8px;
}

/* APPROVED FOOTER */
footer{
  background:#072b41;
  color:#eef3f5;
  padding:34px 24px 19px;
}
.footer-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1.1fr .72fr .9fr;
  gap:36px;
}
.footer-brand img{
  width:255px;
  height:auto;
  background:#fff;
  padding:7px 8px;
}
footer h3{
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
}
footer p,footer a{
  color:#eef3f5;
  font-size:12px;
}
.since-badge{
  display:inline-block;
  margin-top:6px;
  border:1px solid #fff;
  padding:6px 13px;
  border-radius:4px;
}
.footer-bottom{
  max-width:1180px;
  margin:22px auto 0;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.16);
  color:#c2cfd5;
  font-size:11px;
}

/* RESPONSIVE WITHOUT ALTERING DESKTOP APPROVED GEOMETRY */
@media(max-width:960px){
  .navbar{
    min-height:auto;
    flex-direction:column;
    align-items:flex-start;
    padding-top:18px;
    padding-bottom:18px;
  }
  .brand img,.brand-since{width:330px}
  nav{gap:20px;flex-wrap:wrap}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{padding:50px 30px}
  .hero-visual,.hero-visual img{min-height:320px}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .brand img,.brand-since{width:min(330px,90vw)}
  .hero-copy h1{font-size:39px}
  .value-grid{grid-template-columns:1fr 1fr}
  .value:nth-child(2):after{display:none}
  .materials{grid-template-columns:1fr 1fr}
  .logistics-collage{grid-template-columns:1fr}
  .logistics-collage .ship{grid-column:auto;height:auto;aspect-ratio:1.8/1}
  .logistics-collage .small{height:auto;aspect-ratio:1.55/1}
  .card-grid,.check-list,.footer-grid{grid-template-columns:1fr}
}

/* v3.6 ADDITIVE ONLY: HOW WE WORK */
.process-section{
  background:#f5f6f7;
  border-top:1px solid #e0e5e7;
}
.process-header{
  max-width:820px;
  margin:0 auto 34px;
  text-align:center;
}
.process-header h2{
  margin-bottom:10px;
}
.process-header p{
  margin:0 auto;
  color:#4f5b63;
  font-size:16px;
  line-height:1.65;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}
.process-step{
  position:relative;
  min-width:0;
  padding:24px 19px 22px;
  background:#fff;
  border:1px solid #d9dfe2;
  border-top:3px solid #7a1f23;
}
.step-number{
  display:block;
  margin-bottom:11px;
  color:#7a1f23;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.2px;
}
.process-step h3{
  margin:0 0 9px;
  color:#092c43;
  font-size:17px;
}
.process-step p{
  margin:0;
  color:#4f5b63;
  font-size:13px;
  line-height:1.58;
}
.process-note{
  max-width:900px;
  margin:30px auto 0;
  padding:20px 24px;
  background:#fff;
  border-left:3px solid #7a1f23;
  color:#34444e;
  font-size:14px;
  line-height:1.65;
}
.process-cta{
  margin-top:24px;
  text-align:center;
}
@media(max-width:1050px){
  .process-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .process-step:last-child{
    grid-column:1/-1;
  }
}
@media(max-width:640px){
  .process-grid{
    grid-template-columns:1fr;
  }
  .process-step:last-child{
    grid-column:auto;
  }
  .process-header{
    text-align:left;
  }
  .process-note{
    margin-top:22px;
  }
}


/* v3.7 additive: regional flags */
.global-card-grid{grid-template-columns:repeat(2,1fr)}
.region-card h3{display:flex;align-items:center;gap:9px;margin:0 0 10px;line-height:1}
.flag-icon{width:24px;height:16px;flex:0 0 24px;object-fit:contain;align-self:center;border:1px solid #cfd6da;border-radius:2px;box-shadow:0 0 0 1px rgba(255,255,255,.6) inset}
@media(max-width:640px){
  .global-card-grid{grid-template-columns:1fr}
}


/* v3.8 additive: final inner-page banners, active navigation, capability statement CTA */
nav a.active{color:var(--burgundy);position:relative}
nav a.active:after{content:"";position:absolute;left:0;right:0;bottom:-8px;height:2px;background:var(--burgundy)}
.page-title.banner{position:relative;padding:78px 24px 84px;background-size:cover;background-position:center center;border-bottom:none;overflow:hidden}
.page-title.banner:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,0))}
.page-title.banner .container{position:relative;z-index:1}
.page-title.banner h1{margin:0 0 14px;color:#fff;font-size:52px;letter-spacing:-.8px;text-shadow:0 1px 2px rgba(0,0,0,.18)}
.page-title.banner .lead{color:rgba(255,255,255,.95);font-size:17px;line-height:1.68;max-width:760px}
.page-title.banner .eyebrow{color:#f6dfdf;margin-bottom:10px;letter-spacing:1px}
.about-banner{background-image:linear-gradient(90deg,rgba(122,31,35,.82) 0%,rgba(122,31,35,.62) 43%,rgba(8,45,67,.20) 100%),url('assets/about-banner.png')}
.services-banner{background-image:linear-gradient(90deg,rgba(8,45,67,.88) 0%,rgba(8,45,67,.72) 46%,rgba(8,45,67,.22) 100%),url('assets/services-banner.png');background-position:center center}
.global-banner{background-image:linear-gradient(90deg,rgba(8,45,67,.86) 0%,rgba(8,45,67,.67) 48%,rgba(8,45,67,.26) 100%),url('assets/global-banner.png');background-position:center center}
.contact-banner{background-image:linear-gradient(90deg,rgba(8,45,67,.88) 0%,rgba(8,45,67,.72) 46%,rgba(8,45,67,.24) 100%),url('assets/contact-banner.png');background-position:center center}
.resource-panel{margin-top:28px;padding:22px 24px;border:1px solid #d9dfe2;border-left:4px solid #7a1f23;background:#fff;box-shadow:0 8px 22px rgba(8,45,67,.05)}
.resource-panel h3{margin:0 0 10px;font-size:21px}
.resource-panel p{margin:0 0 14px;color:#4f5b63;font-size:14px;line-height:1.65}
.resource-actions{display:flex;gap:12px;flex-wrap:wrap}
@media(max-width:960px){.page-title.banner{padding:62px 24px 68px}.page-title.banner h1{font-size:43px}}
@media(max-width:640px){nav a.active:after{bottom:-5px}.page-title.banner{padding:50px 22px 56px}.page-title.banner h1{font-size:35px}.page-title.banner .lead{font-size:15px}.resource-panel{padding:18px}}


/* v3.14 ADDITIVE ONLY: LANGUAGE SELECTOR */
.language-bar{
  background:#f6f7f7;
  border-bottom:1px solid #e2e5e7;
}
.language-bar-inner{
  max-width:1180px;
  margin:0 auto;
  padding:7px 24px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:5px;
  white-space:nowrap;
}
.language-bar a{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:3px 8px;
  border-radius:3px;
  color:#53636d;
  font-size:11px;
  font-weight:700;
  letter-spacing:.15px;
}
.language-bar a:hover{
  color:var(--burgundy);
  background:#fff;
}
.language-bar a.active{
  color:var(--burgundy);
  background:#fff;
  box-shadow:inset 0 0 0 1px #d9dfe2;
}
.language-separator{
  width:1px;
  height:14px;
  background:#d2d9dd;
}
@media(max-width:640px){
  .language-bar-inner{
    justify-content:center;
    padding:6px 10px;
    gap:2px;
  }
  .language-bar a{
    padding:3px 6px;
    font-size:10.5px;
  }
}
