/* W Group Acquisitions — single stylesheet, no dependencies beyond fonts. */

:root {
  --ink: #0e1626;
  --ink-2: #26344a;
  --muted: #5d6b80;
  --line: #dfe4ec;
  --paper: #ffffff;
  --wash: #f6f8fb;
  --brand: #14304f;
  --accent: #b8863b;
  --accent-soft: #f4ecdd;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 74px; }
.logo { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; color: var(--ink); }
.logo b { font-family: "Instrument Serif", Georgia, serif; font-size: 23px; font-weight: 400; letter-spacing: .2px; }
.logo span { font-size: 10.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--muted); }
.nav nav { margin-left: auto; display: flex; gap: 26px; }
.nav nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav nav a:hover { color: var(--accent); }
.btn {
  display: inline-block; background: var(--brand); color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 4px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--brand); transition: background .15s, color .15s;
}
.btn:hover { background: #1c4670; }
.btn.ghost { background: transparent; color: var(--brand); }
.btn.ghost:hover { background: var(--wash); }
.btn.gold { background: var(--accent); border-color: var(--accent); }
.btn.gold:hover { background: #a5762f; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(170deg, #0e1626 0%, #14304f 62%, #1b3d63 100%); color: #fff; }
.hero .wrap { padding-top: 96px; padding-bottom: 104px; max-width: 960px; }
.eyebrow {
  display: inline-block; font-size: 11.5px; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(184,134,59,.4); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(38px, 6vw, 62px); font-weight: 400; line-height: 1.08;
  margin: 0 0 22px; letter-spacing: -.5px;
}
.hero p { font-size: 19px; color: #c3d0e0; max-width: 620px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 88px 0; }
section.wash { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { font-size: 11.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
h2 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 0 0 18px; letter-spacing: -.3px; }
h3 { font-size: 18px; margin: 0 0 8px; }
.lede { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 0 44px; }

.grid { display: grid; gap: 22px; }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; }
.card .num {
  font-family: "Instrument Serif", Georgia, serif; font-size: 15px; color: var(--accent);
  border: 1px solid var(--accent-soft); background: var(--accent-soft);
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
}
.card p { color: var(--muted); margin: 0; font-size: 15.5px; }

.criteria { list-style: none; padding: 0; margin: 0; }
.criteria li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.criteria li:last-child { border-bottom: 0; }
.criteria b { min-width: 132px; font-weight: 600; font-size: 15px; }
.criteria span { color: var(--muted); font-size: 15.5px; }

.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding: 0 0 16px 30px; color: var(--muted); font-size: 16px; }
.checks li::before {
  content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
}
.checks b { color: var(--ink); font-weight: 600; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 5px;
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: var(--paper);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }
.direct { border-left: 3px solid var(--accent); padding-left: 22px; margin-bottom: 28px; }
.direct .label { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.direct .value { font-size: 21px; font-weight: 600; }
.direct .value a { color: var(--ink); text-decoration: none; }
.direct .value a:hover { color: var(--accent); }

/* ---------- footer ---------- */
footer { background: var(--ink); color: #93a1b5; padding: 62px 0 34px; font-size: 14.5px; }
footer h4 { color: #fff; font-size: 14px; margin: 0 0 12px; letter-spacing: .3px; }
footer a { color: #93a1b5; text-decoration: none; }
footer a:hover { color: var(--accent); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }
.legal { border-top: 1px solid #24324a; padding-top: 24px; font-size: 13px; color: #6f7d92; }
.legal p { margin: 0 0 6px; }

/* ---------- long-form legal pages ---------- */
.doc { max-width: 780px; padding: 68px 24px 90px; margin: 0 auto; }
.doc h1 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 40px; margin: 0 0 10px; }
.doc .updated { color: var(--muted); font-size: 14.5px; margin-bottom: 40px; }
.doc h2 { font-size: 21px; font-family: "Inter", sans-serif; font-weight: 700; margin: 38px 0 12px; }
.doc p, .doc li { color: var(--ink-2); font-size: 16.5px; }
.doc ul { padding-left: 22px; }

@media (max-width: 860px) {
  .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .nav { height: auto; padding: 14px 0; flex-wrap: wrap; gap: 14px; }
  .nav nav { margin-left: 0; width: 100%; gap: 18px; flex-wrap: wrap; }
  .hero .wrap { padding-top: 62px; padding-bottom: 68px; }
  section { padding: 62px 0; }
}
