:root {
  --steel: #1a2535;
  --steel-mid: #243044;
  --rust: #b94a2c;
  --rust-light: #d4623f;
  --iron: #8a9ab0;
  --light: #f0f2f5;
  --white: #ffffff;
  --text: #1a2535;
  --text-muted: #5a6a7e;
  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); }
nav { background: var(--steel); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 68px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-logo span { color: var(--rust); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--iron); text-decoration: none; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--rust) !important; color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: 3px; }
.page-hero { background: var(--steel); color: var(--white); padding: 5rem 5% 4rem; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-eyebrow { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.page-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--rust); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 1.2rem; }
.page-hero h1 em { color: var(--rust); font-style: normal; }
.page-hero p { color: var(--iron); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }
.content { max-width: 1100px; margin: 0 auto; padding: 4rem 5%; }
.two-col { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.main-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; color: var(--steel); margin: 2rem 0 0.8rem; }
.main-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--steel); margin: 1.5rem 0 0.5rem; }
.main-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.main-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.main-content ul li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.main-content ul li::before { content: ''; display: block; min-width: 6px; height: 6px; background: var(--rust); border-radius: 50%; margin-top: 0.5rem; }
.sidebar-card { background: var(--steel); color: var(--white); border-radius: 4px; padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rust); margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.88rem; color: var(--iron); line-height: 1.6; margin-bottom: 1rem; }
.btn-primary { display: inline-block; background: var(--rust); color: var(--white); padding: 0.85rem 1.8rem; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: background 0.2s; }
.btn-primary:hover { background: var(--rust-light); }
.related-services { background: var(--light); padding: 4rem 5%; }
.related-inner { max-width: 1100px; margin: 0 auto; }
.related-inner h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--steel); margin-bottom: 2rem; }
.service-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.service-link { display: block; background: var(--white); border: 1.5px solid #e2e8f0; padding: 1.2rem 1.5rem; text-decoration: none; color: var(--text); border-radius: 3px; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; transition: border-color 0.2s; }
.service-link:hover { border-color: var(--rust); }
.cta-band { background: var(--rust); padding: 4rem 5%; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.btn-white { background: var(--white); color: var(--rust); padding: 0.9rem 2.5rem; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 3px; display: inline-block; }
footer { background: #0d1720; color: var(--iron); padding: 3rem 5%; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8rem; }
.footer-logo span { color: var(--rust); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; }
.footer-contact { font-size: 0.85rem; line-height: 2; }
.footer-contact a { color: var(--iron); text-decoration: none; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: var(--iron); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
@media (max-width: 768px) { .nav-links { display: none; } .two-col { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: 1fr; } }
