@charset "UTF-8";
/* Keystone theme. PageMotor 0.8.3b. Dignified deep-teal palette.
   Source Serif 4 (display + body) + Public Sans (UI / captions). */
/* GRT bridge: Design Options take priority, source design values fall back. */
:root {
  --font1: "Source Serif 4", serif;
  --font2: "Public Sans", sans-serif;
  --font3: "Public Sans", sans-serif;
  /* font-size literal (PM does not expose as design opt) */
  --font-size: 18px;
  --f1: 47px;
  --f2: 37px;
  --f3: 29px;
  --f4: 23px;
  --f5: 18px;
  --f6: 14px;
  --g1: 73px;
  --g2: 59px;
  --g3: 47px;
  --g4: 38px;
  --g5: 31px;
  --g6: 25px;
  --x1: 50px;
  --x2: 31px;
  --x3: 19px;
  --x4: 12px;
  --x5: 7px;
  --x6: 4px;
  --b1: 360px;
  --b2: 540px;
  --b3: 720px;
  --b4: 1240px;
  --b5: 1240px;
  --phi: 1.6180339887;
  --w-content: 672px;
  --w-total: 1240px;
  --gutter-full: 48px;
  --gutter-mobile: 24px;
  --bg1: rgb(245, 244, 239);
  --bg2: rgb(236, 234, 227);
  --c1: rgb(26, 26, 31);
  --c2: rgb(90, 90, 96);
  --ca: rgb(42, 90, 111);
  /* secondary literal (PM does not expose as design opt) */
  --secondary: #5A4A7AFF;
  --border1: 1px solid #D8D5CCFF;
  --border2: 1px solid #E5E2D9FF;
  --border3: 1px dashed #D8D5CCFF;
  --font-headline: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-heading: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-drop-cap: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-caption: "Public Sans", sans-serif;
  --font-blockquote: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-impact: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-byline: "Public Sans", sans-serif;
  --font-title: "Source Serif 4", Georgia, "Times New Roman", serif;
  --f-title: 23px;
  --f-byline: 14px;
  --g-title: 38px;
  --g-byline: 25px;
  --p-bleed-top: 50px;
  --p-bleed-bottom: 50px;
  --m-bleed-top: 0;
  --m-bleed-bottom: 0;
  --p-content-top: 50px;
  --p-content-bottom: 50px;
  --p-callout: 19px 31px;
  --p-button-x: 19px;
  --p-button-y: 12px;
  --b-input: 1px solid #D8D5CCFF;
  --b-textarea: 1px solid #D8D5CCFF;
  --b-select: 1px solid #D8D5CCFF;
  --bg-callout: rgb(226, 234, 237);
  --bg-callout-alert: rgb(239, 224, 213);
  --bg-callout-note: rgb(229, 224, 235);
  --c-callout: #111111;
  --c-callout-alert: #111111;
  --c-callout-note: #111111;
  --bg-button: rgb(42, 90, 111);
  --bg-button-save: rgb(47, 106, 72);
  --bg-button-action: rgb(90, 74, 122);
  --bg-button-update: rgb(245, 244, 239);
  --bg-button-delete: rgb(138, 42, 31);
  --c-button: #FFFFFF;
  --c-button-save: #FFFFFF;
  --c-button-action: #FFFFFF;
  --c-button-update: #111111;
  --c-button-delete: #FFFFFF;
  --bg-highlight: rgb(200, 220, 226);
  --bg-pre: #ECEAE3FF;
  --c-pre: #1A1A1FFF;
  --bg-blockquote: transparent;
  --c-blockquote: rgb(26, 26, 31);
  --c-impact: rgb(42, 90, 111);
  --c-drop-cap: rgb(42, 90, 111);
  --c-caption: rgb(90, 90, 96);
  --c-byline: rgb(90, 90, 96);
  /* Auxiliary palette tokens — not exposed as Design Options. */
  --callout-default-bd: #2A5A6FFF;
  --callout-alert-bd: #B86A2AFF;
  --callout-note-bd: #5A4A7AFF;
  --selection-bg: #2A5A6FFF;
  --selection-fg: #F5F4EFFF;
  /* Visual-language stroke weights */
  --vl-stroke: 1.5;
  --vl-stroke-fine: 1;
  /* Theme-level token for fluid section padding. */
  --section-padding: calc(var(--x1) * var(--phi));
}

/* Box-sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Body and structural foundations */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  font-weight: 400;
  overflow-x: hidden;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-fg);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

