:root {
  --ink: #050505;
  --oxblood: #141d22;
  --red: #c10b09;
  --gold: #bd8430;
  --paper: #f4e3bc;
  --muted: #cfb587;
  --line: rgba(244, 227, 188, .2);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header, main, footer { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark img { display: block; width: 215px; height: auto; }

.header-note, .eyebrow, .number { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.header-note { color: var(--muted); }

.hero { padding: clamp(80px, 14vw, 156px) 0 clamp(72px, 11vw, 128px); max-width: 820px; }
.eyebrow { color: var(--gold); margin: 0 0 20px; }

h1, h2, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.15rem); font-weight: 800; line-height: .98; letter-spacing: -.045em; margin-bottom: 30px; }
.hero-copy { max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; line-height: 1.65; color: #e3d3b0; }

.status { margin-top: 40px; display: inline-flex; align-items: center; gap: 11px; color: var(--paper); background: #172126; padding: 13px 17px; border-radius: 5px; font-size: .9rem; font-weight: 600; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); }

.service-intro { max-width: 700px; padding: 0 0 30px; }
.service-intro h2 { font-size: clamp(1.6rem, 3.5vw, 2.35rem); line-height: 1.12; letter-spacing: -.035em; }

.focus { background: var(--oxblood); color: var(--paper); padding: 0 42px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(244, 227, 188, .16); border-radius: 8px 8px 0 0; }
.focus article { min-height: 290px; padding: 45px 34px 40px 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.focus article:last-child { border-right: 0; margin-right: 0; }
.number { color: var(--gold); margin-bottom: 52px; }
h2 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.015em; margin-bottom: 12px; }
.focus p:last-child { color: #d7c9ab; font-weight: 500; line-height: 1.6; margin-bottom: 0; }

footer { min-height: 106px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: .83rem; }
footer span:first-child { color: var(--paper); font-weight: 750; }

@media (max-width: 720px) {
  .site-header, main, footer { width: min(100% - 32px, 1160px); }
  .site-header { min-height: 76px; }
  .header-note { display: none; }
  .focus { display: block; padding: 0 26px; }
  .focus article { min-height: auto; margin: 0; padding: 34px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .focus article:last-child { border-bottom: 0; }
  .number { margin-bottom: 28px; }
  footer { min-height: 120px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 8px; }
}
