/* ============================================================
 * PASCO — shared site stylesheet
 * Tokens, reset, base, buttons, topbar, footer, mobile menu.
 * Pages add their own page-specific CSS inline.
 * Source-of-truth: DESIGN.md (root of project).
 * ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colors */
  --brand-navy:        #16315C;
  --brand-navy-ink:    #0E2344;
  --brand-blue:        #2E6DB4;
  --brand-gold:        #B8862F;
  --brand-gold-ink:    #8A6420;
  --brand-gold-light:  #D9B25E;

  /* Surfaces */
  --bg:           #FFFFFF;
  --bg-subtle:    #F4F6FA;
  --surface-navy: #16315C;
  --border:       #E3E8EF;

  /* Text */
  --text:                #1C2530;
  --text-muted:          #5A6573;
  --text-on-dark:        #EAF1FA;
  --text-on-dark-muted:  #A9BAD2;

  /* Spacing (4-base) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-6: 24px; --s-8: 32px; --s-12: 48px; --s-16: 64px; --s-24: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(16,32,64,.06);
  --shadow-md: 0 6px 24px rgba(16,32,64,.10);

  /* Type */
  --font-sans: system-ui, -apple-system, "Segoe UI", "PingFang SC",
               "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: 32px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-navy);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

/* Focus ring: blue stroke + soft gold halo (DESIGN.md §4) */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(217, 178, 94, .45);
  border-radius: var(--radius-sm);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

/* 金色主按钮：用更亮的品牌浅金 #D9B25E + 深墨字（对比 ~7:1）。
 * 深金 #B8862F 偏铜锈、与深蓝字明度都低 → 小尺寸发浊；浅金明度拉开后金色"亮"而非脏。
 * 改这一处即全站生效（首页 hero / 各页 footer 加入协会 / 活动页报名 / news 列表报名）。
 * --brand-gold token 本身不动——它还用在导航下划线、引用块描边、点阵纹理等深金无对比问题处。 */
