@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=Archivo+Black&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root{
  --navy: #0E2438;
  --navy-2: #16354F;
  --paper: #F1F3F0;
  --paper-2: #E7EAE5;
  --brass: #B8862F;
  --brass-dark: #93691F;
  --steel: #55636D;
  --line: #CFD6CE;
  --ink: #12181C;
  --white: #FCFCFA;
  --radius: 3px;
  --max: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

body{
  margin:0;
  font-family:'IBM Plex Sans', sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:'Archivo', sans-serif;
  font-weight:700;
  line-height:1.15;
  margin:0 0 0.5em;
  color:var(--navy);
}

p{margin:0 0 1em; max-width:62ch;}
a{color:inherit;}
img,svg{max-width:100%; display:block;}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:3px solid var(--brass);
  outline-offset:2px;
}

/* ---------- Header ---------- */
.site-header{
  background:var(--navy);
  color:var(--white);
  position:sticky;
  top:0;
  z-index:20;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:18px;
  padding-bottom:18px;
}
.logo{
  font-family:'Archivo Black', sans-serif;
  font-size:1.25rem;
  letter-spacing:0.01em;
  color:var(--white);
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
}
.logo .mark{
  width:12px; height:12px;
  background:var(--brass);
  border-radius:50%;
  flex-shrink:0;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  color:var(--white);
  text-decoration:none;
  font-size:0.95rem;
  font-weight:500;
  opacity:0.88;
}
.nav-links a:hover{opacity:1; text-decoration:underline;}
.btn{
  display:inline-block;
  font-family:'Archivo', sans-serif;
  font-weight:600;
  font-size:0.95rem;
  padding:12px 22px;
  border-radius:var(--radius);
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--brass);
  color:var(--navy);
}
.btn-primary:hover{background:var(--brass-dark); color:var(--white);}
.btn-ghost{
  background:transparent;
  color:var(--white);
  border-color:rgba(252,252,250,0.4);
}
.btn-ghost:hover{border-color:var(--white);}
.btn-outline{
  background:transparent;
  color:var(--navy);
  border-color:var(--navy);
}
.btn-outline:hover{background:var(--navy); color:var(--white);}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--white);
  font-size:1.6rem;
  cursor:pointer;
}

/* ---------- Hero ---------- */
.hero{
  background:var(--navy);
  color:var(--white);
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
  padding-top:64px;
  padding-bottom:72px;
}
.hero h1{
  color:var(--white);
  font-size:clamp(2rem, 4vw, 2.9rem);
  max-width:14ch;
}
.hero p.lead{
  color:#D6DCE1;
  font-size:1.08rem;
  max-width:46ch;
}
.hero-ctas{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:8px;
}
.hero-art{
  position:relative;
  display:flex;
  justify-content:center;
}
.stamp{
  transform:rotate(-9deg);
  width:min(280px, 80%);
}

.trust-strip{
  background:var(--navy-2);
  color:#DDE3E7;
  border-top:1px solid rgba(255,255,255,0.12);
}
.trust-strip .wrap{
  display:flex;
  flex-wrap:wrap;
  padding:16px 24px;
}
.trust-strip .item{
  padding:6px 24px;
  font-size:0.92rem;
  border-left:1px solid rgba(255,255,255,0.18);
}
.trust-strip .item:first-child{border-left:none;}

/* ---------- Section basics ---------- */
section{padding:72px 0;}
.section-head{max-width:56ch; margin-bottom:40px;}
.section-head h2{font-size:clamp(1.5rem, 2.6vw, 2rem);}
.section-head p{color:var(--steel);}

