:root {
  --navy: #132f57;
  --blue: #609abc;
  --bronze: #ae895d;
  --ink: #172235;
  --muted: #5f6b78;
  --line: #dce2e8;
  --soft: #f4f8fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); }
.nav-row { min-height: 142px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: block; text-decoration: none; }
.logo-crop { display: block; width: 190px; height: 124px; overflow: hidden; position: relative; }
.logo-crop img { position: absolute; width: 300px; max-width: none; left: -55px; top: -31px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: var(--muted); text-decoration: none; font-size: .94rem; font-weight: 600; }
nav a:hover { color: var(--navy); }

.hero { min-height: 570px; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 70px; padding-top: 80px; padding-bottom: 78px; }
.eyebrow { margin: 0 0 16px; color: var(--bronze); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { color: var(--navy); line-height: 1.16; }
h1 { margin: 0 0 24px; font-size: clamp(2.65rem, 5vw, 4.65rem); letter-spacing: -.035em; }
h2 { margin: 0 0 16px; font-size: clamp(2rem, 3.5vw, 3.15rem); letter-spacing: -.025em; }
h3 { margin: 0 0 10px; font-size: 1.18rem; }
p { margin-top: 0; color: var(--muted); }
.lead { max-width: 720px; margin-bottom: 30px; font-size: 1.15rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 22px; border: 2px solid var(--navy); text-decoration: none; font-weight: 700; transition: .2s ease; }
.button.primary { color: var(--white); background: var(--navy); }
.button.primary:hover { background: #0c2547; border-color: #0c2547; }
.button.secondary { color: var(--navy); background: transparent; }
.button.secondary:hover { background: var(--soft); }
.hero-note { padding: 8px 0 8px 28px; border-left: 4px solid var(--bronze); }
.hero-note strong { display: block; margin-bottom: 10px; color: var(--navy); font-size: 1.05rem; }

.section { padding-top: 80px; padding-bottom: 86px; border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 28px; }
.service-grid article { padding-top: 20px; border-top: 3px solid var(--line); }
.service-grid article:nth-child(3n+1) { border-color: var(--navy); }
.service-grid article:nth-child(3n+2) { border-color: var(--blue); }
.service-grid article:nth-child(3n+3) { border-color: var(--bronze); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-grid span { display: block; margin-bottom: 14px; color: var(--blue); font-weight: 700; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.principles { margin: 0; padding: 0; list-style: none; }
.principles li { position: relative; margin-bottom: 18px; padding-left: 24px; color: var(--muted); }
.principles li::before { content: ""; position: absolute; width: 9px; height: 9px; left: 0; top: .58em; background: var(--bronze); }

.contact { display: flex; align-items: center; justify-content: space-between; gap: 52px; padding-top: 72px; padding-bottom: 72px; border-top: 1px solid var(--line); }
.contact h2 { max-width: 700px; }
.contact .button { flex: none; }
footer { border-top: 1px solid var(--line); }
.footer-row { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; padding-bottom: 34px; color: var(--muted); font-size: .84rem; }

@media (max-width: 820px) {
  .container { width: min(100% - 34px, 700px); }
  .nav-row { min-height: 132px; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding-top: 62px; padding-bottom: 62px; }
  .service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact { align-items: flex-start; flex-direction: column; }
  .footer-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .logo-crop { width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
