/* ============================================================
   BROOKBURY POA — Heritage Oak
   Established, traditional, trusted: symmetry, a crest, hairline
   double rules, engraved small caps.

   One stylesheet, three parts:
     1. tokens      — the palette, type scale and rhythm
     2. structure   — layout for every block on the page
     3. treatment   — the Heritage Oak styling on top of it
   Responsive overrides live at the very end and win by source order.
   ============================================================ */

/* ------------------------------------------------------------
   1 · TOKENS
   ------------------------------------------------------------ */

:root {
  /* palette */
  --bg: #FBF8F1;
  --surface: #FFFFFF;
  --surface-2: #F3EDE1;
  --ink: #23291F;
  --ink-2: #4E5648;
  --muted: #8B8877;
  --line: #DED5C2;
  --brand: #1F3D2B;
  --brand-ink: #F6F1E4;
  --accent: #A9803F;

  /* type */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: "Iowan Old Style", Palatino, Georgia, serif;
  --font-ui: "Gill Sans", "Gill Sans MT", Optima, "Trebuchet MS", sans-serif;
  --display-size: clamp(2.3rem, 4.4vw, 3.5rem);
  --display-weight: 400;
  --display-lh: 1.12;
  --display-ls: 0.005em;
  --h2-size: clamp(1.8rem, 3vw, 2.5rem);
  --h2-weight: 400;
  --h2-ls: -0.01em;
  --body-size: 1.0625rem;
  --body-lh: 1.65;
  --lede-size: clamp(1.05rem, 1.6vw, 1.3rem);
  --kicker-size: 0.7rem;
  --kicker-ls: 0.22em;
  --kicker-tf: uppercase;
  --kicker-weight: 600;

  /* shape */
  --radius-card: 0;
  --radius-btn: 0;
  --radius-pill: 0;
  --border-w: 1px;
  --shadow: none;
  --shadow-lift: none;

  /* rhythm */
  --wrap: 1080px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-pad: clamp(64px, 9vw, 128px);
  --grid-gap: 28px;

  /* plat map */
  --mp-bg: #FBF8F1;
  --mp-road: #DED5C2;
  --mp-lot: #EFE7D6;
  --mp-lot-line: #D3C7AE;
}

/* ------------------------------------------------------------
   2 · STRUCTURE
   ------------------------------------------------------------ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bg); padding: 12px 18px;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* framed plates and offset rules intentionally exceed the container — clip
   rather than scroll (clip, not hidden, so nothing becomes a scroll container) */
.site { overflow-x: clip; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------------- header ---------------- */

.site-header {
  border-bottom: var(--border-w) solid var(--line);
  background: var(--bg);
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: block; flex: none; color: var(--brand); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-ls);
}
.brand-sub {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}
.nav a { text-decoration: none; color: var(--ink-2); padding: 6px 0; }
.nav a:hover { color: var(--ink); }
.nav a.is-current { color: var(--ink); }

.header-actions { display: flex; }

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border: var(--border-w) solid transparent;
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-sm { padding: 11px 18px; font-size: 0.85rem; }
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------------- hero ---------------- */

.hero { position: relative; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--kicker-size);
  letter-spacing: var(--kicker-ls);
  text-transform: var(--kicker-tf);
  font-weight: var(--kicker-weight);
  color: var(--accent);
  margin: 0 0 18px;
}
.display {
  font-family: var(--font-display);
  font-size: var(--display-size);
  font-weight: var(--display-weight);
  line-height: var(--display-lh);
  letter-spacing: var(--display-ls);
  margin: 0 0 22px;
}
.lede { font-size: var(--lede-size); color: var(--ink-2); margin: 0 0 32px; max-width: 46ch; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-art { position: relative; }
.scene {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--brand);
}

.facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 64px);
  margin: clamp(40px, 6vw, 72px) 0 0;
  padding: 24px 0 0;
  border-top: var(--border-w) solid var(--line);
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact-k {
  font-family: var(--font-ui);
  font-size: var(--kicker-size);
  letter-spacing: var(--kicker-ls);
  text-transform: var(--kicker-tf);
  color: var(--muted);
}
.fact-v { font-family: var(--font-display); font-size: 1.15rem; }

/* ---------------- sections ---------------- */

