/* site-pages.css — shared styling for the plain-HTML pages
   (careers, vendors, applications). The React marketing pages carry their
   styles inline; these pages are form-heavy, so they get a real stylesheet. */

:root {
  --navy: #153238;
  --gold: #b68235;
  --gold-dark: #8a6221;
  --cream: #f5f2ec;
  --rule: #d8d3c8;
  --ink: #3d4a4d;
  --muted: #7a746a;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Libre Franklin', system-ui, sans-serif;
  text-wrap: pretty;
  background: var(--cream);
  color: var(--navy);
}
a { text-decoration: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.narrow { max-width: 780px; }

.kicker {
  display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
h1.page { font-weight: 300; font-size: clamp(34px, 5vw, 52px); line-height: 1.1; margin: 0; }
h2.sec  { font-weight: 300; font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; }
h3.sub  { font-weight: 500; font-size: 20px; margin: 0; }
p.lead  { font-size: 17px; line-height: 1.6; color: var(--ink); margin: 18px 0 0; max-width: 62ch; }
p.body  { font-size: 15.5px; line-height: 1.65; color: var(--ink); }

.card { background: #fff; border: 1px solid var(--rule); border-radius: 8px; padding: 26px 28px; }
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.btn {
  display: inline-block; background: var(--gold); color: var(--navy); font-weight: 600;
  font-size: 15px; padding: 13px 26px; border-radius: 3px; border: none; cursor: pointer;
  font-family: inherit;
}
.btn:disabled { opacity: 0.55; cursor: default; }
.btn-ghost {
  display: inline-block; border: 1px solid var(--navy); color: var(--navy); background: transparent;
  font-weight: 600; font-size: 15px; padding: 12px 24px; border-radius: 3px; cursor: pointer;
  font-family: inherit;
}

.pill {
  display: inline-block; background: var(--cream); border: 1px solid var(--rule);
  border-radius: 20px; padding: 4px 12px; font-size: 12.5px; color: var(--ink); margin: 0 6px 6px 0;
}
.pay { font-size: 20px; font-weight: 600; color: var(--gold-dark); margin: 8px 0 0; }

ul.ticks { list-style: none; margin: 12px 0 0; padding: 0; }
ul.ticks li {
  font-size: 15px; line-height: 1.55; color: var(--ink);
  padding: 5px 0 5px 22px; position: relative;
}
ul.ticks li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ---- forms ---- */
.field { display: block; margin-bottom: 16px; }
.field > span.label { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.field .hint { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.5; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number],
input[type=url], select, textarea {
  width: 100%; min-height: 42px; padding: 9px 12px; font-size: 14.5px; font-family: inherit;
  border: 1px solid var(--rule); border-radius: 4px; background: #fff; color: var(--navy);
}
textarea { resize: vertical; min-height: 96px; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.55; color: var(--ink); margin-bottom: 12px; }
.check input { margin-top: 3px; flex: none; width: 16px; height: 16px; }
fieldset { border: 1px solid var(--rule); border-radius: 6px; padding: 20px 22px; margin: 0 0 22px; background: #fff; }
legend { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); padding: 0 8px; }

.notice {
  background: #fff; border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0;
  padding: 18px 22px; margin: 22px 0; font-size: 14.5px; line-height: 1.6; color: var(--ink);
}
.notice strong { color: var(--navy); }
.legal { font-size: 13px; line-height: 1.6; color: var(--muted); }

.msg-error { color: #b3261e; font-size: 14px; margin: 12px 0 0; }
.msg-ok { color: #1a7a3d; font-size: 15px; margin: 12px 0 0; }

.steps { counter-reset: step; margin: 28px 0 0; padding: 0; list-style: none; }
.steps li { position: relative; padding: 0 0 26px 46px; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 1px; font-size: 13px; font-weight: 600; color: var(--gold-dark);
}
.steps li::after {
  content: ""; position: absolute; left: 13px; top: 22px; bottom: 4px; width: 1px; background: var(--rule);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 18px; font-weight: 500; margin: 0; }
.steps p { font-size: 14.5px; line-height: 1.6; color: var(--ink); margin: 6px 0 0; }

@media (max-width: 720px) {
  nav { column-gap: 14px !important; font-size: 12.5px !important; padding: 12px 20px !important; }
}
