
:root {
  --ink: #313131;
  --muted: #5a5a5a;
  --line: #e2e2e2;
  --bg: #ffffff;
  --nav-bg: #ffffff;
  --nav-text: #4a4a4a;
  --coral: #e04a3f;
  --header-top: #0b1a2b;
  --footer: #313131;
  --max: 860px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
}
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip { position: absolute; left: -999px; }
.header-bg {
  background-color: #0a1626;
  background-image:
    linear-gradient(rgba(8, 16, 28, 0.38), rgba(8, 16, 28, 0.42)),
    url("assets/header.jpg");
  background-size: cover;
  background-position: center 40%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 40px;
  text-align: center;
}
.header-bg img.logo { height: 96px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55)); }
.header-bg .tag {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
nav.main {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav.main ul {
  list-style: none;
  margin: 0 auto;
  padding: 0 12px;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav.main a {
  display: block;
  color: var(--nav-text);
  padding: 16px 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}
nav.main a:hover,
nav.main a[aria-current="page"] {
  color: var(--coral);
  text-decoration: none;
}
main { max-width: var(--max); margin: 0 auto; padding: 48px 22px 72px; }
h1, h2, h3 {
  font-family: Quattrocento, "Palatino Linotype", Palatino, serif;
  font-weight: 700;
  color: #222;
}
h1.page-title {
  font-size: 2.15rem;
  margin: 0 0 32px;
  text-align: center;
}
h2 { font-size: 1.55rem; margin: 1.5em 0 0.55em; }
h3 { font-size: 1.28rem; margin: 0 0 0.55em; }
p { margin: 0 0 1.15em; }
.lede p { max-width: 46rem; margin-left: auto; margin-right: auto; }
.cta {
  text-align: center;
  margin: 52px 0 8px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cta h2 { margin-top: 0; }
.btn {
  display: inline-block;
  background: #313131;
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn:hover { background: var(--coral); }
.services { display: grid; gap: 40px; margin-top: 12px; }
@media (min-width: 860px) {
  .services { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .header-bg { min-height: 360px; }
  .header-bg img.logo { height: 118px; }
}
.services h2 { font-size: 1.28rem; margin: 0 0 0.55em; }
.services ul { padding-left: 1.15em; margin: 0 0 1em; }
.services li { margin: 0.28em 0; }
.values { display: grid; gap: 22px; }
@media (min-width: 800px) { .values { grid-template-columns: 1fr 1fr; } }
.values article {
  padding: 8px 10px 4px;
  text-align: center;
}
.values article.wide { grid-column: 1 / -1; }
.values h2 { margin: 0 0 10px; font-size: 1.25rem; }
.legal {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
form.contact {
  max-width: 520px;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
}
form.contact label { font-weight: 600; font-size: 0.92rem; }
form.contact input, form.contact textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #bbb;
  font: inherit;
}
form.contact button {
  justify-self: start;
  background: #313131;
  color: #fff;
  border: 0;
  padding: 10px 24px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
form.contact button:hover { background: var(--coral); }
.note { color: var(--muted); font-size: 0.9rem; }
footer.site {
  background: var(--footer);
  color: #d0d0d0;
  text-align: center;
  padding: 26px 16px 30px;
  font-size: 0.86rem;
}
footer.site p { margin: 0.25em 0; }
footer.site strong { color: #fff; font-weight: 600; }

.how-we-work {
  max-width: 46rem;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.how-we-work h2 { margin-top: 0; }

.people { display: grid; gap: 28px; max-width: 46rem; margin: 8px auto 0; }
.people h2 { margin-top: 0; font-size: 1.35rem; }
footer.site .footer-links { margin-top: 10px; }
footer.site .footer-links a { color: #d0d0d0; }