.container {
  box-sizing: border-box;
  width: calc(100% - 2 * var(--gutter-mobile));
  max-width: var(--w-total);
  margin-inline: auto;
}
@media all and (min-width: 720px) {
  .container {
    width: calc(100% - 2 * var(--gutter-full));
  }
}
@media all and (min-width: 1240px) {
  .container {
    width: 100%;
    max-width: var(--w-total);
    margin-left: auto;
    margin-right: auto;
  }
}

.text, .measure {
  max-width: var(--w-content);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-tight {
  padding-top: var(--x1);
  padding-bottom: var(--x1);
}

.section-bg2 {
  background-color: var(--bg2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* Aspect ratio utilities */
.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-4-5 {
  aspect-ratio: 4/5;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

/* Common content elements (global typography) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--c1);
  font-weight: 500;
  margin: 0 0 var(--x3) 0;
}

h1 {
  font-size: var(--f1);
  line-height: var(--g1);
  font-weight: 500;
}

h2 {
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 500;
}

h3 {
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 500;
}

h4 {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 600;
}

h5 {
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 600;
}

h6 {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 var(--x2) 0;
  font-size: var(--f5);
  line-height: var(--g5);
}

a {
  color: var(--c1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: var(--ca);
  transition: text-decoration-color 240ms ease, color 240ms ease;
}
a:hover {
  text-decoration-color: var(--c1);
  color: var(--c1);
}
a:focus-visible {
  outline: 2px solid var(--ca);
  outline-offset: 3px;
  text-decoration-color: var(--c1);
}

blockquote {
  font-family: var(--font-blockquote);
  color: var(--c-blockquote);
  background-color: var(--bg-blockquote);
  padding: 0;
  border: 0;
  font-style: normal; /* HR81 reset */
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 500;
  margin: 0 0 var(--x2) 0;
}
blockquote > :last-child {
  margin-bottom: 0; /* HR92 trailing cleanup */
}

cite {
  display: block;
  font-family: var(--font-caption);
  font-style: normal;
  font-weight: 500;
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c2);
  margin-top: var(--x4);
}

sub, sup {
  line-height: 0.5em;
  color: var(--c2);
}

code, pre, kbd {
  font-family: var(--font3);
  font-size: var(--f6);
  line-height: var(--g6);
}

code {
  background-color: var(--bg2);
  padding: 0.12em 0.36em;
  border-radius: 2px;
  font-size: 0.92em;
}

pre {
  color: var(--c-pre);
  background-color: var(--bg-pre);
  padding: var(--x3);
  font-size: var(--f6);
  line-height: var(--g6);
  overflow-x: auto;
  border-left: 3px solid var(--ca);
  margin: 0 0 var(--x2) 0;
}
pre > code {
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

hr {
  border: 0;
  border-top: 1px solid #d8d5cc;
  margin: var(--x1) 0;
}

svg {
  width: var(--f5);
  height: var(--f5);
  vertical-align: text-bottom;
}

ul, ol {
  margin: 0 0 var(--x2) 0;
  padding-left: var(--x2);
}

li {
  margin: 0;
  font-size: var(--f5);
  line-height: var(--g5);
}

.text-link {
  display: inline-block;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c1);
  border-bottom: 1px solid var(--ca);
  padding-bottom: var(--x6);
}
.text-link:hover {
  border-bottom-color: var(--c1);
  color: var(--c1);
  text-decoration: none;
}

.text-link-light {
  color: var(--bg1);
  border-bottom-color: rgba(245, 244, 239, 0.5);
}
.text-link-light:hover {
  color: var(--bg1);
  border-bottom-color: var(--bg1);
}

.lede {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 400;
  color: var(--c1);
  margin-bottom: var(--x2);
  max-width: var(--w-content);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--x2) 0;
  font-size: var(--f6);
  line-height: var(--g6);
}
table th {
  font-family: var(--font2);
  font-weight: 600;
  text-align: left;
  padding: var(--x5) var(--x4);
  border-bottom: 1px solid #d8d5cc;
  color: var(--c2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
table td {
  padding: var(--x5) var(--x4);
  border-bottom: 1px solid #e5e2d9;
  color: var(--c1);
  vertical-align: top;
}

/* Dynamic content (.page-content scope) */
.page-container + .page-container {
  margin-top: var(--x1);
}

.page-content {
  padding-top: var(--x2);
  padding-bottom: var(--x2);
}
.page-content h1 {
  margin-bottom: var(--x2);
}
.page-content h2 {
  margin-top: var(--x1);
  margin-bottom: var(--x2);
}
.page-content h3 {
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}
.page-content h4 {
  margin-bottom: var(--x4);
}
.page-content h1 + h2, .page-content h2 + h3, .page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content hr + h2 {
  margin-top: 0;
}
.page-content > :last-child {
  margin-bottom: 0;
}
.page-content ul {
  list-style-type: disc;
  padding-left: var(--x2);
}
.page-content ol {
  padding-left: var(--x2);
}
.page-content ul ul, .page-content ul ol, .page-content ol ul, .page-content ol ol {
  margin-top: var(--x4);
  margin-bottom: 0;
  margin-left: var(--x2);
}
.page-content li {
  margin-bottom: var(--x4);
  font-size: var(--f5);
  line-height: var(--g5);
}
.page-content li:last-child {
  margin-bottom: 0;
}
.page-content .callout > :last-child {
  margin-bottom: 0;
}
.page-content p, .page-content ul, .page-content ol, .page-content blockquote, .page-content pre, .page-content img, .page-content .callout, .page-content .caption, .page-content figure, .page-content table {
  margin-bottom: var(--x2);
}
.page-content p:last-child, .page-content ul:last-child, .page-content ol:last-child, .page-content blockquote:last-child, .page-content pre:last-child, .page-content img:last-child, .page-content .callout:last-child, .page-content .caption:last-child, .page-content figure:last-child, .page-content table:last-child {
  margin-bottom: 0;
}
.page-content .measure {
  max-width: var(--w-content);
}
.page-content .container {
  max-width: var(--w-content);
}

.page-title {
  font-family: var(--font-headline);
  font-weight: 500;
}
.page-title a {
  color: var(--c1);
}
.page-title a:hover {
  color: var(--ca);
}

.byline {
  font-family: var(--font-byline);
  font-size: var(--f-byline);
  line-height: var(--g-byline);
  color: var(--c-byline);
  margin-bottom: var(--x2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-container, .headline-area, .page-content {
  display: flow-root;
}

.page-content + .modular-content {
  margin-top: var(--x2);
}
.modular-content > :last-child {
  margin-bottom: 0;
}

/* Forms */
label {
  display: block;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c2);
  margin-bottom: var(--x5);
}
label .required {
  font-weight: normal;
  color: var(--secondary);
}

input, textarea, select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 400;
  color: var(--c1);
  background-color: var(--bg1);
  padding: var(--x4) var(--x3);
  border: var(--b-input);
  transition: border-color 240ms ease;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--ca);
  outline-offset: 0;
  border-color: var(--ca);
}

input[type=checkbox], input[type=radio], input[type=image], input[type=submit], select {
  width: auto;
}

input[type=checkbox], input[type=radio] {
  display: inline-block;
}
input[type=checkbox] + label, input[type=radio] + label {
  display: inline;
  font-weight: normal;
  margin-left: var(--x6);
  text-transform: none;
  letter-spacing: normal;
  color: var(--c1);
  user-select: none;
}

textarea {
  line-height: var(--g5);
  min-height: 8em;
  resize: vertical;
  border: var(--b-textarea);
}

select {
  border: var(--b-select);
}

form input,
form textarea,
form select,
form fieldset {
  margin-bottom: var(--x2);
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=number],
form textarea,
form select {
  width: 100%;
}

form fieldset {
  border: 1px solid #d8d5cc;
  padding: var(--x3);
}

form legend {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c2);
  padding: 0 var(--x4);
}

form .field-group {
  margin-bottom: var(--x2);
}

form .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x3);
  margin-bottom: var(--x2);
}
@media all and (min-width: 720px) {
  form .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Buttons (.button + variants, never .btn) */
button, input[type=submit], .button {
  display: inline-block;
  width: auto;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: 1em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  vertical-align: top;
  color: var(--c-button);
  background-color: var(--bg-button);
  padding: var(--x4) var(--p-button-x);
  border: 1px solid var(--bg-button);
  border-radius: 0;
  cursor: pointer;
  user-select: none;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}
button:hover, button:active, input[type=submit]:hover, input[type=submit]:active, .button:hover, .button:active {
  background-color: #1f4555;
  border-color: #1f4555;
  color: var(--c-button);
  text-decoration: none;
}
button:focus-visible, input[type=submit]:focus-visible, .button:focus-visible {
  outline: 2px solid var(--ca);
  outline-offset: 3px;
}

button.save, .button.save {
  color: var(--c-button-save);
  background-color: var(--bg-button-save);
  border-color: var(--bg-button-save);
}
button.save:hover, button.save:active, .button.save:hover, .button.save:active {
  background-color: #245436;
  border-color: #245436;
  color: var(--c-button-save);
}

button.action, .button.action {
  color: var(--c-button-action);
  background-color: var(--bg-button-action);
  border-color: var(--bg-button-action);
}
button.action:hover, button.action:active, .button.action:hover, .button.action:active {
  background-color: #463a5f;
  border-color: #463a5f;
  color: var(--c-button-action);
}

button.update, .button.update {
  color: var(--c-button-update);
  background-color: var(--bg-button-update);
  border-color: var(--ca);
}
button.update:hover, button.update:active, .button.update:hover, .button.update:active {
  background-color: var(--ca);
  border-color: var(--ca);
  color: var(--bg1);
}

button.delete, .button.delete {
  color: var(--c-button-delete);
  background-color: var(--bg-button-delete);
  border-color: var(--bg-button-delete);
}
button.delete:hover, button.delete:active, .button.delete:hover, .button.delete:active {
  background-color: #6e2118;
  border-color: #6e2118;
  color: var(--c-button-delete);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--x3);
}

