
:root{
  --blue:#082f87;
  --blue2:#0b3fbd;
  --orange:#ff7900;
  --navy:#041a4b;
  --ink:#071227;
  --muted:#4e5e77;
  --line:#d9dfe8;
  --soft:#f5f7fa;
  --white:#fff;
  --max:1360px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.4
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.cjm-container{
  width:min(calc(100% - 42px),var(--max));
  margin:0 auto
}

/* exact top orange band */
.cjm-top-strip{
  background:var(--orange);
  color:#fff;
  font-size:12px;
  font-weight:800
}
.cjm-top-strip-inner{
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}
.cjm-top-left{
  display:flex;
  align-items:center;
  gap:24px
}
.cjm-top-right{font-size:11px}

/* exact clean header */
.cjm-header{
  background:#fff;
  border-bottom:1px solid #e2e6ed
}
.cjm-nav{
  height:78px;
  display:grid;
  grid-template-columns:240px 1fr 210px;
  align-items:center;
  gap:22px
}
.cjm-main-logo{
  height:78px;
  display:flex;
  align-items:center
}
.cjm-main-logo img{
  height:64px;
  width:auto;
  max-width:190px;
  object-fit:contain
}
.cjm-nav nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
  font-size:14px;
  font-weight:700
}
.cjm-nav nav a{
  height:78px;
  display:flex;
  align-items:center;
  position:relative
}
.cjm-nav nav a.active:after,
.cjm-nav nav a:hover:after{
  content:"";
  position:absolute;
  bottom:17px;
  height:2px;
  left:0;
  right:0;
  background:var(--blue2)
}
.cjm-header-quote{
  justify-self:end;
  background:var(--blue);
  color:#fff;
  border:1px solid var(--orange);
  min-width:190px;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800
}

/* hero */
.cjm-hero-section{
  background:linear-gradient(120deg,#061e5c 0%,#0a369a 57%,#0c42c2 100%);
  color:#fff;
  overflow:hidden
}
.cjm-hero-layout{
  display:grid;
  grid-template-columns:52% 48%;
  min-height:410px
}
.cjm-hero-copy{
  padding:40px 60px 42px 0;
  display:flex;
  flex-direction:column;
  justify-content:center
}
.cjm-eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-weight:900;
  margin:0 0 14px
}
.cjm-eyebrow:before{
  content:"";
  display:inline-block;
  width:22px;
  height:3px;
  background:var(--orange);
  margin-right:10px;
  vertical-align:middle
}
.cjm-hero-copy h1{
  font-size:55px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0;
  font-weight:800
}
.cjm-hero-copy h1 span{color:var(--orange)}
.cjm-hero-text{
  max-width:560px;
  margin:22px 0 23px;
  color:#e2e9ff;
  font-size:15px
}
.cjm-hero-buttons{
  display:flex;
  gap:16px
}
.cjm-btn-orange,
.cjm-btn-outline{
  min-height:45px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  font-size:13px;
  font-weight:800
}
.cjm-btn-orange{
  background:var(--orange);
  color:#fff
}
.cjm-btn-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.8)
}

/* approved van image is cropped in-browser from the approved reference */
.cjm-hero-photo{
  position:relative;
  overflow:hidden;
  min-height:410px;
  background:#2d3b50
}
.cjm-hero-photo:before{
  content:"";
  position:absolute;
  z-index:3;
  left:-26px;
  top:-30px;
  bottom:-30px;
  width:22px;
  background:var(--orange);
  transform:skewX(-17deg)
}
.cjm-hero-photo img{
  position:absolute;
  width:200%;
  max-width:none;
  height:auto;
  left:-100%;
  top:-15%;
}

/* trust row */
.cjm-trust-row{
  background:#fff;
  border-bottom:1px solid var(--line)
}
.cjm-trust-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr)
}
.cjm-trust-item{
  min-height:106px;
  border-right:1px solid var(--line);
  display:grid;
  grid-template-columns:55px 1fr;
  gap:14px;
  align-items:center;
  padding:18px 20px
}
.cjm-trust-item:first-child{border-left:1px solid var(--line)}
.cjm-line-icon{
  width:48px;height:48px;
  border:2px solid var(--blue);
  color:var(--blue);
  display:grid;
  place-items:center;
  border-radius:12px;
  font-weight:900;
  font-size:18px
}
.cjm-trust-item strong{
  display:block;
  font-size:22px;
  color:var(--blue);
  line-height:1
}
.cjm-trust-item b{
  display:block;
  font-size:13px;
  text-transform:uppercase;
  margin-top:3px
}
.cjm-trust-item p{
  font-size:12px;
  line-height:1.3;
  color:#25334b;
  margin:4px 0 0
}