.section { padding-block: var(--section-pad); }
.section-head { max-width: 62ch; }
.section-head.row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; max-width: none;
}
.kicker {
  font-family: var(--font-ui);
  font-size: var(--kicker-size);
  letter-spacing: var(--kicker-ls);
  text-transform: var(--kicker-tf);
  font-weight: var(--kicker-weight);
  color: var(--accent);
  margin: 0 0 14px;
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  letter-spacing: var(--h2-ls);
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.section-intro { color: var(--ink-2); margin: 18px 0 0; max-width: 58ch; }
.note { font-family: var(--font-ui); font-size: 0.9rem; color: var(--accent); margin: 18px 0 0; }
.link-more {
  font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; color: var(--accent); white-space: nowrap;
}

.welcome-grid, .docs-grid, .map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.prose p { margin: 0 0 20px; color: var(--ink-2); }
.pull {
  margin: 32px 0 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--ink);
}

/* ---------------- cards / events ---------------- */

.grid { list-style: none; margin: clamp(32px, 4vw, 56px) 0 0; padding: 0; display: grid; gap: var(--grid-gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.event-photo {
  display: block;
  width: calc(100% + 2 * clamp(24px, 3vw, 34px));
  height: clamp(150px, 16vw, 210px);
  margin: calc(-1 * clamp(24px, 3vw, 34px)) calc(-1 * clamp(24px, 3vw, 34px)) 10px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.card-tag {
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-ink);
  background: var(--brand);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}
.card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: var(--h2-weight); margin: 4px 0 0; line-height: 1.2; }
.card-body { margin: 0; color: var(--ink-2); font-size: 0.98rem; }
.card-meta {
  margin-top: auto; padding-top: 14px;
  border-top: var(--border-w) solid var(--line);
  font-family: var(--font-ui); font-size: 0.8rem; color: var(--muted);
}

/* ---------------- documents ---------------- */

.doc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.doc {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--surface);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-card);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.doc:hover { border-color: var(--accent); transform: translateX(2px); }
.doc-icon { flex: none; width: 28px; height: 28px; color: var(--accent); }
.doc-icon svg { display: block; width: 100%; height: 100%; }
.doc-text { display: flex; flex-direction: column; gap: 3px; }
.doc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: var(--h2-weight); }
.doc-sub { font-family: var(--font-ui); font-size: 0.82rem; color: var(--muted); }
.doc-cta {
  margin-left: auto; flex: none;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--accent);
}

/* ---------------- board ---------------- */

.board-grid {
  list-style: none; margin: clamp(32px, 4vw, 56px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap);
}
.member {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 0;
  border-top: var(--border-w) solid var(--line);
}
.member-role {
  font-family: var(--font-ui); font-size: var(--kicker-size);
  letter-spacing: var(--kicker-ls); text-transform: var(--kicker-tf);
  color: var(--accent); font-weight: var(--kicker-weight);
}
.member-name { font-family: var(--font-display); font-size: 1.2rem; }

/* ---------------- map ---------------- */

.map-panel {
  background: var(--surface);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.plat { display: block; width: 100%; height: auto; color: var(--mp-road); }
.p-bg { fill: var(--mp-bg); }
.p-road { stroke: var(--mp-road); }
.p-road-2 { stroke: var(--mp-road); }
.p-lots rect { fill: var(--mp-lot); stroke: var(--mp-lot-line); }
.p-marker circle { fill: var(--accent); }
.p-label {
  fill: var(--muted); font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.14em; font-weight: 700;
}

/* ---------------- contact ---------------- */

.contact-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(28px, 5vw, 64px); flex-wrap: wrap;
}
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- footer ---------------- */

