@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0b1220;
  --navy: #101a33;
  --navy-2: #16213f;
  --steel: #5b6478;
  --steel-light: #8891a3;
  --paper: #f7f8fa;
  --line: #e4e7ee;
  --gold: #ad8a3f;
  --gold-light: #c9a75c;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Header */
header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo img { height: 40px; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav.main-nav li { position: relative; }

nav.main-nav a {
  color: #d7dbe6;
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 16px;
  display: block;
  border-radius: 3px;
  transition: color .15s;
}

nav.main-nav a:hover, nav.main-nav a.active { color: #fff; }

.nav-cta {
  margin-left: 10px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 600;
  padding: 10px 20px !important;
  border-radius: 3px;
}

.nav-cta:hover { background: var(--gold-light); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-2);
  min-width: 210px;
  padding: 6px 0;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

nav.main-nav li:hover .dropdown-menu { display: block; }
.dropdown-menu a { font-size: 14px; padding: 10px 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(11,18,32,.94) 30%, rgba(11,18,32,.55)), url('../img/hero-background.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}

.hero-inner { max-width: 640px; }

.hero h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 50px);
  margin: 0 0 22px;
}

.hero p {
  font-size: 18px;
  color: #c3c9d8;
  max-width: 540px;
  margin: 0 0 34px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: all .15s;
}

.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-light); }

.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; }

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

/* Stat bar */
.stat-bar {
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-grid .stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.stat-grid .stat-label { color: #b7bccb; font-size: 14.5px; }

/* Sections */
section { padding: 88px 0; }
.section-alt { background: #fff; }

.section-head { max-width: 620px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); }
.section-head p { color: var(--steel); font-size: 16.5px; margin-top: 14px; }

/* Card grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 30px;
  transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: 0 16px 40px rgba(16,26,51,.08); transform: translateY(-2px); }

.card .card-num {
  font-family: 'Sora', sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--steel); font-size: 15px; margin: 0; }

/* Capability tiles (photo links) */
.cap-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  display: block;
}

.cap-tile img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: opacity .25s, transform .4s; }
.cap-tile:hover img { opacity: .95; transform: scale(1.04); }

.cap-tile .overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(11,18,32,.92), transparent);
  padding: 34px 20px 18px;
}

.cap-tile .overlay h3 { color: #fff; font-size: 19px; margin-bottom: 4px; }
.cap-tile .overlay span { color: var(--gold-light); font-size: 13px; font-weight: 600; letter-spacing: .5px; }

/* Page banner */
.page-banner {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 56px;
}

.page-banner h1 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.page-banner p { color: #c3c9d8; max-width: 680px; font-size: 17px; margin: 0; }

/* Two-column feature */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 16px;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step .step-num {
  font-family: 'Sora', sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { color: var(--steel); font-size: 14px; margin: 0; }

/* Image grid (service pages) */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.image-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #dde1ea;
  aspect-ratio: 4/3;
}

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

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 { color: #fff; font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 18px; }
.cta-band p { color: #c3c9d8; max-width: 520px; margin: 0 auto 30px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--navy);
  color: #fff;
  padding: 40px 34px;
  border-radius: 6px;
}

.contact-card h3 { color: #fff; margin-bottom: 20px; font-size: 18px; }
.contact-card .item { margin-bottom: 18px; }
.contact-card .item .label { color: var(--gold-light); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-card .item a { color: #fff; font-size: 16px; }

form.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.quote-form .full { grid-column: 1 / -1; }

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

form.quote-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

form.quote-form input, form.quote-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

form.quote-form textarea { min-height: 120px; resize: vertical; }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #9aa1b3;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-grid img { height: 34px; margin-bottom: 14px; }
.footer-grid p { font-size: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    display: none;
    flex-direction: column;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav ul { flex-direction: column; align-items: stretch; padding: 10px 0; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 18px; }
  .nav-cta { margin: 10px 18px; text-align: center; }
}