/* services exact 2 x 3 */
.cjm-services-section{
  padding:26px 0 28px;
  background:#fff
}
.cjm-services-layout{
  display:grid;
  grid-template-columns:30% 70%;
  gap:44px;
  align-items:start
}
.cjm-services-intro{
  padding-top:10px
}
.cjm-services-intro span{
  color:var(--orange);
  font-size:11px;
  text-transform:uppercase;
  font-weight:900
}
.cjm-services-intro h2{
  margin:18px 0 0;
  font-size:29px;
  line-height:1.1;
  max-width:330px;
  letter-spacing:-.025em
}
.cjm-service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px
}
.cjm-service-card{
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px;
  min-height:108px;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:12px;
  background:#fff
}
.cjm-service-number{
  width:58px;
  height:58px;
  background:linear-gradient(145deg,var(--blue2),var(--navy));
  color:#fff;
  border-radius:6px;
  display:grid;
  place-items:center;
  font-size:17px;
  font-weight:900
}
.cjm-service-copy h3{
  margin:0 0 4px;
  font-size:15px;
  line-height:1.1
}
.cjm-service-copy p{
  margin:0 0 4px;
  font-size:11px;
  line-height:1.25;
  color:#2c3950
}
.cjm-service-copy a{
  color:var(--blue2);
  font-size:11px;
  font-weight:900
}

/* footer */
.cjm-footer{
  background:linear-gradient(90deg,#03183e,#062765);
  color:#fff
}
.cjm-footer-main{
  min-height:96px;
  display:grid;
  grid-template-columns:20% 28% 26% 26%;
  align-items:center;
  gap:22px
}
.cjm-footer-brand img{
  height:64px;
  width:auto;
  max-width:175px
}
.cjm-footer h4{
  margin:0 0 5px;
  font-size:14px;
  letter-spacing:.08em
}
.cjm-footer p{
  margin:0;
  color:#dce6ff;
  font-size:12px;
  line-height:1.4
}
.cjm-footer-contact p+p{margin-top:7px}
.cjm-footer-bottom{
  background:#fff;
  color:#50617e;
  font-size:10px
}
.cjm-footer-bottom-inner{
  min-height:27px;
  display:flex;
  align-items:center;
  justify-content:space-between
}
.cjm-footer-bottom-inner div{
  display:flex;
  align-items:center;
  gap:12px
}
.cjm-footer-bottom a{color:var(--blue)}

@media(max-width:980px){
  .cjm-top-strip{display:none}
  .cjm-nav{grid-template-columns:180px 1fr}
  .cjm-nav nav{display:none}
  .cjm-header-quote{justify-self:end}
  .cjm-hero-layout{grid-template-columns:1fr}
  .cjm-hero-copy{padding:45px 0}
  .cjm-hero-photo{min-height:360px}
  .cjm-hero-photo img{width:180%;left:-80%;top:-7%}
  .cjm-trust-grid{grid-template-columns:1fr 1fr}
  .cjm-services-layout{grid-template-columns:1fr}
  .cjm-service-grid{grid-template-columns:1fr 1fr}
  .cjm-footer-main{grid-template-columns:1fr 1fr;padding:25px 0}
}
@media(max-width:620px){
  .cjm-container{width:min(calc(100% - 24px),var(--max))}
  .cjm-nav{height:70px;grid-template-columns:1fr auto}
  .cjm-main-logo,.cjm-nav nav a{height:70px}
  .cjm-main-logo img{height:54px}
  .cjm-header-quote{min-width:auto;padding:0 12px;font-size:11px}
  .cjm-hero-copy h1{font-size:44px}
  .cjm-hero-buttons{flex-direction:column;align-items:flex-start}
  .cjm-hero-photo{min-height:270px}
  .cjm-hero-photo img{width:205%;left:-105%;top:-4%}
  .cjm-trust-grid,.cjm-service-grid,.cjm-footer-main{grid-template-columns:1fr}
  .cjm-footer-bottom-inner{align-items:flex-start;flex-direction:column;padding:8px 0;gap:5px}
}

/* === CJM COMPACT SCALE FIX === */

/*
   Match the approved homepage proportions:
   - smaller header
   - smaller logo
   - shorter hero
   - reduced headline
   - full van visible
   - tighter trust boxes
   - compact uniform service cards
   - more restrained inner pages
*/

.cjm-container {
    width: min(calc(100% - 36px), 1280px);
}


/* TOP BAR */

.cjm-top-strip-inner {
    min-height: 28px;
}

.cjm-top-strip {
    font-size: 11px;
}


/* HEADER */

.cjm-nav {
    height: 68px;
    grid-template-columns: 190px 1fr 190px;
}

.cjm-main-logo {
    height: 68px;
}

.cjm-main-logo img {
    height: 50px;
    max-width: 165px;
}

.cjm-nav nav {
    gap: 40px;
    font-size: 13px;
}

.cjm-nav nav a {
    height: 68px;
}

.cjm-nav nav a.active:after,
.cjm-nav nav a:hover:after {
    bottom: 13px;
}

.cjm-header-quote {
    min-width: 176px;
    min-height: 40px;
    font-size: 12px;
}


/* HERO */

.cjm-hero-layout {
    grid-template-columns: 51% 49%;
    min-height: 365px;
}

.cjm-hero-copy {
    padding: 34px 48px 34px 0;
}

.cjm-eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
}