.btn-gold {
  background: var(--brand-gold-light);
  color: var(--brand-navy-ink);
  box-shadow: 0 4px 14px rgba(184, 134, 47, .3);
}
.btn-gold:hover { background: #CFA248; box-shadow: 0 6px 20px rgba(184, 134, 47, .38); }

.btn-navy {
  background: var(--brand-navy);
  color: #fff;
}
.btn-navy:hover { background: var(--brand-navy-ink); }

/* Secondary on dark / photo surfaces — primary navy fill, thin hairline. */
.btn-blue {
  background: var(--brand-navy);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
.btn-blue:hover {
  background: #1B3D6E;
  border-color: rgba(255, 255, 255, .38);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(234, 241, 250, .55);
}
.btn-ghost-light:hover {
  background: rgba(234, 241, 250, .08);
  border-color: #fff;
}

.btn-white {
  background: rgba(255, 255, 255, .96);
  color: var(--brand-navy);
}
.btn-white:hover { background: #fff; color: var(--brand-navy-ink); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ---------- TOP BAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
/* WP 区块主题适配：template-part 把 .topbar 包进 <header class="wp-block-template-part">，
   该 wrapper 仅导航条高度；sticky 必须作用在 wrapper 上（其包含块为全页高的 .wp-site-blocks），
   否则 .topbar 被矮 wrapper 限制、随父盒子一起滚走。footer 用 <footer> 标签，不被此选择器命中。 */
header.wp-block-template-part { position: sticky; top: 0; z-index: 50; }
/* WP 区块主题适配：core 给 .wp-site-blocks 顶层子元素加了 24px block-gap（margin-block-start），
   会在 sticky 页头↔<main>、<main>↔页脚之间留白缝（初始一条白条，滚动后被吸收）。
   原型是扁平文档、靠各 section 自身 padding 控间距，故清零顶层 block-gap（不影响内容区块内部间距）。 */
.wp-site-blocks > * { margin-block-start: 0; margin-block-end: 0; }
/* 同理：可编辑页的 post-content 直接子级（各全宽 band）之间也清零 block-gap，
   band 靠各自 padding 控间距、彼此紧贴（原型即如此），不留白缝。 */
.wp-block-post-content > * { margin-block-start: 0; margin-block-end: 0; }
/* 这些容器用 CSS grid + gap 控间距，但作为区块是 flow 布局，WP 会给非首个子项加
   margin-block-start:24px（首项 0）→ 在 grid 单元里把第 2/3/4 张卡往下推、顶端错位。
   清零网格直接子项的 block-gap margin，交给 grid 的 gap 控间距。 */
.overview-grid > *,
.news-grid > *,
.disc-grid > *,
.board-grid > *,
.mission-body > * { margin-block-start: 0; margin-block-end: 0; }
/* .section-head 是 flex 列，靠 gap:var(--s-3)=12px 控 kicker/title/lead 间距；但作为 flow
   区块，WP 会给 title/lead 叠加 24px block-gap(margin-block-start)→ 实际 36px，比原型(12px)宽
   3 倍。清零其直接子级的 block-gap，交还 flex gap。仅清 start，保留 .section-head 自身 margin-bottom。 */
.section-head > * { margin-block-start: 0; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-8);
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  display: block;
  width: 172px; height: 40px;
  background: url("pasco-logo.png") left center / contain no-repeat;
}

.nav-main { display: flex; align-items: center; gap: var(--s-8); }
.nav-main a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.nav-main a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-main a:hover { text-decoration: none; color: var(--brand-navy); }
.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after { transform: scaleX(1); }
.nav-main a[aria-current="page"] { color: var(--brand-navy); font-weight: 600; }

.nav-end { display: flex; align-items: center; gap: var(--s-4); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.lang-switch button,
.lang-switch a {
  border: 0;
  background: transparent;
  padding: 6px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .3px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s ease;
}
.lang-switch .sep {
  color: var(--border);
  font-weight: 400;
  user-select: none;
}
.lang-switch button.is-active,
.lang-switch a.is-active { color: var(--brand-navy); }
.lang-switch button:hover,
.lang-switch a:hover { color: var(--brand-navy); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  position: relative;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--brand-navy);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.hamburger span::before { top: -6px; transform: translateX(-50%); }
.hamburger span::after  { top:  6px; transform: translateX(-50%); }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.hamburger.is-open span::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- SECTION BASE ---------- */
section { padding: 96px 0; }
.section-head {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-bottom: var(--s-12);
  max-width: 720px;
}
.section-kicker {
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.section-title {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 750;
}
.section-lead {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brand-navy-ink);
  color: var(--text-on-dark);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background-image: radial-gradient(rgba(217, 178, 94, .18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-12);
  position: relative;
}
.footer-wordmark { display: flex; flex-direction: column; gap: 4px; }
.footer-wordmark .fw-en {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}
.footer-wordmark .fw-zh {
  font-size: 14px;
  color: var(--brand-gold-light);
  letter-spacing: 4px;
  font-weight: 500;
}
.footer-tagline {
  color: var(--text-on-dark-muted);
  margin-top: var(--s-4);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-meta {
  margin-top: var(--s-4);
  font-size: 13px;
  color: var(--text-on-dark-muted);
  line-height: 1.9;
}
.footer-meta a { color: var(--text-on-dark-muted); }
.footer-meta a:hover { color: var(--brand-gold-light); text-decoration: none; }

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  margin-bottom: var(--s-4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
}
.footer-col a:hover { color: var(--brand-gold-light); text-decoration: none; }
.footer .btn-gold,
.footer .btn-gold:hover { color: var(--brand-navy-ink); text-decoration: none; }
.footer .btn-navy,
.footer .btn-navy:hover { color: #fff; text-decoration: none; }
.footer-cta { display: flex; flex-direction: column; gap: var(--s-3); align-items: flex-start; }
.footer-cta p {
  color: var(--text-on-dark-muted);
  font-size: 14px;
  margin-bottom: var(--s-2);
}
.footer-legal {
  margin-top: var(--s-12);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(234, 241, 250, .08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  color: var(--text-on-dark-muted);
  font-size: 12.5px;
  position: relative;
}
.footer-legal a { color: var(--text-on-dark-muted); }
.footer-legal a:hover { color: var(--brand-gold-light); text-decoration: none; }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 49;
  padding: var(--s-8) var(--gutter);
  display: flex; flex-direction: column; gap: var(--s-3);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a.m-link {
  font-size: 18px;
  color: var(--brand-navy);
  font-weight: 600;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .m-lang {
  display: inline-flex;
  align-items: center; gap: 4px;
  margin-top: var(--s-4);
}
.mobile-menu .m-lang button,
.mobile-menu .m-lang a {
  border: 0; background: transparent;
  padding: 8px 6px; font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
}
.mobile-menu .m-lang .sep { color: var(--border); }
.mobile-menu .m-lang button.is-active,
.mobile-menu .m-lang a.is-active { color: var(--brand-navy); }
.mobile-menu .btn { align-self: flex-start; margin-top: var(--s-4); }

/* ---------- RESPONSIVE (shared) ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
}

@media (max-width: 880px) {
  :root { --gutter: 20px; }
  .nav-main, .nav-end .btn, .nav-end .lang-switch { display: none; }
  .hamburger { display: inline-block; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: var(--s-8); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .footer-cta { grid-column: 1 / -1; }
}

@media (min-width: 881px) {
  .mobile-menu { display: none; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: var(--s-2); }
  .section-title { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- MACHINE-TRANSLATION DRAFT BANNER (de/en, pre-review) ---------- */
.mt-draft-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto var(--s-6);
  padding: 12px 18px;
  background: #FBF3E0;
  border: 1px solid var(--brand-gold-light);
  border-radius: 8px;
  color: var(--brand-gold-ink);
  font-size: 14px;
  line-height: 1.5;
}
.mt-draft-dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand-gold);
}
.mt-draft-msg { font-weight: 600; }
.mt-draft-link {
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: underline;
  white-space: nowrap;
}
.mt-draft-link:hover { color: var(--brand-blue); }

/* ============================================================
 * 品牌勾选框（全局）——Forminator 同意/单选 checkbox。
 * 隐藏原生框，把 .forminator-checkbox-box 画成与表单输入一致的品牌方框：
 * 圆角描边空框 → 勾选时 navy 填充 + 白勾。仅命中 .forminator-consent，
 * 不影响 join 页的兴趣「chip」复选（.forminator-checkbox-inline）。
 * Forminator 默认特异度约 (0,4,0)，关键属性用 !important。
 * ============================================================ */
.forminator-checkbox.forminator-consent {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.forminator-checkbox.forminator-consent input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important; height: 1px !important;
  margin: 0 !important;
}
.forminator-checkbox.forminator-consent .forminator-checkbox-box {
  width: 20px !important; height: 20px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 5px !important;
  background: var(--bg) !important;
  display: inline-block !important;
  position: relative;
  flex-shrink: 0;
  transition: border-color .15s ease, background .15s ease;
}
.forminator-checkbox.forminator-consent input:checked + .forminator-checkbox-box {
  background: var(--brand-navy) !important;
  border-color: var(--brand-navy) !important;
}
.forminator-checkbox.forminator-consent input:checked + .forminator-checkbox-box::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.forminator-checkbox.forminator-consent input:focus-visible + .forminator-checkbox-box {
  box-shadow: 0 0 0 4px rgba(46, 109, 180, .12) !important;
  border-color: var(--brand-blue) !important;
}

/* ============================================================
 * 品牌表单（全局）——所有 Forminator 自定义表单的通用外观。
 * 默认单列；.formcard 容器可覆盖为双列（见各表单页 CSS）。
 * 输入/文本域圆角描边 + 焦点蓝光；label 藏起靠 placeholder；提交按钮 navy pill。
 * 兴趣「chip」多选（.forminator-checkbox-inline）与同意勾选框各自另有样式。
 * Forminator 默认特异度约 (0,4,0)，关键属性用 !important。
 * ============================================================ */
.forminator-custom-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  align-content: start;
}
.forminator-custom-form > * { grid-column: 1 / -1; min-width: 0; }
.forminator-custom-form .forminator-row,
.forminator-custom-form .forminator-col,
.forminator-custom-form .forminator-field {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
}
.forminator-custom-form .forminator-response-message:empty { display: none !important; }
.forminator-custom-form .forminator-label {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px !important; padding: 0 !important;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0 !important;
}
.forminator-custom-form .forminator-input,
.forminator-custom-form .forminator-textarea {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  font-size: 15px !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.forminator-custom-form .forminator-textarea {
  --forminator-textarea-min-height: 130px;
  min-height: 130px !important;
  resize: vertical;
}
.forminator-custom-form .forminator-input::placeholder,
.forminator-custom-form .forminator-textarea::placeholder { color: #9AA5B6 !important; opacity: 1; }
.forminator-custom-form .forminator-input:focus,
.forminator-custom-form .forminator-textarea:focus {
  outline: none !important;
  border-color: var(--brand-blue) !important;
  box-shadow: 0 0 0 4px rgba(46, 109, 180, .12) !important;
}
.forminator-custom-form .forminator-checkbox__wrapper {
  display: flex; align-items: flex-start; gap: 10px; margin-top: var(--s-1);
}
.forminator-custom-form .forminator-checkbox__label {
  color: var(--text-muted) !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}
.forminator-custom-form .forminator-checkbox__label a { color: var(--brand-blue) !important; }
.forminator-custom-form .forminator-button-submit {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  width: auto !important;
  margin-top: var(--s-2);
  padding: 12px 24px !important;
  border: 1.5px solid transparent !important;
  border-radius: var(--radius-pill) !important;
  background: var(--brand-navy) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  font-family: inherit;
  cursor: pointer;
  box-shadow: none !important;
  transition: transform .15s ease, background .15s ease;
}
.forminator-custom-form .forminator-button-submit:hover {
  background: var(--brand-navy-ink) !important;
  transform: translateY(-1px);
}

/* ============================================================
 * pasco-members 插件表单（注册/登录 .pmv-form）——品牌样式，与其它表单一致。
 * 结构：<p><label>标签<br><input></label></p>；无 placeholder，故标签保留可见。
 * 同意行为原生 checkbox，用 appearance:none 画成品牌方框。
 * ============================================================ */
.pmv-form { display: flex; flex-direction: column; gap: var(--s-3); }
.pmv-form p { margin: 0; }
.pmv-form > p > label {
  display: block;
  font-size: 13px; font-weight: 600; color: var(--brand-navy);
  letter-spacing: .2px;
}
.pmv-form input[type="text"],
.pmv-form input[type="email"],
.pmv-form input[type="password"] {
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pmv-form input::placeholder { color: #9AA5B6; }
.pmv-form input[type="text"]:focus,
.pmv-form input[type="email"]:focus,
.pmv-form input[type="password"]:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(46, 109, 180, .12);
}
/* 同意行：checkbox + 文字一行 */
.pmv-form label:has(> input[type="checkbox"]) {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 400; color: var(--text-muted);
  font-size: 13.5px; line-height: 1.55; cursor: pointer;
}
.pmv-form input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; margin: 1px 0 0; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 5px;
  background: var(--bg); cursor: pointer; position: relative;
  transition: background .15s ease, border-color .15s ease;
}
.pmv-form input[type="checkbox"]:checked {
  background: var(--brand-navy); border-color: var(--brand-navy);
}
.pmv-form input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pmv-form input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(46, 109, 180, .12);
  border-color: var(--brand-blue);
}
.pmv-form button[type="submit"] { align-self: flex-start; margin-top: var(--s-1); }