.button-group-spaced {
  margin-top: var(--x2);
}

@keyframes cta-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
.cta-pulse {
  display: inline-block;
  animation: cta-pulse 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .cta-pulse {
    animation: none;
  }
}

/* .callout (default + .alert + .note) */
.callout {
  color: var(--c-callout);
  background-color: var(--bg-callout);
  padding: var(--p-callout);
  border-left: 3px solid var(--callout-default-bd);
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x2);
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.alert {
  color: var(--c-callout-alert);
  background-color: var(--bg-callout-alert);
  border-left-color: var(--callout-alert-bd);
}
.callout.note {
  color: var(--c-callout-note);
  background-color: var(--bg-callout-note);
  border-left-color: var(--callout-note-bd);
}

/* Formatting primitives (.drop-cap, .small, .highlight, .impact, .pop, .caption) */
.drop-cap::first-letter {
  font-family: var(--font-drop-cap);
  font-size: var(--f1);
  line-height: 0.92;
  font-weight: 600;
  color: var(--c-drop-cap);
  float: left;
  padding-right: var(--x4);
  padding-top: var(--x6);
}

.small {
  font-family: var(--font-caption);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c-caption);
  letter-spacing: 0.04em;
}

.highlight {
  background-color: var(--bg-highlight);
  color: var(--c1);
  padding: 0.04em 0.18em;
  border-radius: 1px;
}

