:root {
  color: #183a5a;
  background: #f6f3ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.55;
  --navy: #123f67;
  --navy-dark: #0a2d4b;
  --teal: #087f8c;
  --teal-dark: #075e68;
  --gold: #e9aa3b;
  --ink: #183a5a;
  --muted: #5d6f7f;
  --paper: #fffdfa;
  --sand: #f6f3ec;
  --line: #d9d3c8;
  --danger: #a63c35;
  --radius: 1rem;
  --shadow: 0 1.15rem 3.25rem rgb(10 45 75 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-dark);
}

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

button,
.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  color: white;
  background: var(--navy);
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
}

button:hover,
.button:hover {
  border-color: var(--navy-dark);
  color: white;
  background: var(--navy-dark);
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.button-secondary:hover {
  color: white;
  background: var(--navy);
}

.button-small {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  translate: 0 -200%;
  border-radius: 0.4rem;
  padding: 0.65rem 0.9rem;
  color: white;
  background: var(--navy-dark);
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 100%;
  min-height: 5.4rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid rgb(18 63 103 / 12%);
  padding: 0.8rem max(1rem, calc((100vw - 78rem) / 2));
  background: rgb(255 253 250 / 96%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
}

.brand-logo {
  width: 3.8rem;
  height: 3.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--teal);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.45rem clamp(0.7rem, 1.45vw, 1.3rem);
}

.site-menu-toggle {
  display: none;
  min-height: 2.65rem;
  gap: 0.5rem;
  border-color: var(--navy);
  padding: 0.55rem 0.85rem;
  color: var(--navy);
  background: transparent;
  font-size: 0.9rem;
}

.site-menu-toggle:hover {
  color: white;
  background: var(--navy);
}

.site-header nav a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--teal);
}

.site-header nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.site-header nav a[aria-current="page"]:not(.nav-cta) {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.16rem;
  text-underline-offset: 0.45rem;
}

.site-header nav .nav-cta[aria-current="page"] {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgb(8 127 140 / 16%);
}

.site-header nav .nav-cta {
  min-height: 2.35rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
}

.site-header nav .nav-cta-primary {
  color: white;
  background: var(--navy);
}

.site-header nav .nav-cta-primary:hover {
  color: white;
  background: var(--navy-dark);
}

.site-header nav .nav-cta-secondary:hover {
  color: white;
  background: var(--navy);
}

.hero {
  display: grid;
  min-height: min(44rem, calc(100vh - 5.4rem));
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.75fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) max(1.25rem, calc((100vw - 74rem) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgb(6 31 54 / 91%) 0%, rgb(8 38 65 / 76%) 52%, rgb(8 38 65 / 38%) 100%),
    url("/assets/wpbrc-waterfront.svg") center / cover no-repeat;
}

