/* ===== Tokens ===== */
:root{
  --navy-950: #0B1626;
  --navy-900: #0F1E32;
  --navy-800: #14263D;
  --navy-700: #1C3350;
  --orange-500: #FF8A1E;
  --orange-400: #FFB347;
  --paper: #F5F6F8;
  --paper-dim: #E7E9ED;
  --white: #FFFFFF;
  --ink: #101820;
  --ink-soft: #4A5568;

  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 6px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1, h2, h3{ font-family: var(--font-display); line-height: 1.05; margin: 0; }
p{ margin: 0; }
ul{ list-style: none; margin: 0; padding: 0; }

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

:focus-visible{
  outline: 3px solid var(--orange-400);
  outline-offset: 2px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--orange-500); color: var(--navy-950); }
.btn-primary:hover{ background: var(--orange-400); }
.btn-ghost{ border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost:hover{ border-color: var(--white); }
.btn-block{ width: 100%; }

/* ===== Header ===== */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{ display: flex; align-items: center; gap: 0.6rem; color: var(--white); }
.brand-mark{ height: 36px; width: auto; flex-shrink: 0; display: block; }
.brand-text{
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-text em{ font-style: normal; color: var(--orange-500); }
.brand-text small{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.primary-nav{ display: flex; align-items: center; gap: 1.9rem; }
.primary-nav a{
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a:hover{ color: var(--white); }
.nav-cta{
  background: var(--orange-500);
  color: var(--navy-950) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover{ background: var(--orange-400); }
.nav-toggle{
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--white); }

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--navy-950) 8%, rgba(11,22,38,0.75) 42%, rgba(11,22,38,0.25) 75%);
}
.hero-content{
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  width: 100%;
}
.hero-kicker{
  color: var(--orange-400);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.hero h1{
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 15ch;
  margin-bottom: 1.1rem;
}
.hero-lede{
  max-width: 46ch;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.8rem;
}
.hero-actions{ display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ===== Intro ===== */
.intro{ padding: 4.5rem 1.5rem 2rem; }
.intro-inner{ max-width: 620px; margin: 0 auto; text-align: center; }
.intro-eyebrow{ color: var(--orange-500); font-weight: 700; margin-bottom: 0.6rem; }
.intro h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.intro-copy{ color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Category sections ===== */
.category{ padding: 3.5rem 1.5rem; }
.category-dark{ background: var(--navy-900); color: var(--white); }
.category-dark .service h3{ color: var(--white); }
.category-dark .service p{ color: rgba(255,255,255,0.72); }
.category-dark .category-head p{ color: rgba(255,255,255,0.65); }

.category-head{
  max-width: var(--container);
  margin: 0 auto 2.2rem;
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
}
.category-index{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--orange-500);
  flex-shrink: 0;
}
.category-head h2{ font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.35rem; }
.category-head p{ color: var(--ink-soft); font-size: 1rem; }

.service-list{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.service{ display: flex; flex-direction: column; gap: 1rem; }
.service-media{
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.service-media img{ width: 100%; height: 100%; object-fit: cover; }
.service h3{ font-size: 1.05rem; margin-bottom: 0.4rem; }
.service p{ color: var(--ink-soft); font-size: 0.95rem; }

/* Procurement (single featured layout, not another card grid) */
.procurement-body{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.procurement-body .service-media.wide{ aspect-ratio: 16/10; }
.procurement-body .service-body h3{ font-size: 1.5rem; margin-bottom: 0.8rem; }
.procurement-body .service-body p{ color: rgba(255,255,255,0.72); font-size: 1.02rem; margin-bottom: 1.5rem; }

.divider{
  height: 46px;
  background: linear-gradient(115deg, var(--orange-500) 48%, transparent 48.5%), var(--paper);
}

/* ===== Trust strip ===== */
.trust-strip{
  background: var(--navy-950);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.6rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-item{ display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 500; }
.trust-item svg{ width: 22px; height: 22px; color: var(--orange-500); flex-shrink: 0; }

/* ===== Contact ===== */
.contact{ background: var(--navy-900); color: var(--white); padding: 4.5rem 1.5rem; }
.contact-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  min-width: 0;
}
.contact-eyebrow{ color: var(--orange-400); font-weight: 700; margin-bottom: 0.6rem; font-style: italic; }
.contact-copy{ min-width: 0; }
.contact-copy h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.contact-copy > p{ color: rgba(255,255,255,0.75); max-width: 40ch; margin-bottom: 1.8rem; }
.contact-details{ display: flex; flex-direction: column; gap: 0.7rem; min-width: 0; }
.contact-details a{
  font-weight: 600;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-details a:hover{ color: var(--orange-400); }

.contact-form{
  background: var(--navy-800);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}
.form-row{ display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label{ font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.form-row input, .form-row select, .form-row textarea{
  width: 100%;
  max-width: 100%;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  border-color: var(--orange-500);
}
.form-status{ font-size: 0.9rem; min-height: 1.2em; }
.form-status.success{ color: #7CDB8A; }
.form-status.error{ color: #FF8A8A; }

/* ===== Footer ===== */
.site-footer{ background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 1.6rem 1.5rem; }
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 860px){
  .primary-nav{
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.6rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .primary-nav.open{ display: flex; }
  .nav-toggle{ display: flex; }
  .nav-cta{ width: 100%; text-align: center; }

  .procurement-body{ grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; }
}