.impact {
  font-family: var(--font-impact);
  font-size: var(--f1);
  line-height: var(--g1);
  color: var(--c-impact);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
}

.pop {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 600;
  color: var(--ca);
}

.caption {
  font-family: var(--font-caption);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.caption code {
  font-size: var(--f6);
  line-height: var(--g6);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c1);
  color: var(--bg1);
  padding: var(--x4) var(--x3);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus {
  left: var(--x3);
  top: var(--x3);
}

/* Visual language family: civic stamp / wax seal (keystone wedge, three-stone arch,
   measuring rule, civic seal). Clean geometric paths, no turbulence filters. */
/* Shared SVG mark styling */
.keystone-svg, .arch-svg, .measure-rule-svg, .seal-svg {
  display: inline-block;
  height: auto;
  width: auto;
  overflow: visible;
}

/* Keystone wedge paths */
.keystone-svg .stroke,
.arch-svg .stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--vl-stroke);
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.keystone-svg .stroke-fine,
.arch-svg .stroke-fine {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--vl-stroke-fine);
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

/* Measuring rule paths */
.measure-rule-svg .axis {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--vl-stroke);
  stroke-linecap: square;
  vector-effect: non-scaling-stroke;
}

.measure-rule-svg .tick {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--vl-stroke-fine);
  stroke-linecap: square;
  vector-effect: non-scaling-stroke;
}

.measure-rule-svg .tick-major {
  stroke-width: var(--vl-stroke);
}

/* Civic seal */
.seal-svg .stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--vl-stroke);
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.seal-svg .stroke-fine {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--vl-stroke-fine);
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.seal-svg .seal-text {
  fill: currentColor;
  font-family: "Public Sans", -apple-system, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seal-svg .seal-star {
  fill: currentColor;
  stroke: none;
}

/* Section mark (horizontal rule substitute with measuring rule) */
.section-mark {
  display: flex;
  justify-content: flex-start;
  margin-bottom: var(--x2);
  color: var(--c2);
}
.section-mark .measure-rule-svg {
  width: 96px;
}

/* Wordmark and brandmark composition (mark + wordmark inline-flex per HR93) */
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
  text-decoration: none;
  color: var(--c1);
  flex-shrink: 0;
}
.brandmark:hover {
  text-decoration: none;
}
.brandmark .keystone-svg {
  width: 30px;
  color: var(--ca);
}
.brandmark .wordmark {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 600;
  font-size: var(--f4);
  line-height: 1.05;
  color: var(--c1);
}
.brandmark .wordmark .accent {
  color: var(--ca);
}

