/* OVAP brand tokens, lifted from the live ovap.ca theme (theme.css / font-settings.css). */
:root {
  --ovap-primary: #ffcc33;
  --ovap-primary-hover: #e6ac00;
  --ovap-primary-opposite: #000000;
  --ovap-primary-fade: rgba(255, 204, 51, 0.08);
  --ovap-navy: #032337;
  --ovap-navy-accent: #1f2529;
  --ovap-text: #000000;
  --ovap-text-light: #4d4d4d;
  --ovap-border: #e1dce4;
  --ovap-border-light: #e6e2e8;
  --ovap-bg: #ffffff;
  --ovap-bg-accent: #ededed;
  --ovap-footer-bg: #f7f8fa;
  --ovap-success: #56ae92;
  --ovap-error: #c1544a;
  --ovap-warn: #ecbd5e;

  --font-heading: Jost, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1080px;
  --radius: 10px;
  --shadow: 0 2px 18px rgba(3, 35, 55, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ovap-text);
  background: var(--ovap-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-weight: 800; }

a { color: inherit; }

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

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--ovap-nav-border, #e4e4e4);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.site-header img { height: 38px; width: auto; display: block; }
.header-links { display: flex; align-items: center; gap: 22px; }
.header-links a {
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: #2e3438;
  letter-spacing: 0.02em;
}
.header-links a:hover { color: #000; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border: 2px solid var(--ovap-primary);
  border-radius: 4px;
  background: var(--ovap-primary);
  color: var(--ovap-primary-opposite);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn:hover:not(:disabled) { background: var(--ovap-primary-hover); border-color: var(--ovap-primary-hover); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover:not(:disabled) { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- sections ---------- */
section { padding: 62px 0; }
.section-dark { background: var(--ovap-navy); color: #fff; }
.section-soft { background: var(--ovap-footer-bg); }
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ovap-primary-hover);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--ovap-primary); }
.lede { font-size: 1.1rem; color: var(--ovap-text-light); max-width: 62ch; }
.section-dark .lede { color: rgba(255, 255, 255, 0.82); }

/* ---------- forms ---------- */
label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.01em; }
input[type=text], input[type=email], input[type=tel], input[type=number], select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ovap-text);
  background: #fff;
  border: 1px solid var(--ovap-border);
  border-radius: 4px;
}
input:focus, select:focus { outline: 2px solid var(--ovap-primary); outline-offset: 1px; border-color: var(--ovap-primary); }
.field { margin-bottom: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.88rem; }
.check input { margin-top: 4px; flex: none; width: 17px; height: 17px; accent-color: var(--ovap-primary-hover); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.card {
  background: #fff;
  border: 1px solid var(--ovap-border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.note {
  padding: 13px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 16px;
  display: none;
}
.note.show { display: block; }
.note.ok   { background: rgba(86, 174, 146, 0.12); border-left: 3px solid var(--ovap-success); }
.note.err  { background: rgba(193, 84, 74, 0.1);   border-left: 3px solid var(--ovap-error); }

@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
  .header-links a:not(.btn) { display: none; }
}