.site-footer {
  border-top: var(--border-w) solid var(--line);
  background: var(--surface);
  padding-block: clamp(40px, 5vw, 64px);
}
.footer-inner { display: flex; flex-direction: column; gap: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; font-family: var(--font-ui); font-size: 0.9rem; }
.footer-nav a { text-decoration: none; color: var(--ink-2); }
.footer-nav a:hover { color: var(--ink); }
.footer-note { font-family: var(--font-ui); font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------
   3 · HERITAGE OAK TREATMENT
   ------------------------------------------------------------ */

/* the crest */
.mark-crest { display: block; width: 42px; height: 48px; }

/* centred, ceremonial header */
.site-header {
  border-bottom: 3px double var(--line);
  background: var(--bg);
}
.header-inner {
  flex-direction: column;
  gap: 14px;
  padding-block: 26px;
  text-align: center;
}
.brand { flex-direction: column; gap: 8px; }
.brand-text { align-items: center; }
.brand-name {
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-sub { letter-spacing: 0.22em; font-size: 0.62rem; color: var(--accent); }
.nav {
  margin: 0;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 4px;
  width: 100%;
  justify-content: center;
}
.nav a {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  position: relative;
}
.nav a + a::before {
  content: ""; position: absolute; left: 0; top: 50%; translate: 0 -50%;
  width: 1px; height: 12px; background: var(--line);
}
.nav a.is-current { color: var(--accent); }
.header-actions { display: none; }

/* buttons: engraved */
.btn {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 32px;
}
.btn-ghost { border-color: var(--brand); color: var(--brand); }

/* hero: centred with a framed plate */
.hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero { padding-top: clamp(36px, 5vw, 68px); }
.hero-copy { max-width: 46rem; order: 1; }
.hero-art { order: 2; width: 100%; }
.lede { margin-inline: auto; max-width: 42ch; }
.actions { justify-content: center; }
.eyebrow::after {
  content: ""; display: block; width: 46px; height: 1px;
  background: var(--accent); margin: 14px auto 0;
}
.scene {
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 6px;
  height: clamp(240px, 30vw, 380px);
}
.facts { justify-content: center; text-align: center; border-top-style: double; border-top-width: 3px; }
.fact { align-items: center; }

/* sections: centred heads with an ornament */
.section-head:not(.row) { margin-inline: auto; text-align: center; }
.section-intro { margin-inline: auto; }
.section-events .section-head.row {
  flex-direction: column; align-items: center; text-align: center; gap: 10px;
}
.section-events .link-more { color: var(--accent); }
.h2::after {
  content: "❧";
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-top: 16px;
  line-height: 1;
}
.section-head.row .h2::after { margin-bottom: 4px; }

.welcome-grid,
.docs-grid,
.map-grid { grid-template-columns: 1fr; justify-items: center; }
.prose { max-width: 62ch; text-align: center; }
.pull {
  border-left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  font-style: italic;
  text-align: center;
}
.section-welcome { background: var(--surface-2); }

/* cards: plate-like */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 4px;
  text-align: center;
  align-items: center;
}
.card:hover { transform: none; border-color: var(--accent); }
.card-tag {
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent); letter-spacing: 0.2em; padding: 5px 12px;
}
.card-meta { width: 100%; text-align: center; border-top-color: var(--line); }
.events { max-width: 100%; }

/* documents */
.doc-list { width: 100%; max-width: 720px; margin-top: 40px; }
.doc { background: var(--surface); }
.doc-cta { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; }
/* the document rows are real links now; keep them looking like rows */
a.doc { text-decoration: none; color: inherit; }
a.doc:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* board: register style */
.section-board { background: var(--surface-2); }
.board-grid { grid-template-columns: repeat(2, 1fr); column-gap: 64px; }
.member {
  flex-direction: row; align-items: baseline; justify-content: space-between;
  border-top: 0; border-bottom: 1px dotted var(--line); gap: 16px;
}
/* the role never breaks; a long name wraps and stays flush right */
.member-role { flex: none; }
.member-name { font-style: italic; text-align: right; }

/* map */
.map-panel { border: 1px solid var(--line); outline: 1px solid var(--line); outline-offset: 5px; max-width: 720px; margin-top: 44px; }