/* Header / nav (Pattern A, hamburger mobile) */
.site-header {
  padding-top: var(--x3);
  padding-bottom: var(--x3);
  background-color: var(--bg1);
  border-bottom: var(--border2);
  position: relative;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--x2);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--x2);
}
.primary-nav ul {
  display: flex;
  gap: var(--x2);
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav li {
  margin: 0;
}
.primary-nav a {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c1);
  padding: var(--x5) 0;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease;
  white-space: nowrap;
}
.primary-nav a:hover {
  border-bottom-color: var(--ca);
}
.primary-nav a[aria-current=page] {
  border-bottom-color: var(--ca);
}

.nav-cta {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg1);
  background-color: var(--ca);
  padding: var(--x4) var(--x3);
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 240ms ease;
}
.nav-cta:hover {
  background-color: #1f4555;
  color: var(--bg1);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c1);
  padding: var(--x4) var(--x3);
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c1);
  cursor: pointer;
}

.breadcrumbs {
  width: 100%;
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  margin: 0;
}
.breadcrumbs li::after {
  content: " /";
  margin: 0 var(--x5);
  color: var(--c2);
}
.breadcrumbs li:last-child::after {
  content: "";
}
.breadcrumbs a {
  color: var(--c2);
  text-decoration: underline;
  text-decoration-color: transparent;
}
.breadcrumbs a:hover {
  text-decoration-color: var(--ca);
}

@media all and (max-width: 719px) {
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg1);
    border-bottom: 1px solid #d8d5cc;
    padding: var(--x2) var(--gutter-mobile);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--x3);
    z-index: 100;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: var(--x3);
    width: 100%;
  }
  .primary-nav a {
    font-size: var(--f5);
    line-height: var(--g5);
  }
  .nav-toggle {
    display: inline-block;
  }
}
/* Kicker / eyebrow register (Public Sans uppercase with optional measuring-rule prefix) */
.kicker {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c2);
  margin-bottom: var(--x4);
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
}
.kicker .measure-rule-svg {
  flex-shrink: 0;
  color: var(--ca);
}

/* Method block kicker uses lighter teal for legibility on dark bg */
.method-block .kicker {
  color: #8fb3c0;
}
.method-block .kicker .measure-rule-svg {
  color: #8fb3c0;
}

/* Hero: full-bleed photograph with overlaid copy and corner civic seal */
.hero {
  position: relative;
  background-color: var(--bg2);
  padding: 0;
  overflow: hidden;
}
.hero h1 {
  font-family: var(--font1);
  font-weight: 500;
  font-size: var(--f1);
  line-height: var(--g1);
  letter-spacing: -0.005em;
  margin-bottom: var(--x3);
  color: var(--c1);
}

.hero-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg2);
}
.hero-figure img, .hero-figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 31, 0.05) 0%, rgba(26, 26, 31, 0) 38%, rgba(245, 244, 239, 0.2) 70%, rgba(245, 244, 239, 0.55) 100%);
  pointer-events: none;
}

.hero-corner-mark {
  position: absolute;
  bottom: var(--x2);
  right: var(--gutter-mobile);
  z-index: 2;
  color: var(--bg1);
}
.hero-corner-mark .seal-svg {
  width: 92px;
  filter: drop-shadow(0 1px 2px rgba(26, 26, 31, 0.35));
}
@media all and (min-width: 720px) {
  .hero-corner-mark {
    right: var(--gutter-full);
  }
  .hero-corner-mark .seal-svg {
    width: 132px;
  }
}

.hero-overlay {
  position: relative;
  margin-top: calc(var(--x1) * -2);
  padding-bottom: var(--x1);
  z-index: 3;
}
.hero-overlay .container {
  max-width: var(--w-total);
}

.hero-overlay-inner {
  max-width: 720px;
}

.hero-meta {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c2);
  margin-bottom: var(--x3);
}

.hero-subline {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 500;
  color: var(--c2);
  margin-bottom: var(--x2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--x3);
  margin-top: var(--x3);
}