/* ---------- Process (manifest rows) ---------- */
.process{background:var(--white);}
.manifest{
  border-top:1px solid var(--line);
}
.manifest-row{
  display:grid;
  grid-template-columns:56px 1fr 2fr;
  gap:24px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.manifest-row .num{
  font-family:'Archivo Black', sans-serif;
  color:var(--brass);
  font-size:1.6rem;
  line-height:1;
}
.manifest-row h3{
  font-size:1.08rem;
  margin-bottom:4px;
}
.manifest-row p{color:var(--steel); margin-bottom:0;}

/* ---------- Services (ledger) ---------- */
.services{background:var(--paper-2);}
.ledger{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 48px;
}
.ledger-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.ledger-item .name{font-weight:600; color:var(--navy);}
.ledger-item .note{color:var(--steel); font-size:0.92rem; text-align:right;}

/* ---------- Coverage ---------- */
.coverage{background:var(--white);}
.ports{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.port-card{
  border:1px solid var(--line);
  padding:24px;
  border-radius:var(--radius);
}
.port-card h3{font-size:1.05rem; margin-bottom:6px;}
.port-card p{color:var(--steel); font-size:0.92rem; margin-bottom:0;}
.port-card .tag{
  display:inline-block;
  font-size:0.78rem;
  font-weight:600;
  color:var(--brass-dark);
  margin-bottom:10px;
}

/* ---------- Why section ---------- */
.why{background:var(--navy); color:var(--white);}
.why .section-head h2{color:var(--white);}
.why .section-head p{color:#C7CFD4;}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.why-item h3{color:var(--white); font-size:1.05rem;}
.why-item p{color:#C7CFD4; font-size:0.94rem;}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--brass);
  color:var(--navy);
}
.cta-band .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:44px 24px;
  flex-wrap:wrap;
}
.cta-band h2{color:var(--navy); margin-bottom:4px; font-size:1.5rem;}
.cta-band p{margin-bottom:0; color:#3A2D0F;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--ink);
  color:#B9C0C4;
  padding:48px 0 28px;
  font-size:0.92rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:32px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,0.12);
  margin-bottom:20px;
}
.footer-grid h4{
  color:var(--white);
  font-family:'Archivo', sans-serif;
  font-size:0.85rem;
  margin:0 0 12px;
}
.footer-grid ul{list-style:none; margin:0; padding:0;}
.footer-grid li{margin-bottom:8px;}
.footer-grid a{color:#B9C0C4; text-decoration:none;}
.footer-grid a:hover{color:var(--white);}
.footer-bottom{display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;}

/* ---------- Generic inner page hero ---------- */
.page-hero{
  background:var(--navy);
  color:var(--white);
  padding:56px 0 44px;
}
.page-hero .wrap{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.page-hero .badge{flex-shrink:0;}
.page-hero .hero-text{flex:1; min-width:240px;}
.page-hero h1{color:var(--white); font-size:clamp(1.8rem, 3.4vw, 2.4rem); max-width:22ch;}
.page-hero p{color:#D6DCE1; max-width:52ch; margin-bottom:0;}

/* ---------- About page ---------- */
.about-intro{background:var(--white);}
.about-intro p.lead-text{
  font-size:1.15rem;
  color:var(--steel);
  max-width:64ch;
}
.light-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.light-grid h3{font-size:1.05rem;}
.light-grid p{color:var(--steel); font-size:0.94rem;}
.standards{background:var(--paper-2);}
.standards-list{
  border-top:1px solid var(--line);
}
.standards-list .manifest-row{grid-template-columns:1fr;}
.standards-list .manifest-row h3{margin-bottom:4px;}

/* ---------- Services detail page ---------- */
.service-detail{background:var(--white);}
.service-block{
  display:grid;
  grid-template-columns:0.9fr 1.4fr;
  gap:32px;
  padding:34px 0;
  border-bottom:1px solid var(--line);
}
.service-block:first-child{border-top:1px solid var(--line);}
.service-block h3{font-size:1.15rem; margin-bottom:6px;}
.service-block .includes{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  color:var(--steel);
  font-size:0.9rem;
}
.service-block .includes li{
  padding-left:16px;
  position:relative;
  margin-bottom:6px;
}
.service-block .includes li::before{
  content:'';
  position:absolute;
  left:0; top:8px;
  width:6px; height:6px;
  background:var(--brass);
  border-radius:50%;
}

/* ---------- Coverage detail page ---------- */
.coverage-detail{background:var(--white);}
.country-heading{
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brass-dark);
  padding-top:36px;
  margin-bottom:4px;
}
.country-heading:first-child{padding-top:0;}
.port-block{
  padding:40px 0;
  border-bottom:1px solid var(--line);
}
.port-block:last-child{border-bottom:none;}
.port-block h3{font-size:1.3rem; margin-bottom:6px;}
.port-block .moves-list{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  color:var(--steel);
  font-size:0.94rem;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:8px 24px;
}
.port-block .moves-list li{padding-left:14px; position:relative;}
.port-block .moves-list li::before{
  content:'';
  position:absolute; left:0; top:8px;
  width:5px; height:5px;
  background:var(--brass);
  border-radius:50%;
}

/* ---------- FAQ page ---------- */
.faq-list{
  border-top:1px solid var(--line);
  max-width:76ch;
}
.faq-item{
  border-bottom:1px solid var(--line);
  padding:20px 0;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-family:'Archivo', sans-serif;
  font-weight:600;
  color:var(--navy);
  font-size:1.02rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';
  font-size:1.4rem;
  color:var(--brass);
  font-weight:400;
  flex-shrink:0;
}
.faq-item[open] summary::after{content:'\2013';}
.faq-item p{margin:14px 0 0; color:var(--steel);}

/* ---------- Contact page ---------- */
.contact-wrap{background:var(--white);}
.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.3fr;
  gap:48px;
}
.contact-info h3{font-size:1.1rem; margin-top:28px;}
.contact-info h3:first-child{margin-top:0;}
.contact-info p{color:var(--steel); margin-bottom:4px;}
.contact-info a{color:var(--navy); font-weight:600; text-decoration:none;}
.contact-info a:hover{text-decoration:underline;}

/* ---------- Quote page ---------- */
.quote-wrap{
  padding:56px 0 88px;
}
.quote-form{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:36px;
  max-width:720px;
}
.field{margin-bottom:22px;}
.field label{
  display:block;
  font-weight:600;
  font-size:0.92rem;
  margin-bottom:6px;
  color:var(--navy);
}
.field .hint{color:var(--steel); font-size:0.82rem; margin-top:4px;}
.field input, .field select, .field textarea{
  width:100%;
  font-family:'IBM Plex Sans', sans-serif;
  font-size:0.98rem;
  padding:11px 12px;
  border:1px solid #B9C2BC;
  border-radius:var(--radius);
  background:var(--white);
  color:var(--ink);
}
.field textarea{resize:vertical; min-height:100px;}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.form-note{
  color:var(--steel);
  font-size:0.88rem;
  margin-top:18px;
}
.success-box{
  display:none;
  background:#EAF2EA;
  border:1px solid #9FBF9F;
  color:#274B27;
  padding:20px;
  border-radius:var(--radius);
  margin-bottom:24px;
}
.success-box.show{display:block;}

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .hero .wrap{grid-template-columns:1fr; padding-top:40px;}
  .hero-art{order:-1; margin-bottom:8px;}
  .stamp{width:180px;}
  .why-grid{grid-template-columns:1fr;}
  .ports{grid-template-columns:1fr;}
  .ledger{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:24px;}
  .two-col{grid-template-columns:1fr;}
  .manifest-row{grid-template-columns:40px 1fr; grid-template-areas:"num title" ". desc";}
  .cta-band .wrap{flex-direction:column; align-items:flex-start;}
  .light-grid{grid-template-columns:1fr;}
  .service-block{grid-template-columns:1fr; gap:10px;}
  .port-block .moves-list{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr; gap:36px;}
  .page-hero .badge{width:64px; height:64px;}
}
@media (max-width: 720px){
  .nav-links{
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--navy);
    flex-direction:column;
    align-items:flex-start;
    padding:8px 24px 20px;
    display:none;
    gap:14px;
  }
  .nav-links.open{display:flex;}
  .nav-toggle{display:block;}
}