/* contact */
.section-contact { background: var(--brand); color: var(--brand-ink); }
.section-contact .h2,
.section-contact .section-intro { color: var(--brand-ink); }
.section-contact .kicker { color: #D9B978; }
.contact-inner { justify-content: center; text-align: center; flex-direction: column; }
.section-contact .btn-primary { background: var(--accent); color: #221E16; }
.section-contact .btn-ghost { color: var(--brand-ink); border-color: rgba(246,241,228,.45); }
.contact-actions { justify-content: center; }

.site-footer { background: var(--bg); border-top: 3px double var(--line); }
.footer-inner { align-items: center; text-align: center; }
.footer-brand { align-items: center; }
.footer-nav { justify-content: center; }
.footer-nav a { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* events: text-only plates until real photographs arrive */
.event-card { justify-content: flex-start; }
/* the base .card-tag hugs the left edge; on text-only plates it should sit centred */
.event-card .card-tag { align-self: center; }

/* links inside intro copy, e.g. the board's email address */
.section-intro a { color: var(--brand); text-underline-offset: 3px; }

/* a row of buttons under a section head */
.section-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }

/* dues: one plate carrying the amount and the way to pay */
.dues-grid { display: grid; justify-items: center; }
.dues-pay {
  width: 100%; max-width: 480px; margin-top: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: clamp(26px, 4vw, 40px); text-align: center;
  background: var(--surface);
  border: 1px solid var(--line); outline: 1px solid var(--line); outline-offset: 5px;
}
.dues-pay p { margin: 0; }
.dues-amount { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; }
.dues-pay .dues-due {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.dues-pay .dues-handle { font-family: var(--font-ui); font-size: 0.92rem; color: var(--ink-2); margin-top: 6px; }
.dues-note { font-size: 0.9rem; color: var(--muted); max-width: 36ch; }

/* map: the live map replaces the drawn schematic */
.map-panel { width: 100%; }
.map-embed { display: block; width: 100%; height: clamp(280px, 42vw, 440px); border: 0; }
/* the neighborhood map: an overview on the page, readable once opened full size */
.neighborhood-map { width: 100%; max-width: 1000px; margin: 44px 0 0; }
.neighborhood-map a {
  display: block; background: #FFFFFF;
  border: 1px solid var(--line); outline: 1px solid var(--line); outline-offset: 5px;
}
.neighborhood-map a:focus-visible { outline: 2px solid var(--accent); }
.neighborhood-map img { display: block; width: 100%; height: auto; }
.neighborhood-map figcaption {
  margin-top: 16px; text-align: center;
  font-family: var(--font-ui); font-size: 0.82rem; color: var(--muted);
}

/* contact: the address itself, readable and copyable */
.contact-email { margin: 16px 0 0; font-family: var(--font-ui); font-size: 1.05rem; letter-spacing: 0.02em; }
/* padded out to a full-size tap target; the negative margin keeps the line where it was */
.section-contact .contact-email a {
  color: var(--brand-ink); text-underline-offset: 4px;
  display: inline-block; padding-block: 12px; margin-block: -12px;
}

/* ------------------------------------------------------------
   4 · RESPONSIVE
   Last in the file on purpose: these rules match the treatment
   above at equal specificity and win on source order.
   ------------------------------------------------------------ */

@media (max-width: 940px) {
  .hero-inner,
  .welcome-grid,
  .docs-grid,
  .map-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-copy { max-width: none; }
  /* the nav stays on one row down to phone width; taller links for touch */
  .nav a { padding: 12px 16px; }
}
@media (max-width: 620px) {
  .grid-3,
  .board-grid { grid-template-columns: 1fr; }
  /* stacked, so two values side by side don't read as one phrase */
  .facts { flex-direction: column; align-items: center; gap: 18px; }

  /* running text is left-aligned on phones, at full column width so its left
     edge lines up with the buttons and plates; headings stay centred */
  .section-head,
  .lede,
  .prose,
  .section-intro { max-width: none; }
  .lede,
  .prose,
  .section-intro,
  .note,
  .contact-email { text-align: left; }
  .header-inner { min-height: 68px; }
  .section-head.row { flex-direction: column; align-items: flex-start; }

  /* nav: rows of three with a short last row centred; the dividers would
     crowd the longer words */
  .nav { flex-wrap: wrap; padding-block: 0; }
  .nav a { flex: 0 0 calc(100% / 3); padding: 13px 4px; }
  .nav a + a::before { display: none; }

  /* calls to action: one full-width button per row, the same size in every section */
  .actions,
  .section-actions,
  .contact-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .dues-pay .btn { align-self: stretch; }

  /* documents: Download drops under the title so neither has to wrap */
  .doc {
    display: grid; grid-template-columns: 28px 1fr;
    column-gap: 16px; row-gap: 10px; align-items: start;
  }
  .doc-icon { grid-row: span 2; }
  .doc-cta { margin-left: 0; }

  /* board: the dotted rules alone separate the rows */
  .board-grid { row-gap: 0; }
  .member { padding-block: 14px; }

  .footer-nav { column-gap: 20px; row-gap: 0; }
  .footer-nav a { padding-block: 12px; }
  .footer-brand .brand-sub span { display: block; }
  .footer-brand .brand-sub .brand-sep { display: none; }
}