@media all and (max-width: 719px) {
  .hero-figure {
    aspect-ratio: 4/5;
  }
  .hero-overlay {
    margin-top: calc(var(--x2) * -1);
  }
  .hero h1 {
    font-size: var(--f2);
    line-height: var(--g2);
  }
  .hero-subline {
    font-size: var(--f5);
    line-height: var(--g5);
  }
}
/* Mission stack: three-line typographic statement with measuring-rule dividers */
.mission-stack {
  background-color: var(--bg1);
}
.mission-stack .container {
  max-width: var(--w-content);
}

.mission-stack-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--x3);
  align-items: flex-start;
  padding: var(--x3) 0;
  border-bottom: 1px solid #e5e2d9;
}
.mission-stack-line:first-of-type {
  border-top: 1px solid #e5e2d9;
}
.mission-stack-line .measure-rule-svg {
  width: 12px;
  margin-top: var(--x5);
  color: var(--ca);
  flex-shrink: 0;
}
.mission-stack-line p {
  font-family: var(--font1);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 400;
  margin: 0;
}
.mission-stack-line p em {
  font-style: italic;
  font-weight: 600;
  color: var(--ca);
}

/* Programmes row list: editorial-row list with keystone stamp */
.programmes-row {
  background-color: var(--bg2);
}
.programmes-row h2 {
  max-width: var(--w-content);
  margin-bottom: var(--x3);
}
.programmes-row .lede {
  margin-bottom: var(--x2);
}

.programme-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--x3);
  align-items: flex-start;
  padding: var(--x3) 0;
  border-bottom: 1px solid #d8d5cc;
}
.programme-row:first-of-type {
  border-top: 1px solid #d8d5cc;
  margin-top: var(--x2);
}

.programme-stamp {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: var(--x5);
  color: var(--ca);
}
.programme-stamp .keystone-svg {
  width: 24px;
}

.programme-row-body h3.programme-row-name {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 600;
  margin-bottom: var(--x5);
  color: var(--c1);
}

.programme-row-summary {
  color: var(--c1);
  margin-bottom: var(--x5);
}

.programme-row-meta {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--x4);
}

.programme-row-link {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ca);
  text-decoration: none;
  border-bottom: 1px solid var(--ca);
  padding-bottom: 2px;
}
.programme-row-link:hover {
  border-bottom-color: var(--c1);
  color: var(--c1);
}

/* Method block: full-bleed video with dark background overlay */
.method-block {
  position: relative;
  background-color: var(--c1);
  color: var(--bg1);
  padding: 0;
  overflow: hidden;
}

.method-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.method-figure video, .method-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.method-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 31, 0.3) 0%, rgba(26, 26, 31, 0.6) 100%);
  pointer-events: none;
}

.method-block .container {
  position: relative;
  z-index: 2;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.method-block h2 {
  color: var(--bg1);
  max-width: var(--w-content);
  margin-bottom: var(--x2);
}

.method-block p {
  color: #c8dce2;
  max-width: var(--w-content);
}

.method-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--x3);
  margin-top: var(--x2);
  padding-top: var(--x2);
  border-top: 1px solid rgba(245, 244, 239, 0.2);
}
@media all and (min-width: 720px) {
  .method-data {
    grid-template-columns: repeat(4, 1fr);
  }
}

.method-data-cell {
  display: flex;
  flex-direction: column;
  gap: var(--x6);
}

.data-label {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8fb3c0;
}

.data-value {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--bg1);
  font-weight: 500;
}

@media all and (max-width: 719px) {
  .method-figure {
    aspect-ratio: 4/5;
  }
}
/* People band: editorial portrait grid with autoplay video */
.people-band {
  background-color: var(--bg1);
}
.people-band .section-intro {
  margin-bottom: var(--x2);
  max-width: var(--w-content);
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 540px) {
  .people-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 960px) {
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.person {
  display: flex;
  flex-direction: column;
}

.person-figure {
  margin: 0 0 var(--x3) 0;
}
.person-figure img, .person-figure video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.person-quote {
  font-family: var(--font1);
  font-style: italic;
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 500;
  color: var(--c1);
  padding: 0;
  border: 0;
  margin: 0 0 var(--x4) 0;
}
.person-quote p {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.person-credit {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c2);
  margin: 0;
}

.person-name {
  display: block;
  color: var(--c1);
  font-weight: 600;
  margin-bottom: var(--x6);
}

/* Detail moment: three-stone arch graphic + editorial text + photograph */
.detail-moment {
  background-color: var(--bg2);
}
.detail-moment .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 720px) {
  .detail-moment .container {
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: start;
  }
}

.detail-arch-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.detail-arch-side .arch-svg {
  width: 100%;
  max-width: 320px;
  color: var(--ca);
}