.hero h1,
.page-intro h1,
.empty-state h1 {
  margin: 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-size: clamp(2.4rem, 6.4vw, 5.35rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  color: white;
  text-shadow: 0 0.15rem 1.25rem rgb(4 23 40 / 45%);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-lede {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  color: rgb(255 255 255 / 90%);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero .button {
  border-color: #f0a83a;
  color: #172f46;
  background: linear-gradient(120deg, #ffbf3f, #ff7859);
}

.hero .button:hover {
  border-color: #ffd06f;
  color: #10283d;
  background: linear-gradient(120deg, #ffd06f, #ff9278);
}

.hero .button-secondary {
  border-color: rgb(255 255 255 / 72%);
  color: white;
  background: rgb(6 31 54 / 24%);
}

.hero .button-secondary:hover {
  border-color: white;
  color: var(--navy-dark);
  background: white;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-panel {
  position: relative;
  border: 1px solid rgb(18 63 103 / 13%);
  border-radius: 1.5rem 1.5rem 1.5rem 0.3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  background: rgb(10 55 91 / 88%);
  backdrop-filter: blur(0.35rem);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  top: -0.75rem;
  right: 2rem;
  width: 4.5rem;
  height: 0.45rem;
  border-radius: 99px;
  background: var(--gold);
  content: "";
}

.panel-kicker {
  margin: 0;
  color: #8bd4d6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 1.15rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  padding-bottom: 1.15rem;
  font-size: 1.05rem;
}

.hero-panel li:last-child {
  border: 0;
  padding-bottom: 0;
}

.section-shell,
.page-shell {
  width: min(76rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-shell {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.intro-grid h2,
.project-detail h1,
.project-detail h2,
.project-card h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-weight: 820;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.intro-grid > p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.lead-prose {
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-shell {
  min-height: 60vh;
  padding-block: clamp(2.5rem, 6vw, 5.5rem);
}

.narrow-shell {
  width: min(58rem, calc(100% - 2.5rem));
}

.page-intro {
  max-width: 56rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.page-intro h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.page-intro > p:last-child {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.project-tracker-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-tracker-columns-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-groups {
  display: grid;
}

.event-group + .event-group {
  border-top: 1px solid var(--line);
}

/* Emitted by PageComponentView on the public site (and inside the builder
   canvas), not by the administration chrome. */
.collection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.collection-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.collection-heading .eyebrow {
  margin-bottom: 0.25rem;
}

.event-group .collection-heading {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.event-group .collection-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.event-grid-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-grid-columns-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.article-grid-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid-columns-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid-list {
  grid-template-columns: minmax(0, 1fr);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.board-grid-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-grid-columns-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-card {
  display: grid;
  min-height: 100%;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 5%);
}

.board-card-no-image {
  grid-template-columns: minmax(0, 1fr);
}

.board-portrait {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--teal), var(--navy));
  font-size: 1.6rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.board-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card h2,
.board-card h3 {
  margin: 0.2rem 0 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-size: 1.65rem;
  line-height: 1.1;
}

.board-role {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-neighborhood {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.board-biography {
  margin-top: 1rem;
}

.board-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1rem 0 0;
}

.board-meta div {
  display: grid;
  gap: 0.1rem;
}

.board-meta dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-meta dd {
  margin: 0;
}

.project-card-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-left: 0.42rem solid var(--navy);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 5%);
}

.event-card-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 0.38rem solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 5%);
}

.article-card-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0.38rem solid var(--teal);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 5%);
}

.article-card {
  flex: 1;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.article-heading h1,
.article-heading h2,
.article-heading h3 {
  margin: 0.3rem 0 0;
  color: var(--navy-dark);
  font-family: inherit;
  line-height: 1.08;
}

.article-heading h1 {
  font-size: clamp(2.2rem, 6vw, 4.25rem);
}

.article-card .article-heading h2,
.article-card .article-heading h3 {
  font-family: inherit;
  font-size: 1.55rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.article-byline {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-excerpt {
  margin: 1.2rem 0 0;
  color: #40586b;
  font-size: 1.08rem;
}

.article-card .record-primary-image {
  aspect-ratio: 16 / 9;
  max-height: 14rem;
}

.article-detail-shell {
  max-width: 58rem;
}

.article-detail {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-detail .article-excerpt {
  max-width: 46rem;
  font-size: 1.25rem;
}

.article-body {
  max-width: 44rem;
  margin-top: 2.2rem;
  color: #344f63;
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-body h2,
.article-body h3 {
  margin: 2.4rem 0 0.8rem;
  color: var(--navy-dark);
  font-family: inherit;
  line-height: 1.15;
}

.article-body h2 {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
}

.article-body h3 {
  font-size: 1.35rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-block: 1rem;
}

.article-body a {
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.article-markdown-field {
  min-height: 28rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.55;
}

.event-card {
  flex: 1;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.event-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.event-heading h1,
.event-heading h2,
.event-heading h3 {
  margin: 0.35rem 0 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-weight: 820;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.event-card .event-heading h2,
.event-card .event-heading h3 {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.event-date-line {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-summary {
  margin: 1.2rem 0 0;
  color: #526779;
  font-size: 1.04rem;
}

.event-status {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 0.35rem 0.7rem;
  color: white;
  background: var(--navy);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-status-postponed {
  color: var(--navy-dark);
  background: var(--gold);
}

.event-status-cancelled {
  background: var(--danger);
}

.event-status-completed {
  background: #6f777c;
}

.event-detail {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.event-detail .event-summary {
  max-width: 48rem;
  font-size: 1.2rem;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 2rem 0 0;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--line);
}

.event-facts div {
  padding: 1rem 1.2rem;
  background: #fbfaf6;
}

.event-facts dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0.25rem 0 0;
}

.event-actions {
  margin-top: 2rem;
}

.project-card {
  flex: 1;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.project-card h2 {
  font-family: inherit;
  font-size: 1.55rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.project-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.project-location {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.project-summary {
  margin: 1.2rem 0 0;
  color: #526779;
  font-size: 1.04rem;
}

.record-primary-image {
  display: block;
  width: 100%;
  max-height: 28rem;
  margin-top: 1.25rem;
  border-radius: calc(var(--radius) * 0.72);
  object-fit: cover;
}

.project-card .record-primary-image,
.event-card .record-primary-image {
  aspect-ratio: 16 / 9;
  max-height: 14rem;
}

.status-chip,
.lifecycle {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 0.35rem 0.7rem;
  color: white;
  background: var(--navy);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-completed {
  background: #326c4d;
}

.status-under_construction,
.status-approved {
  background: #a45f20;
}

.status-on_hold {
  background: #85514c;
}

.card-link {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 0.9rem 1.6rem;
  font-weight: 760;
  text-decoration: none;
}

.project-detail {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.project-detail .project-summary {
  max-width: 48rem;
  font-size: 1.2rem;
}

.prose {
  margin-top: 2rem;
  color: #40586b;
  font-size: 1.05rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 2rem 0 0;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--line);
}

.fact-grid > div {
  padding: 1rem 1.2rem;
  background: #fbfaf6;
}

.fact-grid dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 0.3rem 0 0;
  font-weight: 680;
}

.neighborhoods {
  margin-top: 1.5rem;
}

.sources {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.sources h3 {
  margin: 0;
}

.sources ul {
  margin-bottom: 0;
}

.record-source-disclosure {
  margin-top: 1.15rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.record-source-disclosure summary {
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 760;
}

.record-source-disclosure ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.back-link {
  font-weight: 700;
  text-decoration: none;
}

.empty-state,
.loading-state {
  border: 1px dashed #bcb5a9;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background: rgb(255 253 250 / 70%);
}

/*
 * Thin pending bar for client-side navigation: while the router holds the
 * current page and resolves the destination, the bar creeps across the top of
 * the viewport. The opacity transition is delayed so navigations that settle
 * quickly never show it.
 */
.route-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
}

.route-progress[data-active] {
  opacity: 1;
  transform: scaleX(0.85);
  transition:
    transform 1.4s cubic-bezier(0.16, 0.68, 0.3, 1),
    opacity 120ms linear 180ms;
}

.empty-state h1,
.empty-state h2 {
  margin-top: 0;
}

.empty-state h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.fixed-page {
  min-height: 60vh;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 5%);
}

.metric-section {
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.metric-strip > div {
  display: flex;
  min-height: 8.5rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  background: var(--paper);
}

.metric-strip dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-strip dd {
  order: -1;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 850;
  line-height: 1;
}

.public-page.fixed-page > .section-shell:nth-of-type(even) {
  background: rgb(255 253 250 / 62%);
  box-shadow: 0 0 0 100vmax rgb(255 253 250 / 62%);
  clip-path: inset(0 -100vmax);
}

.fixed-hero {
  overflow: hidden;
  border-bottom: 1px solid rgb(18 63 103 / 9%);
  background:
    linear-gradient(92deg, rgb(6 31 54 / 91%) 0%, rgb(8 38 65 / 70%) 55%, rgb(8 38 65 / 38%) 100%),
    url("/assets/wpbrc-palms.svg") center 58% / cover no-repeat;
}

.fixed-hero-inner {
  min-height: 28rem;
  display: flex;
  align-items: center;
}

.fixed-hero .page-intro {
  margin: 0;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.fixed-hero .page-intro > p:last-of-type {
  max-width: 48rem;
}

.fixed-hero .page-intro h1,
.fixed-hero .page-intro > p,
.fixed-hero .page-intro .eyebrow {
  color: white;
  text-shadow: 0 0.15rem 1.25rem rgb(4 23 40 / 45%);
}

.fixed-hero .page-intro .eyebrow {
  color: var(--gold);
}

.fixed-hero .button {
  border-color: #f0a83a;
  color: #172f46;
  background: linear-gradient(120deg, #ffbf3f, #ff7859);
}

.fixed-hero .button-secondary {
  border-color: rgb(255 255 255 / 72%);
  color: white;
  background: rgb(6 31 54 / 25%);
}

.fixed-hero .button-secondary:hover {
  border-color: white;
  color: var(--navy-dark);
  background: white;
}

.public-page-development .fixed-hero,
.public-page-blog .fixed-hero,
.public-page-about .fixed-hero {
  color: white;
  background:
    linear-gradient(100deg, rgb(8 28 48 / 91%), rgb(16 44 76 / 66%) 52%, rgb(20 60 92 / 30%)),
    url("/assets/wpbrc-palms.svg") center 58% / cover no-repeat;
}

.public-page-development .fixed-hero h1,
.public-page-development .fixed-hero .page-intro > p,
.public-page-development .fixed-hero .eyebrow {
  color: white;
  text-shadow: 0 2px 16px rgb(6 26 45 / 45%);
}

.public-page-development .fixed-hero .eyebrow {
  color: var(--gold);
}

.public-page-resources .fixed-hero,
.public-page-contact .fixed-hero,
.public-page-events .fixed-hero {
  background:
    linear-gradient(100deg, rgb(8 28 48 / 91%), rgb(16 44 76 / 65%) 50%, rgb(20 60 92 / 28%)),
    url("/assets/wpbrc-civic.svg") center / cover no-repeat;
}

.public-page-neighborhoods .fixed-hero {
  background:
    linear-gradient(100deg, rgb(8 28 48 / 91%), rgb(40 60 40 / 64%) 50%, rgb(20 60 92 / 28%)),
    url("/assets/wpbrc-banyan.svg") center 54% / cover no-repeat;
}

.public-page-board .fixed-hero,
.public-page-donate .fixed-hero {
  background:
    linear-gradient(110deg, rgb(8 24 42 / 90%), rgb(16 44 76 / 65%) 52%, rgb(11 30 54 / 30%) 86%),
    url("/assets/wpbrc-skyline-night.svg") center / cover no-repeat;
}

.public-page-join .fixed-hero {
  background:
    linear-gradient(100deg, rgb(8 28 48 / 90%), rgb(16 44 76 / 62%) 50%, rgb(20 60 92 / 24%)),
    url("/assets/wpbrc-sunset.svg") center 52% / cover no-repeat;
}

.development-tracker-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.page-content-component {
  min-width: 0;
  width: 100%;
}

.tracker-disclaimer {
  margin-bottom: 1.5rem;
  border: 1px solid #dfd1ad;
  border-left: 0.35rem solid var(--gold);
  border-radius: 0.7rem;
  padding: 1rem 1.2rem;
  background: #fff8e6;
}

.tracker-disclaimer p {
  margin: 0;
}

.tracker-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.32fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.tracker-layout-map-only,
.tracker-layout-filters-only {
  grid-template-columns: minmax(0, 1fr);
}

.tracker-filters {
  position: sticky;
  top: 8.5rem;
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 7%);
}

.tracker-filters h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.35rem;
}

.tracker-filters label > span {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tracker-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.7rem;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.tracker-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tracker-legend i {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border: 1px solid rgb(10 45 75 / 18%);
  border-radius: 50%;
}

.tracker-count {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.tracker-map-shell,
.project-map {
  min-width: 0;
}

.tracker-map-height-compact .project-map {
  height: 24rem;
}

.tracker-map-height-tall .project-map {
  height: 44rem;
}

.page-component-source {
  display: grid;
  margin: 0;
}

.page-component-source div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.55rem;
  padding: 0.75rem;
  background: #f4f7f7;
}

.page-component-source dt {
  color: var(--muted);
}

.page-component-source dd {
  margin: 0;
  color: var(--navy-dark);
  font-weight: 750;
}

.page-component-toggles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-component-toggles legend {
  grid-column: 1 / -1;
}

.page-component-toggle {
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.65rem 0.75rem;
  background: white;
}

.page-component-toggle input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.project-map {
  z-index: 1;
  display: grid;
  width: 100%;
  height: 34rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #dbe7ec;
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 8%);
}

.map-popup {
  display: grid;
  gap: 0.2rem;
  color: var(--ink);
}

.map-popup strong {
  color: var(--navy-dark);
}

.map-popup a {
  margin-top: 0.3rem;
  color: var(--teal-dark);
  font-weight: 750;
}

.project-tracker-list {
  margin-top: 1.4rem;
}

.project-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding: 0.8rem 1.2rem;
}

.project-card-actions .card-link {
  flex: 1;
  justify-content: flex-end;
  gap: 0.5rem;
  border: 0;
  padding: 0.55rem 0;
}

.tracker-faq {
  max-width: 62rem;
}

.page-faq .faq-list {
  max-width: 62rem;
}

.tracker-faq > h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-weight: 820;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1rem 1.1rem;
  background: var(--paper);
}

.faq-list summary {
  color: var(--navy-dark);
  cursor: pointer;
  font-weight: 780;
}

.faq-list summary::marker {
  color: var(--teal);
}

.faq-list details p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-divider {
  border-top: 1px solid var(--line);
}

.page-section {
  width: 100%;
}

.page-section-tone-default {
  color: var(--ink);
  background: var(--paper);
}

.page-section-tone-muted {
  color: var(--ink);
  background: #f3f7fb;
}

.page-section-tone-navy {
  color: white;
  background: var(--navy-dark);
}

.page-section-tone-accent {
  color: var(--navy-dark);
  background: #fff4e7;
}

.page-section-spacing-compact {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.page-section-spacing-standard {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.page-section-spacing-spacious {
  padding-block: clamp(5rem, 9vw, 7.5rem);
}

.page-section-inner {
  display: flex;
  width: calc(100% - 2.5rem);
  flex-direction: column;
  gap: clamp(1.15rem, 2.2vw, 1.8rem);
  margin-inline: auto;
}

.page-section-width-content {
  max-width: 64rem;
}

.page-section-width-wide {
  max-width: 76rem;
}

.page-section-width-full {
  width: 100%;
  max-width: none;
}

.page-container {
  min-width: 0;
}

.page-container-row,
.page-container-column {
  display: flex;
}

.page-container-row {
  flex-direction: row;
}

.page-container-column {
  flex: var(--page-column-weight, 1) 1 0;
  flex-direction: column;
}

.page-container-gap-none {
  gap: 0;
}

.page-container-gap-small {
  gap: 0.75rem;
}

.page-container-gap-medium {
  gap: 1.5rem;
}

.page-container-gap-large {
  gap: clamp(2rem, 5vw, 4.5rem);
}

.page-container-align-start {
  align-items: flex-start;
}

.page-container-align-center {
  align-items: center;
}

.page-container-align-end {
  align-items: flex-end;
}

.page-container-align-stretch {
  align-items: stretch;
}

.page-container-justify-start {
  justify-content: flex-start;
}

.page-container-justify-center {
  justify-content: center;
}

.page-container-justify-between {
  justify-content: space-between;
}

.page-container-appearance-card,
.page-container-appearance-bordered,
.page-container-appearance-tinted {
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.page-container-appearance-card {
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 1rem 2.5rem rgb(10 45 75 / 9%);
}

.page-container-appearance-bordered {
  border: 1px solid var(--line);
}

.page-container-appearance-tinted {
  background: rgb(8 127 140 / 8%);
}

.page-content-block {
  min-width: 0;
}

.page-content-heading h2,
.page-content-heading h3 {
  margin: 0;
  color: var(--navy-dark);
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.page-heading-size-display h2,
.page-heading-size-display h3 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-heading-size-section h2,
.page-heading-size-section h3 {
  font-size: clamp(2.25rem, 4.4vw, 3.1rem);
}

.page-heading-size-subsection h2,
.page-heading-size-subsection h3 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.page-content-heading .eyebrow {
  color: #ef5e49;
}

.page-content-text p {
  margin: 0;
}

.page-content-text p + p {
  margin-top: 1em;
}

.page-text-lead {
  color: #5a7082;
  font-size: clamp(1.22rem, 2.25vw, 1.55rem);
  line-height: 1.65;
}

.page-text-body {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.page-text-small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-content-align-center {
  justify-content: center;
  text-align: center;
}

.page-content-image figure {
  margin: 0;
}

.page-content-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.page-section-tone-navy .page-content-heading h2,
.page-section-tone-navy .page-content-heading h3,
.page-section-tone-navy .page-text-body,
.page-section-tone-navy .rich-text-content {
  color: white;
}

@media (max-width: 48rem) {
  .page-container-mobile-stack,
  .page-container-mobile-stackReverse {
    flex-direction: column;
  }

  .page-container-mobile-stackReverse {
    flex-direction: column-reverse;
  }

  .page-container-mobile-stack > .page-container-column,
  .page-container-mobile-stackReverse > .page-container-column {
    width: 100%;
  }

  .page-section-inner {
    width: calc(100% - 2rem);
  }
}

.section-heading {
  max-width: 52rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading h2,
.page-callout h2,
.collection-placeholder h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-weight: 820;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-page-home > [data-page-block-id="home-analysis"] {
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.public-page-home > [data-page-block-id="home-analysis"] .page-callout {
  border-radius: 0;
  padding-inline: 0;
  background: transparent;
  box-shadow: none;
}

.public-page-home > [data-page-block-id="home-help"],
.public-page-home > [data-page-block-id="home-faq"] {
  background: rgb(248 246 240 / 78%);
  box-shadow: 0 0 0 100vmax rgb(248 246 240 / 78%);
  clip-path: inset(0 -100vmax);
}

.feature-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgb(10 45 75 / 5%);
}

.public-page.fixed-page .feature-card {
  border-top: 0.22rem solid rgb(8 127 140 / 48%);
}

.feature-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 1.22rem;
}

.feature-card p {
  color: var(--muted);
}

.feature-card .text-link {
  margin-top: auto;
  padding-top: 0.35rem;
}

.page-image-block figure {
  margin: 0;
}

.page-image-inset {
  max-width: 58rem;
}

.page-image-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 0.9rem 2.4rem rgb(10 45 75 / 12%);
}

.page-image-block figcaption {
  max-width: 58rem;
  margin: 0.8rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-image-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 8vw, 5rem) 1.5rem;
  color: var(--muted);
  background: #f7f5ef;
  text-align: center;
}

.card-kicker {
  margin: 0 0 0.55rem;
  color: var(--teal) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 780;
  text-decoration-thickness: 1px;
}

.text-link-light {
  color: #bce8e8;
}

.text-link-light:hover {
  color: white;
}

.link-card {
  border-left: 0.35rem solid var(--teal);
}

.process-list {
  display: grid;
  counter-reset: process;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  counter-increment: process;
  border-bottom: 1px solid var(--line);
  padding: 0 0 1rem;
}

.process-list li::before {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  content: counter(process);
  font-weight: 850;
}

.process-list h3 {
  margin: 0;
  color: var(--navy-dark);
}

.process-list p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.page-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 6vw, 5rem);
  align-items: center;
  border-radius: 1.4rem 1.4rem 1.4rem 0.35rem;
  padding: clamp(1.6rem, 5vw, 3.25rem);
  color: #e3edf2;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.page-callout .eyebrow {
  color: #8bd4d6;
}

.page-callout h2 {
  color: white;
}

.callout-content > :first-child {
  margin-top: 0;
}

.callout-content > :last-child {
  margin-bottom: 0;
}

.button-light {
  border-color: white;
  color: var(--navy);
  background: white;
}

.button-light:hover {
  border-color: #dce9ec;
  color: var(--navy-dark);
  background: #dce9ec;
}

.collection-placeholder {
  max-width: 52rem;
  margin-inline: auto;
  border: 1px dashed #aaa398;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
  background: rgb(255 253 250 / 72%);
}

.collection-placeholder p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1rem auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1.1fr) minmax(30rem, 1.7fr);
  gap: clamp(2rem, 7vw, 6rem);
  margin-top: 3rem;
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding: clamp(2.5rem, 6vw, 4.5rem) max(1.25rem, calc((100vw - 76rem) / 2));
  color: #c9d5dd;
  background: var(--navy-dark);
}

.site-footer a {
  color: #a5dbdc;
}

.footer-intro {
  max-width: 31rem;
}

.footer-intro p {
  margin: 0.8rem 0 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white !important;
  font-size: 2rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-brand img {
  width: 4rem;
  height: 3.3rem;
  object-fit: contain;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 750;
}

.footer-disclaimer {
  max-width: 29rem;
  color: #9fb1bd;
  font-size: 0.83rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links h2 {
  margin: 0;
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 14%);
  padding-top: 1.25rem;
  font-size: 0.88rem;
}

.auth-card {
  width: min(31rem, 100%);
  margin: clamp(1rem, 6vh, 5rem) auto;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.stacked-form,
.record-form,
.record-form fieldset {
  display: grid;
  gap: 1.1rem;
}

.stacked-form {
  margin-top: 1.7rem;
}

label {
  display: grid;
  gap: 0.38rem;
}

label > span,
.record-form legend {
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

label small {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bbb7af;
  border-radius: 0.55rem;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: white;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgb(8 127 140 / 16%);
}

.form-message {
  min-height: 1.5em;
  margin: 0;
  color: var(--danger);
  font-weight: 650;
}

.lifecycle-draft {
  color: #4e4035;
  background: #e2d5c6;
}

.lifecycle-published {
  background: #326c4d;
}

.lifecycle-archived {
  background: #766c65;
}

.rich-text-content {
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.rich-text-content > :first-child {
  margin-top: 0;
}

.rich-text-content > :last-child {
  margin-bottom: 0;
}

.rich-text-content h2,
.rich-text-content h3 {
  color: var(--navy-dark);
  line-height: 1.15;
}

.rich-text-content h2 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.rich-text-content h3 {
  margin: 2rem 0 0.8rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.rich-text-content p,
.rich-text-content ul,
.rich-text-content ol,
.rich-text-content blockquote {
  margin: 0 0 1.15rem;
}

.rich-text-content ul,
.rich-text-content ol {
  padding-left: 1.5rem;
}

.rich-text-content li + li {
  margin-top: 0.4rem;
}

.rich-text-content blockquote {
  border-left: 0.3rem solid var(--gold);
  padding: 0.35rem 0 0.35rem 1.25rem;
  color: var(--navy-dark);
  font-size: 1.1em;
}

.rich-text-content blockquote > :last-child {
  margin-bottom: 0;
}

.rich-text-content a {
  color: var(--teal-dark);
  font-weight: 720;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

.rich-text-content code {
  border-radius: 0.25rem;
  padding: 0.08em 0.3em;
  background: #ece9e0;
  font-size: 0.9em;
}

.rich-text-content hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.page-builder-canvas .fixed-hero-inner {
  min-height: 22rem;
}

.page-builder-canvas .hero {
  min-height: 34rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.page-builder-canvas .hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.page-builder-canvas .fixed-hero .page-intro {
  padding-block: 4.2rem;
}

.page-builder-canvas .section-shell {
  width: min(100%, 76rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.neighborhood-directory {
  display: grid;
  gap: 1.25rem;
}

.neighborhood-collection {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 2rem;
  align-items: end;
}

.directory-toolbar h2 {
  margin: 0.25rem 0 0.65rem;
  color: var(--navy-dark);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.directory-toolbar p:not(.eyebrow) {
  max-width: 50rem;
  margin: 0;
  color: var(--muted);
}

.directory-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.55fr);
  gap: 0.8rem;
}

.directory-filters label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.directory-filters input,
.directory-filters select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.75rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.directory-count {
  margin: 0;
  color: var(--muted);
}

.directory-count strong {
  color: var(--navy-dark);
  font-size: 1.3rem;
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.neighborhood-grid-columns-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.neighborhood-grid-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.neighborhood-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-left: 0.35rem solid var(--teal);
  border-radius: 0.85rem;
  padding: 1.15rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.neighborhood-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-family: inherit;
  font-weight: 790;
  font-size: 1.2rem;
  line-height: 1.2;
}

.neighborhood-card div > p,
.neighborhood-card > p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.neighborhood-card .contact-availability {
  width: fit-content;
  border-radius: 99rem;
  padding: 0.35rem 0.65rem;
  background: #ecebe7;
  color: #5f625f;
  font-size: 0.78rem;
  font-weight: 750;
}

.neighborhood-card .contact-availability.has-contact {
  background: #dceee7;
  color: #21654a;
}

.neighborhood-card > a {
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 750;
}

@media (max-width: 68rem) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
  }

  .site-header nav[data-open="true"] {
    display: flex;
  }

  .site-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 58rem) {

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 36rem;
  }

  .tracker-layout {
    grid-template-columns: 1fr;
  }

  .tracker-filters {
    position: static;
  }

  .project-map {
    height: 26rem;
  }

  .feature-grid-three,
  .feature-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .neighborhood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-callout,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 43rem) {
  .site-header {
    padding-inline: 1rem;
  }

  .site-header nav {
    gap: 0.55rem 1rem;
  }

  .project-map {
    height: 22rem;
  }

  .project-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-card-actions .card-link {
    justify-content: space-between;
  }

  .hero,
  .section-shell,
  .page-shell {
    width: 100%;
    padding-inline: 1rem;
  }

  .hero {
    padding-block: 4rem;
  }

  .intro-grid,
  .project-grid,
  .event-grid,
  .article-grid,
  .board-grid,
  .feature-grid-two,
  .feature-grid-three,
  .feature-grid-four,
  .fact-grid,
  .directory-filters,
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }

  .project-heading,
  .event-heading,
  .collection-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-card {
    grid-template-columns: 5rem minmax(0, 1fr);
  }

  .site-footer {
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Live-site parity: public header, homepage template, and footer. */
.public-preview-toolbar {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 42px;
  padding: 0.45rem 1rem;
  color: white;
  background: #0b1e36;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.public-preview-toolbar a {
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: white;
  text-decoration: none;
}

.public-preview-toolbar a:hover {
  border-color: white;
  background: rgb(255 255 255 / 12%);
}

.site-header,
.site-banner,
.public-page,
.site-footer {
  --live-navy: #163b65;
  --live-navy-dark: #0b1e36;
  --live-teal: #2f7c93;
  --live-green: #5f7e3c;
  --live-gold: #e0a43b;
  --live-coral: #ff6b4a;
  --live-sunshine: #ffc23c;
  --live-ink: #1f2a37;
  --live-muted: #5b6b78;
  --live-sand: #efeadd;
  --live-line: #e5e2d8;
  --live-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --live-body: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  --live-shadow: 0 18px 50px rgb(16 44 76 / 12%);
  --live-shadow-small: 0 6px 20px rgb(16 44 76 / 8%);
  font-family: var(--live-body);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  min-height: 69px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--live-line);
  padding: 0.5rem max(22px, calc((100vw - 1136px) / 2));
  background: rgb(255 255 255 / 95%);
  backdrop-filter: saturate(1.4) blur(8px);
}

.site-header .brand {
  gap: 0.65rem;
}

.site-header .brand-logo {
  width: 63px;
  height: 52px;
}

.site-header .brand strong {
  color: var(--live-navy);
  font-family: var(--live-head);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
}

.site-header .brand small {
  margin-top: 0.2rem;
  color: var(--live-teal);
  font-family: var(--live-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.site-header nav {
  flex-wrap: nowrap;
  gap: 0.05rem;
}

.site-header nav a {
  border: 0;
  border-radius: 8px;
  padding: 0.5rem 0.55rem;
  color: var(--live-navy);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--live-navy);
  background: var(--live-sand);
  text-decoration: none;
}

.site-header nav a[aria-current="page"]:not(.nav-cta) {
  text-decoration: none;
}

.site-header nav .nav-cta {
  min-height: auto;
  margin-left: 0.35rem;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
}

.site-header nav .nav-cta-primary,
.site-header nav .nav-cta-secondary {
  color: #3a1c10;
  background: linear-gradient(135deg, var(--live-sunshine), var(--live-coral));
}

.site-header nav .nav-cta-primary:hover,
.site-header nav .nav-cta-secondary:hover {
  color: #3a1c10;
  background: linear-gradient(135deg, #ffce5e, #ff7d57);
}

.site-banner {
  position: relative;
  z-index: 5;
  padding: 0.7rem 1rem;
  color: var(--live-navy);
  background: var(--live-gold);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.site-banner a {
  color: var(--live-navy);
  text-decoration: underline;
}

.public-page-home {
  color: var(--live-ink);
  background: white;
  font-size: 17px;
  line-height: 1.65;
}

.home-live-container {
  width: auto;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 22px;
}

.home-live-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  color: white;
  background:
    linear-gradient(100deg, rgb(8 28 48 / 82%), rgb(13 44 72 / 56%) 46%, rgb(20 60 92 / 16%) 84%),
    url("/assets/wpbrc-waterfront.svg") center / cover no-repeat;
}

.home-live-hero::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgb(224 164 59 / 50%), transparent 70%);
  content: "";
  pointer-events: none;
}

.home-live-hero .home-live-container {
  position: relative;
  z-index: 2;
}

.home-live-hero h1,
.home-live-section h2,
.home-live-section h3 {
  margin: 0 0 0.5em;
  color: var(--live-navy);
  font-family: var(--live-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.home-live-hero h1 {
  max-width: 18ch;
  margin-bottom: 0.5em;
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-shadow: 0 2px 16px rgb(6 26 45 / 60%);
}

.home-live-hero p {
  max-width: 60ch;
  text-shadow: 0 2px 16px rgb(6 26 45 / 60%);
}

.home-live-tagline {
  margin: 0 0 0.4rem;
  color: var(--live-gold);
  font-family: var(--live-head);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-live-eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  color: var(--live-coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-live-hero .home-live-eyebrow {
  color: var(--live-gold);
  font-size: 1.22rem;
}

.home-live-lede,
.home-live-lead {
  font-size: 1.18rem;
}

.home-live-hero .home-live-lede {
  margin: 0 0 1rem;
  color: #e8f1f4;
  font-size: 1.22rem;
}

.home-live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.home-live-actions-center {
  justify-content: center;
}

.home-live-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  color: white;
  background: var(--live-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  transition: 0.15s ease;
}

.home-live-button:hover {
  translate: 0 -3px;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--live-shadow-small);
}

.home-live-button-large {
  padding: 1.05rem 2.1rem;
  font-size: 1.08rem;
}

.home-live-button-primary {
  color: #3a1c10;
  background: linear-gradient(135deg, var(--live-sunshine), var(--live-coral));
}

.home-live-button-secondary {
  background: linear-gradient(135deg, var(--live-navy), var(--live-teal));
}

.home-live-button-ghost,
.home-live-button-ghost-light {
  border-color: var(--live-navy);
  color: var(--live-navy);
  background: transparent;
}

.home-live-button-ghost-light {
  border-color: rgb(255 255 255 / 60%);
  color: white;
}

.home-live-button-ghost:hover {
  color: white;
  background: var(--live-navy);
}

.home-live-button-ghost-light:hover {
  color: var(--live-navy);
  background: white;
}

.home-live-section {
  padding: 4.5rem 0;
}

.home-live-section p {
  margin: 0 0 1rem;
}

.home-live-section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.home-live-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.home-live-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: start;
}

.home-live-lead {
  color: var(--live-muted);
}

.home-live-callout {
  border: 1px solid var(--live-line);
  border-left: 5px solid var(--live-gold);
  border-radius: 10px;
  padding: 1.6rem;
  background: white;
  box-shadow: var(--live-shadow-small);
}

.home-live-callout h3 {
  margin-top: 0;
}

.home-live-note {
  color: var(--live-muted);
  font-size: 0.9rem;
}

.home-live-narrow {
  max-width: 880px;
}

.home-live-navy {
  color: #eaf4f7;
  background: linear-gradient(135deg, var(--live-navy-dark), var(--live-teal) 70%, var(--live-green));
}

.home-live-navy h2,
.home-live-navy p {
  color: white;
}

.home-live-navy .home-live-eyebrow {
  color: var(--live-gold);
}

.home-live-navy .home-live-button {
  margin-top: 1.1rem;
}

.home-live-alt {
  background: linear-gradient(#fef6ec, #fdeede);
}

.home-live-center {
  text-align: center;
}

.home-live-section-head {
  max-width: 62ch;
  margin: 0 0 2.2rem;
}

.home-live-center .home-live-section-head {
  margin-inline: auto;
}

.home-live-grid-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-live-feature-card {
  display: block;
  border: 1px solid var(--live-line);
  border-top: 5px solid var(--live-coral);
  border-radius: 16px;
  padding: 1.7rem;
  background: white;
  text-align: left;
  box-shadow: var(--live-shadow-small);
}

.home-live-feature-card:nth-child(2) { border-top-color: #1fa2d8; }
.home-live-feature-card:nth-child(3) { border-top-color: var(--live-sunshine); }
.home-live-feature-card:nth-child(4) { border-top-color: var(--live-green); }

.home-live-feature-card .home-live-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--live-navy);
  background: var(--live-sand);
  font-size: 1.5rem;
}

.home-live-feature-card p {
  margin-bottom: 0;
  color: var(--live-muted);
  font-size: 0.98rem;
}

.home-live-card-link {
  margin-top: 0.7rem !important;
}

.home-live-card-link a,
.home-live-issue a {
  color: var(--live-teal);
  font-weight: 600;
  text-decoration: none;
}

.home-live-issue {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--live-line);
  padding: 1.3rem 0;
}

.home-live-issue:last-child {
  border-bottom: 0;
}

.home-live-issue h3 {
  margin-bottom: 0;
}

.home-live-issue .home-live-note {
  margin-bottom: 1rem;
}

.home-live-issue a {
  display: block;
}

.home-live-tag {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  color: white;
  background: linear-gradient(135deg, #1fa2d8, var(--live-teal));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-live-tag-active {
  color: #3a1c10;
  background: linear-gradient(135deg, var(--live-coral), var(--live-sunshine));
}

.home-live-photo-section {
  padding: 0 0 4.5rem;
}

.home-live-photo-band {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  margin: 0;
  border-radius: 16px;
  background: var(--live-navy);
  box-shadow: var(--live-shadow);
}

.home-live-photo-band img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 340px;
  object-fit: cover;
}

.home-live-photo-band > span {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  color: #dfe8ee;
  background: rgb(11 30 54 / 55%);
  font-size: 0.62rem;
  font-weight: 600;
}

.home-live-photo-band figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.4rem 1.6rem;
  color: white;
  background: linear-gradient(transparent, rgb(11 30 54 / 85%));
  font-family: var(--live-head);
  font-size: 1.15rem;
  font-weight: 700;
}

.home-live-sand {
  background: linear-gradient(#fdeede, #fae3cf);
}

.home-live-faq-wrap {
  max-width: 820px;
}

.home-live-faq details {
  margin-bottom: 0.7rem;
  border: 1px solid var(--live-line);
  border-radius: 12px;
  padding-inline: 1.3rem;
  background: white;
  text-align: left;
}

.home-live-faq summary {
  padding: 1.1rem 0;
  color: var(--live-navy);
  cursor: pointer;
  font-family: var(--live-head);
  font-weight: 700;
  list-style: none;
}

.home-live-faq summary::after {
  float: right;
  color: #b9791f;
  content: "+";
  font-weight: 800;
}

.home-live-faq details[open] summary {
  border-bottom: 1px solid var(--live-line);
}

.home-live-faq details[open] summary::after {
  content: "–";
}

.home-live-faq details div {
  padding: 1rem 0;
  color: var(--live-muted);
}

.home-live-reviewed {
  margin-top: 1.5rem !important;
  color: var(--live-muted);
  font-size: 0.78rem;
  font-style: italic;
}

.home-live-newsletter {
  max-width: 720px;
}

.newsletter-signup-form {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
  border: 1px solid var(--live-line);
  border-radius: 20px;
  padding: clamp(1.25rem, 4vw, 2rem);
  text-align: left;
  background: white;
  box-shadow: var(--live-shadow-small);
}

.newsletter-signup-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0.85rem;
}

.newsletter-signup-form label {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  color: var(--live-navy);
  font-size: 0.82rem;
  font-weight: 750;
}

.newsletter-signup-form label > span:first-child {
  letter-spacing: 0.02em;
}

.newsletter-signup-form label small {
  color: var(--live-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.newsletter-signup-form input[type="text"],
.newsletter-signup-form input[type="email"],
.newsletter-signup-form input:not([type]) {
  min-height: 3.2rem;
  border: 1px solid #c8d2d8;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  color: var(--live-navy);
  background: #fbfcfc;
  font: inherit;
  font-size: 1rem;
}

.newsletter-signup-form input:focus {
  border-color: var(--live-teal);
  outline: 3px solid rgb(0 125 137 / 14%);
}

.newsletter-signup-consent {
  display: flex !important;
  grid-template-columns: none;
  gap: 0.65rem !important;
  align-items: flex-start;
  color: var(--live-muted) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.newsletter-signup-consent input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--live-teal);
}

.newsletter-signup-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-signup-submit {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.newsletter-signup-submit button {
  flex: 0 0 auto;
  min-height: 3.15rem;
  border-radius: 999px;
  padding: 0.75rem 1.45rem;
  color: white;
  background: var(--live-navy);
  font-weight: 800;
}

.newsletter-signup-submit button:hover:not(:disabled) {
  background: var(--live-teal);
  transform: translateY(-1px);
}

.newsletter-signup-submit button:disabled {
  opacity: 0.68;
}

.newsletter-signup-submit p {
  margin: 0;
  color: #a12c26;
  font-size: 0.86rem;
  line-height: 1.4;
}

.newsletter-signup-submit p.is-success {
  color: var(--teal-dark);
}

@media (max-width: 620px) {
  .newsletter-signup-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-signup-submit {
    align-items: stretch;
    flex-direction: column;
  }
}

.home-live-closing {
  max-width: 720px;
}

.home-live-closing .home-live-actions {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(30rem, 3fr);
  gap: 2rem;
  margin-top: 0;
  border: 0;
  padding: 3.2rem max(22px, calc((100vw - 1136px) / 2)) 1.6rem;
  color: #a9c0cf;
  background: var(--live-navy-dark);
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer a {
  color: #a9c0cf;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

.footer-intro {
  max-width: none;
}

.footer-brand {
  gap: 0;
}

.footer-brand img {
  width: auto;
  height: 64px;
  border-radius: 12px;
  padding: 6px;
  background: white;
}

.footer-brand span {
  display: none;
}

.footer-intro p {
  margin: 1rem 0 0;
}

.footer-tagline {
  color: var(--live-gold);
}

.footer-disclaimer {
  max-width: 65ch;
  margin-top: 0.6rem !important;
  color: #7e98a8;
  font-size: 0.8rem;
}

.footer-links {
  gap: 2rem;
}

.footer-links h2 {
  color: white;
  font-family: var(--live-head);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.footer-links ul {
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.footer-bottom {
  color: #7e98a8;
  font-size: 0.85rem;
}

.footer-bottom a:last-child {
  display: none;
}

body.donation-modal-open {
  overflow: hidden;
}

.donation-modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgb(9 28 48 / 74%);
  backdrop-filter: blur(4px);
}

.donation-modal {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  width: min(45rem, 100%);
  height: min(56rem, calc(100dvh - clamp(2rem, 8vw, 6rem)));
  border: 2px solid var(--live-teal);
  border-radius: 20px;
  background: #f8fafb;
  box-shadow: 0 2rem 6rem rgb(3 18 34 / 42%);
}

.donation-modal-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 1.5rem 1rem;
}

.donation-modal-eyebrow {
  margin: 0 0 0.35rem;
  color: #f05b43;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.donation-modal-header h2 {
  max-width: 38rem;
  margin: 0;
  color: var(--live-navy);
  font-family: var(--live-head);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.donation-modal-close {
  flex: 0 0 auto;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: var(--live-muted);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
}

.donation-modal-close:hover,
.donation-modal-close:focus-visible {
  color: var(--live-navy);
  background: #e7edf0;
}

.donation-modal-frame {
  width: calc(100% - 2rem);
  height: 100%;
  min-height: 0;
  margin: 0 1rem;
  border: 1px solid var(--live-line);
  border-radius: 16px;
  background: white;
}

.donation-modal-fallback {
  margin: 0;
  padding: 0.8rem 1.5rem 1rem;
  color: var(--live-muted);
  font-size: 0.78rem;
  text-align: center;
}

.donation-modal-fallback a {
  color: var(--live-navy);
  font-weight: 750;
}

@media (max-width: 620px) {
  .donation-modal-backdrop {
    padding: 0;
  }

  .donation-modal {
    width: 100%;
    height: 100dvh;
    border-width: 0;
    border-radius: 0;
  }

  .donation-modal-header {
    padding: 1rem;
  }

  .donation-modal-frame {
    width: calc(100% - 1rem);
    margin: 0 0.5rem;
  }
}

@media (min-width: 981px) and (max-width: 68rem) {
  .site-header nav {
    display: flex;
    grid-column: auto;
    justify-content: flex-end;
    padding-bottom: 0;
  }

  .site-menu-toggle {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header nav {
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    flex-direction: column;
    padding: 0.6rem 0 1rem;
  }

  .site-header nav[data-open="true"] {
    display: flex;
  }

  .site-menu-toggle {
    display: inline-flex;
    border: 0;
    padding: 0.2rem 0.5rem;
    color: var(--live-navy);
    background: transparent;
    font-size: 0;
  }

  .site-menu-toggle span {
    font-size: 1.7rem;
  }

  .site-header nav .nav-cta {
    margin-left: 0;
  }

  .home-live-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-live-split {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-live-grid-four {
    grid-template-columns: 1fr;
  }

  .home-live-hero {
    padding: 3.5rem 0 3.2rem;
  }

  .home-live-section {
    padding-block: 3.5rem;
  }

  .home-live-embed {
    height: 700px;
  }

  .home-live-issue {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header .brand span {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* A managed image or secure URL supplied by the Hero editor overrides the
   route's existing artwork; otherwise the current page design remains intact. */
.public-page-home { --hero-route-background-image: url("/assets/wpbrc-waterfront.svg"); }
.public-page-about { --hero-route-background-image: url("/assets/wpbrc-palms.svg"); }
.public-page-resources,
.public-page-contact,
.public-page-events { --hero-route-background-image: url("/assets/wpbrc-civic.svg"); }
.public-page-neighborhoods { --hero-route-background-image: url("/assets/wpbrc-banyan.svg"); }
.public-page-join { --hero-route-background-image: url("/assets/wpbrc-sunset.svg"); }
.public-page-board,
.public-page-donate { --hero-route-background-image: url("/assets/wpbrc-skyline-night.svg"); }

.public-page .fixed-hero,
.public-page .hero {
  background-image:
    linear-gradient(100deg, rgb(8 28 48 / 91%), rgb(16 44 76 / 66%) 52%, rgb(20 60 92 / 30%)),
    var(--hero-background-image, var(--hero-route-background-image, url("/assets/wpbrc-palms.svg")));
  background-position: center, var(--hero-background-position, center);
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.public-page .home-live-hero {
  background-image:
    linear-gradient(100deg, rgb(8 28 48 / 82%), rgb(13 44 72 / 56%) 46%, rgb(20 60 92 / 16%) 84%),
    var(--hero-background-image, var(--hero-route-background-image, url("/assets/wpbrc-waterfront.svg")));
  background-position: center, var(--hero-background-position, center);
  background-size: auto, cover;
  background-repeat: no-repeat;
}
