:root {
  --navy: #0b2036;
  --navy-2: #123049;
  --steel: #1e4d6b;
  --accent: #e08a3c;
  --accent-2: #c96f24;
  --ink: #1a2430;
  --paper: #ffffff;
  --muted: #5c6b78;
  --line: #e4e9ed;
  --panel: #f6f8fa;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy);
  color: white;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
header .wrap {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: white;
  text-decoration: none;
}
.brand svg { flex-shrink: 0; }
header nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-left: 1.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
header nav a:hover { color: var(--accent); }
header nav a[aria-current="page"] { color: var(--accent); }

.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--navy-2), var(--navy) 60%);
  color: white;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy { text-align: left; }
@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-art { display: none; }
}
.hero-art img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.55);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero p {
  max-width: 520px;
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: #c9d7e2;
}
@media (max-width: 800px) { .hero p { margin: 0 auto 2rem; } }

/* Smaller banner variant for interior pages (Services/About/Contact) */
.hero-sm { padding: 3.4rem 1.5rem; }
.hero-sm .hero-inner { grid-template-columns: 1fr; text-align: left; }
.hero-sm .hero-copy { text-align: left; }
.hero-sm p { max-width: 640px; margin-bottom: 0; }
@media (max-width: 800px) {
  .hero-sm .hero-inner { text-align: center; }
  .hero-sm .hero-copy { text-align: center; }
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  transition: background 0.15s, transform 0.15s;
}
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.75rem 1.7rem;
  border-radius: 6px;
  margin-left: 0.75rem;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.06); }

.trusted {
  background: var(--navy-2);
  padding: 1.6rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trusted-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 2.2rem;
  justify-content: center;
}
.trusted-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-right: 0.5rem;
}
.trusted-inner span.client {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
section { margin-bottom: 4.5rem; }
section:last-child { margin-bottom: 0; }
.section-head { margin-bottom: 2rem; }
.section-head .eyebrow { color: var(--accent-2); }
h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin: 0.3rem 0 0;
  font-weight: 700;
}
.section-foot { margin-top: 2rem; }

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -12px rgba(11,32,54,0.25);
  border-color: var(--steel);
}
.service-card .card-body { padding: 1.6rem; }
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
}
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover { text-decoration: underline; }
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.about-grid p { color: var(--muted); margin: 0; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: start;
}
.badge {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat {
  text-align: center;
  padding: 1.2rem 0.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.2rem;
}
.contact-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
}
.contact-rows {
  display: grid;
  gap: 0.9rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.contact-row svg { flex-shrink: 0; color: var(--accent-2); }
.contact-row a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.contact-row a:hover { text-decoration: underline; }
.contact-row span { color: var(--muted); }

/* Simple CTA band used at the bottom of interior pages */
.cta-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { color: var(--muted); margin: 0 0 1.4rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer nav {
  margin-bottom: 0.8rem;
}
footer nav a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.6rem;
}
footer nav a:hover { color: var(--navy); text-decoration: underline; }