.detail-text-side h2 {
  margin-bottom: var(--x3);
}
.detail-text-side p {
  max-width: var(--w-content);
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Numbers band: restrained stat blocks anchored by measuring rules */
.numbers-band {
  background-color: var(--bg1);
}
.numbers-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--x3);
}
@media all and (min-width: 720px) {
  .numbers-band .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.number-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--x4);
}
.number-block .measure-rule-svg {
  width: 12px;
  flex-shrink: 0;
  margin-top: var(--x5);
  color: var(--ca);
}

.number-block-body {
  display: flex;
  flex-direction: column;
  gap: var(--x5);
}
.number-block-body .impact {
  font-size: var(--f1);
  line-height: 1;
  color: var(--ca);
}

.number-block-label {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c2);
}

/* Get Involved band: three pathway rows with civic seal section mark */
.involved-band {
  background: radial-gradient(ellipse at 60% 40%, #e2eaed 0%, var(--bg2) 70%);
}
.involved-band .section-intro {
  margin-bottom: var(--x2);
}
.involved-band .section-intro h2 {
  max-width: var(--w-content);
  margin-bottom: var(--x3);
}
.involved-band .section-intro .lede {
  max-width: var(--w-content);
}
.involved-band .section-mark {
  margin-bottom: var(--x3);
  color: var(--ca);
}
.involved-band .section-mark .seal-svg {
  width: 96px;
}

.pathway-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x4);
  padding: var(--x3) 0;
  border-bottom: 1px solid #d8d5cc;
}
.pathway-row:first-of-type {
  border-top: 1px solid #d8d5cc;
  margin-top: var(--x2);
}
@media all and (min-width: 720px) {
  .pathway-row {
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
  }
}

.pathway-row-name {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 600;
  color: var(--c1);
  margin: 0;
}

.pathway-row-summary {
  color: var(--c1);
  margin: 0;
}

.pathway-row-action {
  flex-shrink: 0;
}

/* Final CTA: restrained single-button conversion block */
.final-cta {
  background: radial-gradient(ellipse at 40% 60%, #c8dce2 0%, var(--bg1) 60%);
}
.final-cta h2 {
  max-width: var(--w-content);
  margin-bottom: var(--x3);
}
.final-cta p {
  max-width: var(--w-content);
  margin-bottom: var(--x2);
}
.final-cta .measure-rule-svg {
  width: 120px;
  margin-top: var(--x2);
  color: var(--c2);
}

/* Interior page intro: kicker, h1, lede on bg2 */
.page-intro {
  background-color: var(--bg2);
}
.page-intro h1 {
  max-width: var(--w-content);
  margin-bottom: var(--x3);
}
.page-intro .lede {
  max-width: var(--w-content);
}
.page-intro .kicker {
  display: block;
  margin-bottom: var(--x3);
}

/* Programmes detail: programme-detail sections with marker + text + meta dl */
.programme-detail:nth-child(even) {
  background-color: var(--bg2);
}
.programme-detail .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x3);
}
@media all and (min-width: 720px) {
  .programme-detail .container {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }
}

.programme-detail-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--x4);
  padding-top: var(--x5);
  color: var(--ca);
}

.programme-detail-number {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c2);
}

.programme-detail-marker .keystone-svg {
  width: 30px;
}

.programme-detail-text h2 {
  margin-bottom: var(--x3);
}
.programme-detail-text p {
  max-width: var(--w-content);
}

.programme-detail-meta {
  display: flex;
  flex-direction: column;
  gap: var(--x4);
  min-width: 220px;
  border-left: 1px solid #d8d5cc;
  padding-left: var(--x3);
}
@media all and (max-width: 719px) {
  .programme-detail-meta {
    border-left: 0;
    border-top: 1px solid #d8d5cc;
    padding-left: 0;
    padding-top: var(--x3);
  }
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: var(--x6);
}
.meta-row dt {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c2);
}
.meta-row dd {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  margin: 0;
}