.cjm-hero-copy h1 {
    font-size: 48px;
    line-height: .96;
    letter-spacing: -.045em;
}

.cjm-hero-text {
    max-width: 510px;
    margin: 18px 0 20px;
    font-size: 13px;
    line-height: 1.45;
}

.cjm-btn-orange,
.cjm-btn-outline {
    min-height: 41px;
    padding: 0 18px;
    font-size: 12px;
}


/* VAN - SHOW THE FULL CROPPED VAN IMAGE */

.cjm-hero-photo {
    min-height: 365px;
    background: #26364d;
}

.cjm-hero-photo img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center center;

    left: auto;
    top: auto;
}

.cjm-hero-photo:before {
    left: -18px;
    width: 18px;
}


/* TRUST BAR */

.cjm-trust-item {
    min-height: 90px;
    grid-template-columns: 44px 1fr;
    gap: 11px;
    padding: 13px 15px;
}

.cjm-line-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
}

.cjm-trust-item strong {
    font-size: 19px;
}

.cjm-trust-item b {
    font-size: 11px;
}

.cjm-trust-item p {
    font-size: 10px;
    margin-top: 2px;
}


/* SERVICES */

.cjm-services-section {
    padding: 22px 0 24px;
}

.cjm-services-layout {
    grid-template-columns: 29% 71%;
    gap: 34px;
}

.cjm-services-intro h2 {
    font-size: 25px;
    max-width: 285px;
    margin-top: 12px;
}

.cjm-services-intro span {
    font-size: 10px;
}

.cjm-service-grid {
    gap: 9px;
}

.cjm-service-card {
    grid-template-columns: 50px 1fr;
    min-height: 96px;
    padding: 10px;
    gap: 10px;
}

.cjm-service-number {
    width: 50px;
    height: 50px;
    font-size: 14px;
}

.cjm-service-copy h3 {
    font-size: 13px;
    margin-bottom: 3px;
}

.cjm-service-copy p {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 3px;
}

.cjm-service-copy a {
    font-size: 10px;
}


/* FOOTER */

.cjm-footer-main {
    min-height: 88px;
}

.cjm-footer-brand img {
    height: 54px;
    max-width: 155px;
}

.cjm-footer h4 {
    font-size: 12px;
}

.cjm-footer p {
    font-size: 10px;
}


/* INNER PAGE SCALE */

.cjm-page-hero {
    padding: 54px 0 50px;
}

.cjm-page-hero h1 {
    font-size: clamp(42px, 4.2vw, 60px);
}

.cjm-page-hero > div > p:last-child {
    font-size: 16px;
    max-width: 680px;
}

.cjm-page-section {
    padding: 56px 0;
}

.cjm-page-service-card {
    min-height: 185px;
    grid-template-columns: 56px 1fr;
    padding: 19px;
}

.cjm-page-service-number {
    width: 56px;
    height: 56px;
}

.cjm-page-service-card h2 {
    font-size: 18px;
}

.cjm-page-service-card p {
    font-size: 13px;
}

.cjm-project-card-copy {
    padding: 18px;
}

.cjm-project-card-copy h2 {
    font-size: 20px;
}

.cjm-content-layout {
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 60px;
}

.cjm-prose {
    font-size: 16px;
}

.cjm-side-quote {
    padding: 24px;
}

.cjm-side-quote h3 {
    font-size: 24px;
}


/* TABLET */

@media (max-width: 980px) {

    .cjm-container {
        width: min(calc(100% - 28px), 1280px);
    }

    .cjm-hero-layout {
        grid-template-columns: 1fr;
    }

    .cjm-hero-photo {
        min-height: 330px;
    }

    .cjm-hero-photo img {
        object-position: center center;
    }
}


/* MOBILE */

@media (max-width: 620px) {

    .cjm-nav {
        height: 64px;
    }

    .cjm-main-logo {
        height: 64px;
    }

    .cjm-main-logo img {
        height: 46px;
    }

    .cjm-hero-copy h1 {
        font-size: 40px;
    }

    .cjm-hero-photo {
        min-height: 240px;
    }

    .cjm-service-card {
        min-height: 90px;
    }
}

/* === END CJM COMPACT SCALE FIX === */