/* People detail: team-card grid for leadership, mentor, board sections */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
  margin-top: var(--x2);
}
@media all and (min-width: 540px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  display: flex;
  flex-direction: column;
}
.team-card .person-figure {
  margin-bottom: var(--x3);
}
.team-card .person-figure img, .team-card .person-figure video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.team-card .role {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ca);
  margin: 0 0 var(--x5) 0;
}
.team-card h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  margin-bottom: var(--x3);
}
.team-card p {
  font-size: var(--f5);
  line-height: var(--g5);
  margin-bottom: var(--x3);
}
.team-card .neighbourhood {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* Involved detail: three pathway sections with civic seal headers and donation tiers */
.involved-detail .container {
  max-width: var(--w-content);
}
@media all and (min-width: 960px) {
  .involved-detail .container {
    max-width: var(--w-total);
  }
}

.involved-detail-header {
  display: flex;
  flex-direction: column;
  gap: var(--x3);
  margin-bottom: var(--x2);
}
.involved-detail-header .seal-svg {
  width: 132px;
  color: var(--ca);
}
.involved-detail-header h2 {
  margin: 0;
}
.involved-detail-header p {
  max-width: var(--w-content);
  margin: 0;
}

.donate-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x3);
  margin-bottom: var(--x3);
}
@media all and (min-width: 540px) {
  .donate-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.donate-tier {
  display: flex;
  flex-direction: column;
  gap: var(--x4);
  padding: var(--x3);
  border: 1px solid #d8d5cc;
  background-color: var(--bg1);
}

.donate-tier-amount {
  font-family: var(--font1);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 600;
  color: var(--ca);
  display: block;
}

.donate-tier-effect {
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  margin: 0;
  flex: 1;
}

/* Contact detail: two-column grid (form + aside) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

.contact-info {
  padding-right: var(--x3);
}
.contact-info h3 {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c2);
  margin: 0 0 var(--x5) 0;
}
.contact-info h3 + h3 {
  margin-top: var(--x3);
}
.contact-info p {
  margin-bottom: var(--x3);
}

.contact-form h2 {
  margin-bottom: var(--x3);
}
.contact-form p {
  margin-bottom: var(--x3);
  max-width: var(--w-content);
}

/* Breadcrumbs — scoped to .site-header with breadcrumbs child nav */
/* (Breadcrumbs nav is embedded inside .site-header on interior pages) */
/* Header with breadcrumbs has slightly more padding */
.site-header.has-breadcrumbs {
  padding-bottom: var(--x4);
}

/* Error template (404 / generic error)
   The Keystone design uses the canonical PageMotor error layout; the page
   renders inside .page-content with an h1, a .lede paragraph, and a
   final-CTA-style closing block. The global typography, .page-content,
   and .final-cta partials carry the work. This file is reserved for any
   future template-specific error styling. */
.error .page-main {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Footer */
.site-footer {
  background-color: var(--bg2);
  padding-top: var(--x2);
  padding-bottom: var(--x2);
  border-top: 1px solid #d8d5cc;
  color: var(--c1);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 720px) {
  .site-footer .container {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}
.site-footer h3 {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--x3);
  color: var(--c2);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin: 0 0 var(--x4) 0;
  font-size: var(--f5);
  line-height: var(--g5);
}
.site-footer a {
  color: var(--c1);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color 240ms ease, text-decoration-color 240ms ease;
}
.site-footer a:hover {
  text-decoration-color: var(--ca);
  color: var(--c1);
}

.footer-column-mark .footer-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
  margin-bottom: var(--x2);
  text-decoration: none;
  color: var(--c1);
}
.footer-column-mark .footer-mark .keystone-svg {
  width: 38px;
  color: var(--ca);
}
.footer-column-mark .footer-mark .wordmark {
  font-family: var(--font1);
  font-style: italic;
  font-weight: 600;
  font-size: var(--f3);
  line-height: var(--g3);
  color: var(--c1);
}
.footer-column-mark .footer-mark .wordmark .accent {
  color: var(--ca);
}

.footer-meta {
  font-family: var(--font2);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}
.footer-meta p {
  font-size: var(--f6);
  line-height: var(--g6);
  margin-bottom: var(--x4);
}

.footer-signature {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: var(--x3);
  margin-top: var(--x2);
  padding-top: var(--x3);
  border-top: 1px solid #d8d5cc;
  color: var(--c2);
}
.footer-signature .seal-svg {
  width: 56px;
  color: var(--c2);
}
.footer-signature .measure-rule-svg {
  width: 96px;
  color: var(--c2);
}
.footer-signature .small {
  margin: 0;
}

/* Bleed
   The Civic Editorial motif uses section-specific chromatic treatments
   (method-block dark bg, involved-band radial gradient, final-cta wash)
   in place of a generic .bleed primitive. This file is reserved for any
   future bleed primitive the brand may adopt. */
/* Reveal-on-scroll (HR67 default deployment) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  --reveal-delay: 80ms;
}

.reveal-delay-2 {
  --reveal-delay: 160ms;
}

.reveal-delay-3 {
  --reveal-delay: 240ms;
}

.reveal-delay-4 {
  --reveal-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}