:root {
  --bg: #eef3ed;
  --surface: #ffffff;
  --surface-soft: #f8faf6;
  --ink: #143a57;
  --ink-soft: #526779;
  --primary: #0f4d7d;
  --primary-deep: #09385c;
  --accent: #a8c63f;
  --accent-deep: #7ba62e;
  --line: #d8e2d8;
  --shadow: 0 14px 40px rgba(12, 50, 80, 0.08);
}

/* Campaign-style homepage template */
.campaign-template {
  --template-navy: #154a73;
  --template-navy-deep: #123858;
  --template-green: #4f9b47;
  --template-green-deep: #317141;
  --template-lime: #c7d83c;
  --template-paper: #ffffff;
  --template-line: #d6dee4;
  --template-text: #1b3550;
  --template-muted: #5f7182;
  --template-shadow: 0 20px 45px rgba(21, 74, 115, 0.08);
  margin: 0;
  color: var(--template-text);
  background:
    radial-gradient(circle at top center, rgba(199, 216, 60, 0.18), transparent 18%),
    linear-gradient(180deg, #fbfcf8 0%, #f3f5ef 100%);
}

.campaign-template a {
  color: inherit;
}

.template-strip {
  height: 10px;
  background: linear-gradient(90deg, var(--template-green-deep), var(--template-lime), var(--template-navy));
}

.template-header {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
  border-bottom: 1px solid rgba(21, 74, 115, 0.08);
}

.template-masthead {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 20px 28px;
  text-align: center;
}

.template-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.template-logo-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 10px 18px rgba(21, 74, 115, 0.12));
}

.template-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.template-logo-copy {
  display: grid;
  gap: 6px;
}

.template-eyebrow,
.template-mini-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--template-green-deep);
}

.template-logo-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--template-navy-deep);
}

.template-logo-copy span:last-child {
  font-size: 1.15rem;
  color: var(--template-muted);
}

.template-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.template-nav a,
.template-admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 74, 115, 0.06);
  color: var(--template-text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.template-nav a:hover,
.template-admin-button:hover {
  background: rgba(79, 155, 71, 0.12);
  transform: translateY(-1px);
}

.template-nav a[aria-current="page"] {
  background: var(--template-navy);
  color: #fff;
}

.template-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.template-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--template-navy);
  color: #fff;
  box-shadow: var(--template-shadow);
}

.template-alert strong {
  color: var(--template-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.template-alert span {
  flex: 1;
  font-weight: 700;
}

.template-alert a {
  color: #fff;
  font-weight: 800;
}

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

.template-slide {
  position: relative;
  min-height: 360px;
  padding: 32px;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--template-shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.template-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 34, 0.02), rgba(10, 22, 34, 0.72)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 35%);
}

.template-slide > * {
  position: relative;
  z-index: 1;
}

.template-slide-a {
  background:
    linear-gradient(135deg, rgba(21, 74, 115, 0.65), rgba(21, 74, 115, 0.2)),
    linear-gradient(140deg, #6b8aa0 0%, #203e58 100%);
}

.template-slide-b {
  background:
    linear-gradient(135deg, rgba(79, 155, 71, 0.52), rgba(79, 155, 71, 0.15)),
    linear-gradient(140deg, #96a746 0%, #37563f 100%);
}

.template-slide-c {
  background:
    linear-gradient(135deg, rgba(199, 216, 60, 0.35), rgba(21, 74, 115, 0.15)),
    linear-gradient(140deg, #89a463 0%, #274c6d 100%);
}

.template-slide span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.template-slide h1,
.template-slide h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.02;
}

.template-slide p {
  margin: 0 0 18px;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.template-slide a {
  align-self: flex-start;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 800;
}

.template-button-row {
  margin: 22px 0 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.template-button-row a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px 18px;
  background: var(--template-paper);
  border: 1px solid var(--template-line);
  border-radius: 14px;
  box-shadow: var(--template-shadow);
  font-weight: 800;
}

.template-button-row a span:last-child {
  color: var(--template-green-deep);
  font-size: 1.2rem;
}

.template-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.template-section-intro {
  margin-bottom: 20px;
}

.template-section-intro h2,
.template-signup-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: var(--template-navy-deep);
}

.template-post {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  margin-bottom: 14px;
  background: var(--template-paper);
  border: 1px solid var(--template-line);
  border-radius: 18px;
  box-shadow: var(--template-shadow);
}

.template-post-date {
  height: 78px;
  border-radius: 18px;
  background: rgba(21, 74, 115, 0.08);
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--template-navy);
}

.template-post-date span {
  font-size: 0.78rem;
  font-weight: 800;
}

.template-post-date strong {
  font-size: 1.8rem;
  line-height: 1;
}

.template-post-copy h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--template-navy-deep);
}

.template-post-copy p {
  margin: 0 0 6px;
  color: var(--template-muted);
}

.template-post-copy small {
  display: block;
  margin-bottom: 10px;
  color: var(--template-muted);
  font-weight: 700;
}

.template-post-copy a {
  color: var(--template-green-deep);
  font-weight: 800;
}

.template-sidebar {
  display: grid;
  gap: 16px;
}

.template-side-panel,
.template-signup,
.template-signup-card {
  background: var(--template-paper);
  border: 1px solid var(--template-line);
  border-radius: 18px;
  box-shadow: var(--template-shadow);
}

.template-side-panel {
  padding: 22px;
}

.template-side-panel h3,
.template-signup-card h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  color: var(--template-navy-deep);
}

.template-side-panel > a:not(.template-solid-button) {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--template-line);
  font-weight: 800;
  color: var(--template-navy);
}

.template-side-panel p,
.template-signup-copy p,
.template-signup-card p {
  color: var(--template-muted);
  line-height: 1.55;
}

.template-solid-button,
.template-signup-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--template-green);
  color: #fff;
  font-weight: 800;
}

.template-promo-panel {
  background:
    linear-gradient(135deg, rgba(199, 216, 60, 0.24), rgba(79, 155, 71, 0.12)),
    #ffffff;
}

.template-signup {
  margin-top: 36px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: center;
}

.template-signup-card {
  padding: 22px;
}

.template-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 46px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--template-muted);
  font-weight: 700;
}

.template-footer p {
  margin: 0;
}

.template-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .template-hero-grid,
  .template-content-grid,
  .template-signup {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .template-masthead {
    padding-top: 30px;
  }

  .template-logo-lockup {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .template-nav {
    justify-content: stretch;
  }

  .template-nav a,
  .template-admin-button,
  .template-button-row a {
    width: 100%;
  }

  .template-alert,
  .template-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-button-row {
    grid-template-columns: 1fr;
  }

  .template-slide {
    min-height: 300px;
    padding: 26px;
  }

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

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(168, 198, 63, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faf4 0%, #edf2ec 100%);
}

body.page-enhanced .page-shell {
  animation: pageRise 560ms ease-out;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1260px, calc(100% - 24px));
  margin: 18px auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 226, 216, 0.85);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    box-shadow 320ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark,
.footer-mark,
.hero-mark {
  display: grid;
  place-items: center;
}

.brand-mark svg,
.footer-mark svg,
.brand-mark img,
.footer-mark img {
  width: 72px;
  height: 72px;
}

.hero-mark svg,
.hero-mark img {
  width: 116px;
  height: 116px;
}

.brand-mark img,
.footer-mark img,
.hero-mark img {
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.tagline {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #5d6e5f;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-soft);
}

.header-nav button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.header-nav a.active {
  color: var(--primary);
  background: #edf5fb;
}

.login-button {
  background: var(--primary);
  color: #fff !important;
}

.admin-button {
  padding: 10px 14px;
  border-radius: 10px;
  background: #edf6e2;
  color: #537625;
  font-weight: 800;
}

.alert-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 18px 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(90deg, #0d5f80 0%, #0a3f68 100%);
  color: #fff;
}

.alert-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(168, 198, 63, 0.2);
  font-size: 1.25rem;
}

.alert-copy {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
}

.alert-copy strong {
  color: var(--accent);
}

.alert-copy span {
  text-transform: none;
}

.alert-link {
  font-size: 2rem;
  color: var(--accent);
}

.content-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  padding: 0 18px 18px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-nav,
.help-card,
.message-card,
.feature-card,
.events-panel,
.actions-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(13, 56, 90, 0.05);
}

.sidebar-nav {
  overflow: hidden;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid #ecf1eb;
  font-weight: 700;
  color: var(--ink-soft);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

.sidebar-nav a::after {
  content: "›";
  color: #9fb097;
}

.sidebar-nav a.is-current {
  background: linear-gradient(180deg, #138451 0%, #0d6f43 100%);
  color: #fff;
}

.sidebar-nav a.is-current::after {
  color: #d8f3e2;
}

.sidebar-nav a:last-child {
  border-bottom: 0;
}

.help-card {
  padding: 18px;
  background: linear-gradient(180deg, #f7fbf3 0%, #edf7ea 100%);
}

.help-card h3,
.feature-card h2,
.events-panel h2,
.actions-panel h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.help-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.help-card a {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.message-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.message-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.message-form,
.admin-login-form,
.events-admin-form {
  display: grid;
  gap: 12px;
}

.message-form label,
.admin-login-form label,
.admin-event-editor label {
  display: grid;
  gap: 6px;
}

.message-form span,
.admin-login-form span,
.admin-event-editor span {
  font-weight: 700;
  color: var(--ink);
}

.message-form input,
.message-form textarea,
.admin-login-form input,
.admin-event-editor input,
.admin-event-editor textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd8cf;
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

#alert-admin-form input[name="alert-text"] {
  min-height: 78px;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 18px 20px;
}

.message-form textarea {
  resize: vertical;
}

.message-form button,
.admin-login-form button,
.events-admin-form button,
.admin-logout,
.clear-messages-button {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.message-form button,
.admin-login-form button,
.events-admin-form button {
  background: var(--primary);
  color: #fff;
}

.events-admin-form .secondary-admin-button {
  background: #edf2e7;
  color: #4e6824;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  font-weight: 700;
  color: #2d7545;
}

.main-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 0;
}

.hero h1 {
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.hero p {
  margin: 0;
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

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

.feature-card {
  padding: 22px;
}

.feature-card:hover,
.minutes-card:hover,
.agreement-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(13, 56, 90, 0.1);
}

.feature-icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.feature-icon.blue {
  background: #dbeef8;
  color: var(--primary);
}

.feature-icon.green {
  background: #e8f3d7;
  color: #5e8d22;
}

.feature-icon.yellow {
  background: #f8f3cb;
  color: #a09210;
}

.feature-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.mini-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #e8eee8;
}

.mini-post h3,
.event-details h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.mini-post p,
.event-details p,
.event-details small {
  margin: 0;
}

.mini-post a {
  color: var(--primary);
  font-weight: 700;
}

.mini-thumb {
  height: 70px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.thumb-one {
  background:
    linear-gradient(135deg, rgba(14, 80, 127, 0.85), rgba(14, 80, 127, 0.25)),
    linear-gradient(180deg, #e8ecf2, #cbc5ba);
}

.thumb-two {
  background:
    linear-gradient(135deg, rgba(168, 198, 63, 0.8), rgba(14, 80, 127, 0.28)),
    linear-gradient(180deg, #d8dfe4, #8093a2);
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid #e8eee8;
}

.link-list a,
.section-link,
.section-header a {
  color: var(--primary);
  font-weight: 800;
}

.link-list span {
  color: var(--ink-soft);
}

.section-link {
  display: inline-block;
  margin-top: 18px;
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.events-panel,
.actions-panel {
  padding: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.event-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #e8eee8;
}

.event-date {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f0f8e7 0%, #ffffff 100%);
  border: 1px solid #d7e7c8;
}

.event-date span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.event-date strong {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.event-details {
  min-width: 0;
}

.event-details p,
.event-details small {
  color: var(--ink-soft);
}

.detail-button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cfe0cd;
  font-weight: 800;
  color: #2d7545;
  white-space: nowrap;
}

.actions-panel {
  background: linear-gradient(180deg, #0f6f48 0%, #0d613f 100%);
  color: #fff;
}

.actions-panel a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.cta-banner {
  position: relative;
  min-height: 170px;
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 36, 63, 0.15), rgba(10, 36, 63, 0.75)),
    linear-gradient(120deg, #7d9f42 0%, #0f4d7d 100%);
  animation: bannerGlow 7s ease-in-out infinite;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 209, 102, 0.55), transparent 18%),
    radial-gradient(circle at 30% 76%, rgba(255, 255, 255, 0.3), transparent 10%),
    linear-gradient(0deg, rgba(18, 24, 34, 0.45), rgba(18, 24, 34, 0.15));
}

.cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 4px;
  z-index: 1;
}

.cta-overlay strong {
  font-family: "Barlow", sans-serif;
  font-size: 1.75rem;
  line-height: 0.95;
}

.cta-overlay span {
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 20px;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, #fbfcf8 0%, #f0f4eb 100%);
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d7e2da;
  color: var(--primary);
  font-weight: 800;
}

.sub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px 20px;
  background: var(--primary-deep);
  color: #dce7ef;
  font-size: 0.95rem;
}

.sub-footer div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.minutes-page {
  padding: 26px 22px 30px;
}

.minutes-hero {
  padding: 12px 6px 24px;
}

.minutes-hero h1 {
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.minutes-hero p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.minutes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.minutes-section + .minutes-section {
  margin-top: 26px;
}

.minutes-section-header {
  margin-bottom: 16px;
}

.minutes-section-header h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.minutes-card,
.minutes-note {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(13, 56, 90, 0.06);
}

.minutes-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 24px;
}

.minutes-card h2 {
  margin: 14px 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.minutes-card p,
.minutes-note p {
  margin: 0;
  color: var(--ink-soft);
}

.minutes-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf6e2;
  color: #537625;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.minutes-card-actions {
  margin-top: 24px;
}

.minutes-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.minutes-note {
  margin-top: 18px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fbfcf8 0%, #f0f4eb 100%);
}

.agreement-page {
  padding: 26px 22px 30px;
}

.agreement-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.agreement-hero-copy,
.agreement-hero-visual,
.rights-strip,
.agreement-toolbar,
.agreement-card,
.agreement-faq,
.agreement-search-panel,
.private-question-panel,
.support-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(13, 56, 90, 0.06);
}

.agreement-hero-copy {
  padding: 26px;
}

.agreement-hero-copy h1 {
  margin: 0 0 12px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.agreement-hero-copy p:last-of-type {
  margin: 0;
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.agreement-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.agreement-download-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #cfe0f1;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.agreement-download-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
}

.agreement-download-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.3rem;
  color: var(--primary);
}

.agreement-download-card p {
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.agreement-download-link {
  font-weight: 700;
  color: var(--primary);
}

.agreement-hero-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 360px;
  background:
    radial-gradient(circle at 70% 40%, rgba(168, 198, 63, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfcf8 0%, #f0f4eb 100%);
}

.agreement-hero-visual::before {
  content: "";
  position: absolute;
  width: 76%;
  height: 58%;
  border-radius: 50%;
  background: rgba(168, 198, 63, 0.12);
}

.agreement-book {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 300px;
  border-radius: 10px 14px 14px 10px;
  background: linear-gradient(180deg, #134f84 0%, #0c3d69 100%);
  box-shadow: 16px 16px 0 rgba(18, 46, 76, 0.18);
  transform: rotate(4deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: floatBook 5.5s ease-in-out infinite;
}

.agreement-book::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px 12px 12px 8px;
}

.agreement-book span {
  position: relative;
  z-index: 1;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.agreement-leaf-cluster {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.agreement-leaf-cluster span {
  display: block;
  width: 28px;
  border-radius: 999px 999px 999px 0;
  transform: rotate(18deg);
}

.agreement-leaf-cluster span:nth-child(1) {
  height: 74px;
  background: #7fb43b;
}

.agreement-leaf-cluster span:nth-child(2) {
  height: 96px;
  background: #a8c63f;
}

.agreement-leaf-cluster span:nth-child(3) {
  height: 64px;
  background: #0f4d7d;
}

.agreement-card ul {
  margin: 0;
  padding-left: 18px;
}

.rights-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  background: linear-gradient(180deg, #f7fbf3 0%, #edf7ea 100%);
}

.rights-strip-title {
  display: flex;
  gap: 14px;
  align-items: center;
}

.rights-strip-title h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.rights-strip-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rights-strip-points span {
  color: var(--ink);
  font-weight: 600;
  padding-left: 18px;
  position: relative;
}

.rights-strip-points span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5e8d22;
  font-weight: 800;
}

.agreement-card li {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}

.agreement-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px 20px;
  margin-top: 18px;
}

.agreement-section-intro {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0 18px;
}

.agreement-section-intro span {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #7fb43b 100%);
}

.agreement-section-intro span:last-child {
  background: linear-gradient(90deg, #7fb43b 0%, transparent 100%);
}

.agreement-section-intro h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.agreement-search {
  display: grid;
  gap: 8px;
  flex: 1;
}

.agreement-search span {
  font-weight: 800;
  color: var(--ink);
}

.agreement-search input,
.private-question-form input,
.private-question-form select,
.private-question-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd8cf;
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.agreement-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  border: 1px solid #d8e2d8;
  border-radius: 999px;
  padding: 11px 15px;
  background: #fff;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  background: #edf6e2;
  color: #537625;
  border-color: #d7e7c8;
}

.agreement-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.agreement-card {
  padding: 22px;
  border-color: #d7e2d7;
}

.agreement-card h2 {
  margin: 14px 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.agreement-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}

.agreement-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.agreement-card-icon.blue {
  background: #dbeef8;
  color: var(--primary);
}

.agreement-card-icon.green {
  background: #e8f3d7;
  color: #5e8d22;
}

.agreement-card-icon.yellow {
  background: #f8f3cb;
  color: #a09210;
}

.agreement-faq,
.private-question-panel,
.support-panel {
  margin-top: 18px;
}

.agreement-faq,
.private-question-panel,
.agreement-search-panel,
.support-panel {
  padding: 24px;
}

.agreement-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.agreement-left-column {
  display: grid;
  gap: 18px;
}

.agreement-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.agreement-faq {
  min-height: 760px;
}

.faq-item {
  border: 1px solid #e2eae2;
  border-radius: 16px;
  background: #fbfdf9;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 18px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-symbol {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p,
.private-question-copy,
.support-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.agreement-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.agreement-search-panel p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.agreement-search-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.agreement-mini-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 2px 0 16px;
}

.agreement-mini-search input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd8cf;
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.agreement-mini-search button {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.search-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.search-chip-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--primary);
  font-weight: 700;
}

.agreement-search-helper {
  margin-top: 16px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.agreement-search-uses {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcf8 0%, #f0f4eb 100%);
}

.agreement-search-uses strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
}

.agreement-search-uses ul {
  margin: 0;
  padding-left: 18px;
}

.agreement-search-uses li {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}

.private-question-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.private-question-form label {
  display: grid;
  gap: 8px;
}

.private-question-form span {
  font-weight: 800;
  color: var(--ink);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
}

.private-question-form button {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, #fbfcf8 0%, #f0f4eb 100%);
}

.support-panel h2 {
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.support-details {
  display: grid;
  gap: 10px;
}

.support-details a,
.support-details span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 30, 48, 0.55);
  z-index: 30;
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(12, 34, 54, 0.28);
}

.modal-card h2,
.admin-dashboard h2,
.admin-section h3,
.admin-event-editor h4 {
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.03em;
}

.modal-card p,
.admin-dashboard p {
  color: var(--ink-soft);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #eef3f6;
  color: var(--primary);
  font-size: 1.4rem;
  cursor: pointer;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 21, 19, 0.42);
  z-index: 40;
}

.contact-modal-card {
  position: relative;
  width: min(700px, 100%);
}

.contact-modal-card,
.modal-card {
  animation: modalLift 280ms ease-out;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBook {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-8px);
  }
}

@keyframes bannerGlow {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }
  50% {
    filter: saturate(1.06) brightness(1.04);
  }
}

@keyframes modalLift {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-enhanced .page-shell,
  .cta-banner,
  .agreement-book,
  .contact-modal-card,
  .modal-card {
    animation: none !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.contact-modal-shell {
  padding: 34px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(102, 187, 106, 0.24), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(21, 101, 192, 0.16), transparent 26%),
    linear-gradient(135deg, #edf7ed 0%, #d7ead7 55%, #dce8f3 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.contact-modal-panel {
  position: relative;
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 30px 28px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(21, 95, 45, 0.14);
  text-align: center;
}

.contact-modal-panel h2 {
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #155f2d;
}

.contact-modal-panel p {
  margin: 0 0 18px;
  color: #5f665f;
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 247, 244, 0.94);
  color: #155f2d;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}

.contact-modal-form {
  display: grid;
  gap: 10px;
}

.contact-modal-form label {
  display: grid;
  gap: 6px;
  text-align: left;
}

.contact-modal-form span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #5f665f;
}

.contact-modal-form input,
.contact-modal-form select,
.contact-modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8e2d8;
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: #1a1a1a;
}

.contact-modal-form select {
  color: #5f665f;
}

.contact-modal-form select option {
  color: #1a1a1a;
}

.contact-modal-form textarea {
  resize: vertical;
}

.contact-modal-form button {
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  background: #2e7d32;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-modal-form button:hover {
  background: #155f2d;
}

.contact-modal-footer {
  margin-top: 18px !important;
  font-size: 0.95rem;
  color: #5f665f !important;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #698226 !important;
}

.admin-dashboard {
  padding: 0 18px 18px;
}

.admin-dashboard-inner {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #d4e0d8;
  background: linear-gradient(180deg, #f9fcf6 0%, #eef5ee 100%);
  box-shadow: 0 12px 30px rgba(12, 50, 80, 0.08);
}

.admin-dashboard-header,
.admin-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}

.admin-logout {
  background: var(--primary-deep);
  color: #fff;
}

.admin-section {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dbe5dc;
}

.admin-section-wide {
  grid-column: 1 / -1;
}

.admin-event-editor {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e3ebe3;
  background: #fbfdf9;
}

.banner-admin-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.banner-admin-preview figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e3ebe3;
  background: #fbfdf9;
}

.banner-admin-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.banner-admin-preview figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.banner-admin-preview figcaption button {
  min-height: 30px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 77, 125, 0.1);
  color: var(--primary);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.middle-banner-caption-editor {
  display: grid;
  gap: 6px;
  padding: 10px;
}

.middle-banner-caption-editor span {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.middle-banner-caption-editor textarea {
  width: 100%;
  min-height: 78px;
  padding: 9px 10px;
  border: 1px solid #ccd8cf;
  border-radius: 10px;
  font: inherit;
  font-size: 0.86rem;
  resize: vertical;
}

.banner-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.minutes-admin-list {
  display: grid;
  gap: 10px;
}

.minutes-admin-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e3ebe3;
  background: #fbfdf9;
}

.minutes-admin-item span {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 77, 125, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.minutes-admin-item strong {
  color: var(--ink);
}

.minutes-admin-item small {
  color: var(--ink-soft);
  font-weight: 700;
}

.clear-messages-button {
  background: #edf2e7;
  color: #4e6824;
}

.message-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.message-item {
  padding: 16px;
  border-radius: 16px;
  background: #f7faf7;
  border: 1px solid #dde8de;
}

.message-item p {
  margin: 10px 0 0;
  white-space: pre-wrap;
}

.message-meta {
  display: grid;
  gap: 2px;
}

.message-meta strong {
  color: var(--ink);
}

.empty-state {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: #f7faf7;
  border: 1px dashed #cad8cb;
}

@media (max-width: 1120px) {
  .site-header,
  .content-grid,
  .lower-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .header-middle {
    display: none;
  }

  .header-nav {
    justify-content: flex-start;
  }

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

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

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

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

  .agreement-hero,
  .agreement-cards,
  .rights-strip,
  .rights-strip-points,
  .agreement-content-grid,
  .question-grid,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .agreement-section-intro {
    grid-template-columns: 1fr;
  }

  .agreement-section-intro span {
    display: none;
  }

  .agreement-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .agreement-mini-search {
    grid-template-columns: 1fr;
  }

  .contact-modal-shell {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .contact-modal-backdrop {
    place-items: start center;
    overflow-y: auto;
    padding: 10px;
  }

  .contact-modal-card:not(.scholarship-modal-card) {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .contact-modal-card:not(.scholarship-modal-card) .contact-modal-shell {
    padding: 14px;
    border-radius: 18px;
  }

  .contact-modal-card:not(.scholarship-modal-card) .contact-modal-panel {
    padding: 54px 16px 18px;
  }

  .contact-modal-card:not(.scholarship-modal-card) .contact-modal-close {
    top: 18px;
    right: 18px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(21, 95, 45, 0.18);
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100%, calc(100% - 12px));
    margin: 6px auto;
    border-radius: 18px;
  }

  .site-header,
  .content-grid,
  .site-footer,
  .sub-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .alert-banner {
    margin: 0 14px 14px;
    align-items: flex-start;
  }

  .alert-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .event-row {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .detail-button {
    margin-top: 4px;
  }

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

  .admin-dashboard-header,
  .admin-section-heading {
    flex-direction: column;
  }
}

.campaign-template .template-post.event-row {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 20px;
  border-top: 0;
}

@media (max-width: 640px) {
  .campaign-template .template-post.event-row {
    grid-template-columns: 1fr;
  }
}

/* Lamont campaign-inspired local homepage */
.lamont-local {
  --local-primary: #2e7d32;
  --local-primary-dark: #155f2d;
  --local-primary-light: #66bb6a;
  --local-secondary: #1565c0;
  --local-dark: #101513;
  --local-text: #1a1a1a;
  --local-muted: #5f665f;
  --local-light: #f5f7f4;
  --local-white: #ffffff;
  --local-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--local-text);
  background: var(--local-white);
  line-height: 1.55;
}

.lamont-local a {
  color: inherit;
  text-decoration: none;
}

.local-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.local-brand {
  color: var(--local-primary-dark);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.local-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.local-brand-mark {
  display: grid;
  place-items: center;
  width: 81px;
  height: 81px;
  flex: 0 0 auto;
}

.local-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.local-brand-name {
  color: #45698e;
  background: linear-gradient(90deg, #154a73 0%, #4f9b47 55%, #c7d83c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.local-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  margin-left: auto;
  border: 1px solid rgba(21, 95, 45, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.local-menu-toggle span {
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--local-primary-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.local-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.local-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.local-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

#local-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

#local-nav a,
.local-nav-button,
.local-search-button {
  appearance: none;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  color: var(--local-dark);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

#local-nav a:hover,
.local-nav-button:hover,
.local-search-button:hover {
  color: var(--local-primary);
}

#local-nav a[aria-current="page"] {
  color: var(--local-primary-dark);
}

#local-nav > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--local-primary);
  filter: drop-shadow(0 4px 4px rgba(17, 39, 22, 0.18));
  transform: translateX(-50%);
}

.local-login-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.local-login-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.local-login-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.local-login-menu.is-open .local-login-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.local-login-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 25;
  display: none;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(21, 74, 115, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(10, 33, 54, 0.16);
}

.local-login-menu.is-open .local-login-dropdown {
  display: grid;
  gap: 4px;
}

.local-login-dropdown a,
.local-login-dropdown button {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--local-dark);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.local-login-dropdown a:hover,
.local-login-dropdown button:hover,
.local-login-dropdown a[aria-current="page"] {
  background: rgba(46, 125, 50, 0.1);
  color: var(--local-primary-dark);
}

.local-search-button {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  order: 20;
}

.local-search-button span {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.local-search-button span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.site-search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: 92px 5vw 32px;
  background: rgba(8, 18, 16, 0.62);
  backdrop-filter: blur(8px);
}

.site-search-backdrop[hidden] {
  display: none;
}

.site-search-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 124px));
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.site-search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--local-light);
  color: var(--local-dark);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.site-search-card h2 {
  margin: 0 0 18px;
  color: var(--local-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.site-search-field {
  display: grid;
  gap: 8px;
}

.site-search-field span {
  color: var(--local-muted);
  font-weight: 900;
}

.site-search-field input {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(21, 95, 45, 0.18);
  border-radius: 16px;
  color: var(--local-dark);
  font: inherit;
  font-weight: 700;
}

.site-search-results {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.site-search-result {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 16px;
  background: var(--local-light);
}

.site-search-result strong {
  color: var(--local-primary-dark);
  font-size: 1.15rem;
}

.site-search-result span,
.site-search-empty {
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.55;
}

.site-search-highlight {
  padding: 0 0.16em;
  border-radius: 0.22em;
  background: #fff176;
  color: #101513;
  box-shadow: 0 0 0 2px rgba(255, 241, 118, 0.28);
}

.local-hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8vw 5vw;
  background: #101513;
  cursor: pointer;
}

.local-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 34%, rgba(0, 0, 0, 0.3) 64%, rgba(0, 0, 0, 0.08) 100%),
    radial-gradient(circle at 82% 45%, rgba(102, 187, 106, 0.22), transparent 24%);
}

.local-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.local-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 560ms ease, opacity 560ms ease;
}

.local-hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.local-hero-slide.is-exiting-left {
  opacity: 1;
  transform: translateX(-100%);
}

.local-hero-slide.is-exiting-right {
  opacity: 1;
  transform: translateX(100%);
}

.local-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font: inherit;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.local-hero-arrow:hover {
  background: rgba(46, 125, 50, 0.78);
  transform: translateY(-50%) scale(1.04);
}

.local-hero-prev {
  left: 22px;
}

.local-hero-next {
  right: 22px;
}

.local-hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 740px;
  color: white;
  cursor: default;
}

.local-eyebrow,
.local-section-kicker {
  color: var(--local-primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 8px;
}

.local-eyebrow,
.local-section-kicker.light {
  color: var(--local-primary-light);
}

.local-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  margin: 0 0 14px;
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.local-hero-line {
  display: block;
  opacity: 0;
  transform: translateX(-48px);
  animation: localHeroSlideIn 0.8s ease-out forwards;
}

.local-hero-line:nth-child(2) {
  animation-delay: 0.14s;
}

.local-hero-line:nth-child(3) {
  animation-delay: 0.28s;
}

.local-hero-copy {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
}

.local-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.local-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow:
    4px 4px 0 rgba(8, 43, 20, 0.38),
    10px 10px 24px rgba(17, 39, 22, 0.16);
  transform: translateY(0);
  transition: transform 0.18s ease, background 0.25s ease, border 0.25s ease, box-shadow 0.18s ease;
}

.local-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    7px 7px 0 rgba(8, 43, 20, 0.34),
    14px 14px 32px rgba(17, 39, 22, 0.2);
}

.local-btn:active {
  transform: translateY(2px);
  box-shadow:
    1px 1px 0 rgba(8, 43, 20, 0.38),
    5px 5px 16px rgba(17, 39, 22, 0.14);
}

.local-primary {
  background: var(--local-primary);
  color: white;
}

.local-primary:hover {
  background: var(--local-primary-dark);
}

.local-secondary {
  border-color: white;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.local-large {
  min-width: 240px;
}

.local-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 5vw;
}

.local-tight-top {
  padding-top: 24px;
}

.local-intro,
.local-two-column {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.local-intro h2,
.local-two-column h2,
.local-events h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.local-intro p,
.local-two-column p {
  margin: 0;
  font-size: 1.15rem;
}

.local-intro-copy {
  padding-top: 31px;
}

.homepage-glance {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 46px;
  padding-bottom: 30px;
}

.homepage-glance-head {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(21, 95, 45, 0.12);
  box-shadow: 0 18px 44px rgba(17, 39, 22, 0.08);
}

.homepage-glance-head h2 {
  margin: 0 0 14px;
  color: var(--local-ink);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.homepage-glance-head p:last-child {
  margin: 0;
  color: var(--local-muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.homepage-glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.homepage-glance-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 216px;
  padding: 24px;
  border-radius: 8px;
  background: var(--local-light);
  border: 1px solid rgba(21, 95, 45, 0.12);
}

.homepage-glance-card-feature {
  background: linear-gradient(135deg, #eff8e9 0%, #ffffff 100%);
  border-color: rgba(80, 150, 55, 0.28);
}

.homepage-help-card {
  background: #ffffff;
}

.homepage-glance-card span {
  color: var(--local-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.homepage-glance-card h3 {
  margin: 0;
  color: var(--local-ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.homepage-glance-card p {
  margin: 0;
  color: var(--local-muted);
  line-height: 1.5;
}

.homepage-glance-card > a:not(.local-btn) {
  margin-top: auto;
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.homepage-glance-card .local-btn {
  margin-top: auto;
}

.homepage-resource-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.homepage-resource-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(21, 95, 45, 0.12);
}

.homepage-resource-links a:hover {
  background: #e5f2df;
}

.local-alert {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  box-shadow: var(--local-shadow);
}

.local-alert strong {
  color: #d8ff86;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.local-alert span {
  flex: 1;
  font-weight: 800;
}

.local-alert a {
  font-weight: 900;
}

.local-photo-feature {
  position: relative;
  width: min(1449px, calc(100% - 5vw));
  margin: 24px auto 14px;
  padding: 0 0 42px;
  overflow: hidden;
}

.local-photo-track {
  display: flex;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: visible;
  scrollbar-width: none;
  padding: 0 0 28px;
  margin: 0 0 -28px;
}

.local-photo-track.is-cycling {
  animation: middleBannerCycle 70s linear infinite;
  width: max-content;
}

.local-photo-track.is-paused {
  animation-play-state: paused;
}

@keyframes middleBannerCycle {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.local-photo-track::-webkit-scrollbar {
  display: none;
}

.local-photo-card {
  flex: 0 0 calc((100% - 54px) / 4);
  margin: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
  cursor: pointer;
}

.local-photo-track.is-cycling .local-photo-card {
  flex-basis: min(340px, 72vw);
}

.local-photo-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.local-photo-card:hover img {
  transform: scale(1.035);
}

.local-photo-card figcaption {
  padding: 14px 16px 18px;
  font-weight: 700;
  color: var(--local-dark);
  background: var(--local-white);
}

.local-photo-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font: inherit;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.local-photo-arrow:hover {
  background: rgba(46, 125, 50, 0.84);
  transform: translateY(-50%) scale(1.04);
}

.local-photo-prev {
  left: 22px;
}

.local-photo-next {
  right: 22px;
}

.local-events {
  padding-top: 38px;
}

.local-event-list {
  display: grid;
  gap: 16px;
}

.local-event.event-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 0;
  border-radius: 20px;
  background: var(--local-light);
}

.local-event-date {
  display: grid;
  place-items: center;
  align-content: center;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  color: var(--local-primary-dark);
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.local-event-date span {
  font-size: 0.78rem;
  font-weight: 900;
}

.local-event-date strong {
  font-size: 1.85rem;
  line-height: 1;
}

.local-event h3 {
  margin: 0 0 5px;
  font-size: 1.25rem;
}

.local-event p,
.local-event small {
  display: block;
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
}

.local-event .event-location a {
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.homepage-support-board {
  padding-top: 34px;
}

.homepage-board-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.homepage-board-head h2 {
  margin: 0;
  color: var(--local-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.homepage-card-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.homepage-modern-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-height: 300px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(21, 95, 45, 0.12);
  box-shadow: 0 18px 42px rgba(17, 39, 22, 0.08);
}

.homepage-modern-card:nth-child(2) {
  background: #f7faf4;
}

.homepage-modern-card:nth-child(3) {
  background: #eff8e9;
}

.homepage-modern-card-quote {
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: #fff;
}

.homepage-modern-card > span {
  color: var(--local-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.homepage-modern-card-quote > span {
  color: var(--local-primary-light);
}

.homepage-modern-card h3 {
  margin: 0;
  color: var(--local-ink);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.homepage-modern-card-quote h3 {
  color: #fff;
}

.homepage-modern-card p,
.homepage-modern-card li {
  color: var(--local-muted);
  line-height: 1.45;
}

.homepage-modern-card-quote p {
  color: rgba(255, 255, 255, 0.86);
}

.homepage-modern-card ul {
  margin: 0;
  padding-left: 19px;
}

.homepage-modern-card a {
  margin-top: auto;
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.homepage-priority-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.homepage-priority-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--local-primary-dark);
  font-weight: 900;
  font-size: 0.92rem;
  border: 1px solid rgba(21, 95, 45, 0.12);
}

.local-dark-band {
  background:
    radial-gradient(circle at top left, rgba(102, 187, 106, 0.25), transparent 35%),
    linear-gradient(135deg, #101513, #18231c);
  color: white;
}

.local-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 22px;
}

.local-card,
.local-quote-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 28px;
}

.local-card h3 {
  margin: 0 0 14px;
  color: var(--local-primary-light);
  font-size: 1.5rem;
}

.local-card ul {
  padding-left: 20px;
  margin: 0;
}

.local-card li {
  margin-bottom: 8px;
}

.local-quote-card {
  display: flex;
  align-items: center;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.local-quote-card p {
  margin: 0;
}

.local-focus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-focus-list div {
  padding: 20px;
  border-radius: 18px;
  background: var(--local-light);
  border-left: 7px solid var(--local-primary);
  font-weight: 800;
}

.local-contact {
  margin: 0 5vw 60px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--local-shadow);
}

.local-contact h2 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #fff;
}

.local-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.local-contact .local-btn {
  border-color: var(--local-primary-light);
  background: var(--local-primary);
  color: #fff;
}

.local-contact .local-btn:hover {
  background: var(--local-primary-dark);
  border-color: #fff;
}

.scholarship-feature {
  width: min(1449px, calc(100% - 5vw));
  max-width: none;
  overflow: hidden;
}

.scholarship-feature-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.scholarship-feature-head > div:first-child {
  max-width: 760px;
}

.scholarship-feature h2,
.member-update-card h3 {
  margin: 0 0 14px;
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--local-ink);
}

.scholarship-feature h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.member-update-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.scholarship-feature p:last-child {
  margin: 0;
  color: var(--local-muted);
  font-size: 1.08rem;
}

.member-update-controls {
  display: flex;
  gap: 10px;
}

.member-update-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    4px 4px 0 rgba(8, 43, 20, 0.34),
    10px 10px 24px rgba(17, 39, 22, 0.14);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.member-update-controls button:hover {
  transform: translateY(-3px);
  box-shadow:
    7px 7px 0 rgba(8, 43, 20, 0.3),
    14px 14px 32px rgba(17, 39, 22, 0.18);
}

.member-update-controls button:active {
  transform: translateY(2px);
  box-shadow:
    1px 1px 0 rgba(8, 43, 20, 0.34),
    5px 5px 16px rgba(17, 39, 22, 0.12);
}

.member-update-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 28px;
}

.member-update-track::-webkit-scrollbar {
  height: 8px;
}

.member-update-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(21, 95, 45, 0.26);
}

.member-update-card {
  scroll-snap-align: start;
  flex: 0 0 min(360px, 82vw);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid #dce6dc;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 39, 22, 0.1);
}

.member-update-card.is-featured {
  flex-basis: min(560px, 88vw);
}

.member-update-card.wage-update-card {
  flex-basis: min(680px, 92vw);
}

.member-update-card.is-featured .scholarship-photo-button {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 0;
}

.member-update-card.is-featured .scholarship-photo-button img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.member-update-card > span,
.member-update-card div > span {
  color: var(--local-primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.member-update-card p {
  color: var(--local-muted);
}

.member-update-card a,
.member-update-card button:not(.scholarship-photo-button) {
  align-self: flex-start;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.scholarship-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #f7faf5;
  box-shadow: 0 18px 36px rgba(17, 39, 22, 0.14);
  cursor: pointer;
}

.scholarship-photo-button img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.scholarship-photo-button:hover img {
  transform: scale(1.035);
}

.scholarship-modal-card {
  display: flex;
  max-height: calc(100dvh - 48px);
  max-width: 760px;
  overflow: hidden;
}

.scholarship-modal-content {
  width: 100%;
  overflow-y: auto;
  padding: clamp(26px, 5vw, 46px);
  background:
    radial-gradient(circle at top right, rgba(102, 187, 106, 0.16), transparent 34%),
    #fff;
}

.scholarship-modal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--local-primary-dark);
}

.scholarship-modal-content p {
  color: var(--local-text);
}

.scholarship-link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.scholarship-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border-radius: 14px;
  background: #edf5ed;
  color: var(--local-primary-dark);
  font-weight: 900;
}

.scholarship-link-list a::after {
  content: "Open";
  color: var(--local-primary);
}

.new-member-page {
  display: grid;
  gap: 26px;
}

.new-member-hero {
  background:
    linear-gradient(90deg, rgba(13, 65, 103, 0.9), rgba(42, 102, 72, 0.76)),
    url("assets/middle-banner-6.jpeg") center/cover;
}

.new-member-card-strip {
  align-items: center;
}

.new-member-card-strip p {
  margin: 8px 0 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.new-member-card-strip .local-btn {
  white-space: nowrap;
}

.new-member-grid .health-safety-card {
  min-height: 100%;
}

.new-member-bargaining {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(15, 77, 125, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 77, 125, 0.08);
}

.new-member-bargaining-copy h2 {
  margin: 0 0 10px;
  color: var(--local-primary-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.new-member-bargaining-copy p {
  color: var(--local-text);
  font-weight: 700;
}

.new-member-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--local-text);
}

.new-member-steps li {
  padding-left: 4px;
}

.new-member-steps strong {
  color: var(--local-primary-dark);
}

.new-member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.new-member-action-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid var(--local-primary);
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(21, 95, 45, 0.2);
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.new-member-action-button::after {
  content: "→";
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.new-member-action-button:hover {
  transform: translateY(-2px);
  background: var(--local-primary-dark);
  border-color: var(--local-primary-dark);
  box-shadow: 0 18px 32px rgba(21, 95, 45, 0.28);
}

.new-member-action-button:hover::after {
  transform: translateX(4px);
}

.new-member-action-button:focus-visible {
  outline: 3px solid rgba(102, 187, 106, 0.45);
  outline-offset: 3px;
}

.new-member-action-button-secondary {
  background: #fff;
  color: var(--local-primary-dark) !important;
}

.new-member-action-button-secondary:hover {
  color: #fff !important;
}

.new-member-process-card {
  margin: 52px 0 0;
  overflow: hidden;
  border: 1px solid rgba(15, 77, 125, 0.14);
  border-radius: 14px;
  background: #f8fbf8;
  box-shadow: 0 16px 34px rgba(15, 77, 125, 0.1);
}

.new-member-process-card a,
.new-member-process-card img {
  display: block;
}

.new-member-process-card img {
  width: 100%;
  height: auto;
}

.new-member-process-actions {
  display: flex;
  justify-content: flex-start;
  padding: 14px;
}

.new-member-process-actions .new-member-action-button::after,
.new-member-actions .new-member-action-button::after {
  content: none;
}

.new-member-process-card figcaption {
  padding: 12px 14px;
  color: var(--local-muted);
  font-weight: 800;
}

.new-member-rights-list,
.new-member-term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.new-member-rights-list article,
.new-member-rights-list a,
.new-member-term-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  background: #fff;
  color: inherit;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.new-member-rights-list a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.new-member-rights-list strong,
.new-member-term-grid strong {
  color: var(--local-dark);
  font-size: 1.08rem;
}

.new-member-rights-list span,
.new-member-term-grid span {
  color: var(--local-muted);
  font-weight: 700;
}

.new-member-resource-list a {
  min-height: 118px;
}

.new-member-benefits-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 5px solid var(--local-primary);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 39, 22, 0.09);
}

.new-member-benefits-note strong {
  color: var(--local-primary-dark);
  font-size: 1.08rem;
}

.new-member-benefits-note span {
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.6;
}

.new-member-faq {
  display: block;
  width: min(100% - 10vw, 1180px);
  margin: 0 auto;
}

.new-member-faq .agreement-faq {
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.site-map-hero {
  background:
    linear-gradient(90deg, rgba(13, 65, 103, 0.9), rgba(42, 102, 72, 0.76)),
    url("assets/middle-banner-7.jpeg") center/cover;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-map-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.site-map-card > span {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  color: var(--local-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-map-card h2 {
  margin: 0;
  color: var(--local-dark);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.site-map-card a,
.site-map-card button {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 14px;
  background: var(--local-light);
  color: var(--local-primary-dark);
  font: inherit;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.site-map-card a::after,
.site-map-card button::after {
  content: "Open";
  color: var(--local-primary);
}

.knowledge-base-local .site-map-card a {
  align-items: center;
  margin-top: 8px;
  border: 2px solid rgba(21, 95, 45, 0.24);
  background: #155f2d;
  color: #fff;
  box-shadow:
    4px 4px 0 rgba(8, 43, 20, 0.28),
    10px 10px 22px rgba(17, 39, 22, 0.12);
}

.knowledge-base-local .site-map-card a::after {
  content: "Link";
  flex: 0 0 auto;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.knowledge-base-local .site-map-card a:hover {
  background: #1f7a3a;
}

.knowledge-base-local .reveal,
.knowledge-base-local .reveal-item,
.knowledge-base-local .site-map-section,
.knowledge-base-local .knowledge-link-directory,
.knowledge-base-local .site-map-grid,
.knowledge-base-local .site-map-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.knowledge-link-directory {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(21, 95, 45, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(17, 39, 22, 0.1);
}

.knowledge-link-directory h2 {
  margin: 4px 0 8px;
  color: var(--local-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.knowledge-link-directory p {
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
}

.knowledge-link-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.knowledge-link-directory-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid rgba(21, 95, 45, 0.2);
  border-radius: 8px;
  background: #eef7ed;
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    4px 4px 0 rgba(8, 43, 20, 0.2),
    10px 10px 22px rgba(17, 39, 22, 0.1);
}

.knowledge-link-directory-grid a::after {
  content: "Open";
  color: var(--local-primary);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.knowledge-link-directory-grid a:hover {
  background: #dff0dc;
  transform: translateY(-2px);
}

.knowledge-links-label {
  margin: 8px 0 2px;
  color: var(--local-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.minutes-contact {
  margin-top: 72px;
}

.local-footer {
  position: relative;
  background: var(--local-dark);
  color: white;
  text-align: center;
  padding: 26px 5vw;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.local-footer-social {
  position: absolute;
  right: 5vw;
  top: 50%;
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  transform: translateY(-50%);
}

.local-footer-map {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.local-footer-map:hover {
  color: var(--local-primary-light);
}

.local-footer-social:hover {
  transform: translateY(calc(-50% - 1px));
}

.local-footer-social span:not(.local-facebook-logo) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.local-facebook-logo {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.minutes-hero-local {
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 130px 5vw 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 78% 18%, rgba(102, 187, 106, 0.34), transparent 28%),
    linear-gradient(135deg, #101513 0%, #18351f 54%, #123858 100%);
}

.minutes-hero-local > div {
  max-width: 860px;
}

.minutes-hero-local h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.minutes-hero-local p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
}

.minutes-local-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 5vw 12px;
}

.minutes-local-heading {
  margin-bottom: 22px;
}

.minutes-local-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.minutes-local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.minutes-local-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 250px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(21, 95, 45, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.minutes-local-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.minutes-local-card span {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  color: var(--local-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.minutes-local-card h3 {
  margin: 0;
  color: var(--local-dark);
  font-size: 1.6rem;
  line-height: 1.05;
}

.minutes-local-card p {
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
}

.minutes-local-card a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font-weight: 900;
}

.agreement-local .agreement-page {
  padding: 0;
}

.agreement-local .agreement-hero {
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 130px 5vw 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 78% 18%, rgba(102, 187, 106, 0.34), transparent 28%),
    linear-gradient(135deg, #101513 0%, #18351f 54%, #123858 100%);
}

.agreement-local .agreement-hero-copy,
.agreement-local .agreement-hero-visual,
.agreement-local .agreement-toolbar,
.agreement-local .agreement-card,
.agreement-local .agreement-faq,
.agreement-local .agreement-search-panel,
.agreement-local .private-question-panel,
.agreement-local .support-panel {
  box-shadow: none;
}

.agreement-local .agreement-hero-copy {
  max-width: 860px;
  padding: 0;
  border: 0;
  background: transparent;
}

.agreement-local .agreement-hero-copy .eyebrow,
.agreement-local .agreement-section-intro .eyebrow,
.agreement-local .minutes-section-header .eyebrow,
.agreement-local .rights-strip .eyebrow,
.agreement-local .support-panel .eyebrow {
  color: var(--local-primary-light) !important;
}

.agreement-local .agreement-hero-copy .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 900;
}

.agreement-local .agreement-hero-copy h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.agreement-local .agreement-hero-copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
}

.agreement-local .agreement-download-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font-weight: 900;
}

.agreement-local .agreement-download-link:hover {
  background: var(--local-primary-dark);
}

.agreement-local .agreement-toolbar,
.agreement-local .agreement-download-panel,
.agreement-local .agreement-steward-panel,
.agreement-local .agreement-section-intro,
.agreement-local .agreement-cards,
.agreement-local .rights-strip,
.agreement-local .agreement-content-grid,
.agreement-local .support-panel {
  width: min(1180px, calc(100% - 10vw));
  margin-left: auto;
  margin-right: auto;
}

.agreement-local .agreement-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 52px;
  padding: 26px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(102, 187, 106, 0.12), rgba(21, 74, 115, 0.06)),
    #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.agreement-local .agreement-steward-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(102, 187, 106, 0.12), rgba(21, 74, 115, 0.06)),
    #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.agreement-local .agreement-download-panel h2,
.agreement-local .agreement-steward-panel h2 {
  margin: 0 0 8px;
  color: var(--local-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.agreement-local .agreement-download-panel p:last-child,
.agreement-local .agreement-steward-panel p:last-child {
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
}

.agreement-local .agreement-steward-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.agreement-local .agreement-steward-actions .section-link {
  color: var(--local-primary-dark);
  font-weight: 900;
}

.agreement-local .agreement-toolbar {
  margin-top: 52px;
  padding: 22px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.agreement-local .agreement-search span {
  color: var(--local-muted);
}

.agreement-local .agreement-search input,
.agreement-local .agreement-mini-search input,
.agreement-local .private-question-form input,
.agreement-local .private-question-form select,
.agreement-local .private-question-form textarea {
  border: 1px solid #d8e2d8;
  border-radius: 14px;
  background: #fff;
}

.agreement-local .filter-button,
.agreement-local .agreement-mini-search button,
.agreement-local .private-question-form button {
  border-radius: 999px;
  background: var(--local-light);
  color: var(--local-dark);
  font-weight: 900;
}

.agreement-local .filter-button.is-active,
.agreement-local .agreement-mini-search button,
.agreement-local .private-question-form button {
  background: var(--local-primary);
  color: #fff;
}

.agreement-local .agreement-section-intro {
  margin-top: 52px;
}

.agreement-local .agreement-section-intro span {
  background: var(--local-primary);
}

.agreement-local .agreement-cards {
  gap: 22px;
}

.agreement-local .agreement-card,
.agreement-local .agreement-faq,
.agreement-local .agreement-search-panel,
.agreement-local .private-question-panel {
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.agreement-local .agreement-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.agreement-local .agreement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.agreement-local .agreement-card h2,
.agreement-local .agreement-faq h2,
.agreement-local .agreement-search-panel h2,
.agreement-local .private-question-panel h2,
.agreement-local .support-panel h2 {
  color: var(--local-dark);
  letter-spacing: 0;
}

.agreement-local .agreement-card p,
.agreement-local .agreement-card li,
.agreement-local .agreement-search-panel p,
.agreement-local .private-question-copy,
.agreement-local .faq-answer p {
  color: var(--local-muted);
}

.agreement-local .rights-strip {
  margin-top: 36px;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: #fff;
  box-shadow: var(--local-shadow);
}

.agreement-local .rights-strip h2,
.agreement-local .rights-strip-points span {
  color: #fff;
}

.agreement-local .rights-strip-points span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.agreement-local .agreement-content-grid {
  margin-top: 36px;
}

.agreement-local .agreement-faq-wide {
  display: block;
}

.agreement-local .agreement-faq-wide .agreement-faq {
  width: 100%;
  min-height: 0;
}

.agreement-local .faq-item {
  border-color: #d8e2d8;
  background: var(--local-light);
}

.agreement-local .support-panel {
  margin-top: 52px;
  margin-bottom: 60px;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: #fff;
  box-shadow: var(--local-shadow);
}

.agreement-local .support-panel h2,
.agreement-local .support-panel p,
.agreement-local .support-panel a,
.agreement-local .support-panel span {
  color: #fff;
}

.agreement-local .support-contact-button {
  justify-self: end;
  width: 240px;
  max-width: 100%;
  border-color: var(--local-primary-light);
  background: var(--local-primary);
  color: #fff !important;
}

.agreement-local .support-contact-button:hover {
  background: var(--local-primary-dark);
  border-color: #fff;
}

.health-safety-page {
  background:
    radial-gradient(circle at top right, rgba(166, 206, 57, 0.14), transparent 28%),
    linear-gradient(180deg, var(--local-light) 0%, #fff 100%);
}

.health-safety-hero {
  min-height: 54vh;
}

.health-safety-priority,
.health-safety-section,
.health-safety-strip,
.health-safety-contact {
  width: min(100% - 10vw, 1180px);
  margin: 0 auto;
}

.health-safety-priority {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--local-shadow);
}

.health-safety-priority h2,
.health-safety-contact h2 {
  margin: 0 0 10px;
  color: var(--local-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.health-safety-priority p,
.health-safety-contact p {
  margin: 0;
  max-width: 760px;
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.65;
}

.health-safety-section {
  padding-top: 56px;
}

.health-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.health-safety-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.health-safety-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.health-safety-card span {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  color: var(--local-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.health-safety-card h3 {
  margin: 0;
  color: var(--local-dark);
  font-size: 1.7rem;
  line-height: 1.05;
}

.health-safety-card p,
.health-safety-resource-list span {
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.6;
}

.health-safety-card a,
.health-safety-card button,
.health-safety-resource-list a {
  color: inherit;
}

.health-safety-card a,
.health-safety-card button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.health-safety-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: #fff;
  box-shadow: var(--local-shadow);
}

.health-safety-strip h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.health-safety-strip .local-section-kicker {
  color: var(--local-primary-light);
}

.health-safety-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.health-safety-steps span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}

.health-safety-resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.health-safety-resource-list a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 39, 22, 0.09);
}

.health-safety-resource-list strong {
  color: var(--local-primary-dark);
  font-size: 1.15rem;
}

.health-safety-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 64px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: #fff;
  box-shadow: var(--local-shadow);
}

.health-safety-contact h2 {
  color: #fff;
}

.health-safety-contact p {
  color: rgba(255, 255, 255, 0.86);
}

.health-safety-contact .local-section-kicker {
  color: var(--local-primary-light);
}

.health-safety-contact .local-btn {
  border-color: var(--local-primary-light);
  background: var(--local-primary);
  color: #fff;
}

.health-safety-contact .local-btn:hover {
  background: var(--local-primary-dark);
  border-color: #fff;
}

.discussion-notice,
.discussion-layout {
  width: min(100% - 10vw, 1180px);
  margin-inline: auto;
}

.discussion-notice {
  display: grid;
  gap: 6px;
  margin-top: 52px;
  padding: 22px 24px;
  border: 1px solid rgba(185, 123, 0, 0.18);
  border-radius: 8px;
  background: #fff7df;
  box-shadow: 0 16px 38px rgba(17, 39, 22, 0.09);
}

.discussion-notice strong {
  color: #6d4a00;
  font-size: 1.15rem;
}

.discussion-notice span {
  color: #5f5234;
  font-weight: 800;
  line-height: 1.5;
}

.discussion-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding-top: 32px;
}

.discussion-form,
.discussion-board,
.discussion-post-card,
.discussion-admin-card,
.discussion-admin-comments article {
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 39, 22, 0.09);
}

.discussion-form,
.discussion-board {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.discussion-form h2,
.discussion-board h2 {
  margin: 0 0 8px;
  color: var(--local-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.discussion-form p,
.discussion-post-card p,
.discussion-empty {
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.55;
}

.discussion-post-card p a,
.discussion-comment-list p a,
.discussion-admin-card p a {
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.discussion-post-card p a:hover,
.discussion-comment-list p a:hover,
.discussion-admin-card p a:hover {
  color: var(--local-primary);
}

.discussion-form label,
.discussion-comment-form label,
.discussion-admin-topic-control label,
.discussion-board-head label {
  display: grid;
  gap: 7px;
  color: var(--local-muted);
  font-weight: 900;
}

.discussion-form input,
.discussion-form select,
.discussion-form textarea,
.discussion-comment-form input,
.discussion-comment-form textarea,
.discussion-admin-topic-control select,
.discussion-board-head select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(21, 95, 45, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--local-dark);
  font: inherit;
  font-weight: 700;
}

.discussion-form textarea,
.discussion-comment-form textarea {
  resize: vertical;
}

.discussion-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.discussion-check input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.discussion-form button,
.discussion-comment-form button,
.discussion-admin-toolbar button,
.discussion-post-actions button,
.discussion-admin-actions button,
.discussion-admin-comments button,
.discussion-topic-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 0;
  border-radius: 8px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.discussion-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.discussion-form .discussion-submit-button,
.discussion-comment-form .discussion-submit-button {
  width: auto;
  min-width: 190px;
  min-height: 48px;
  padding: 13px 22px;
  font-size: 1.05rem;
  text-align: center;
}

.discussion-board-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.discussion-topic-tabs,
.discussion-admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.discussion-topic-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}

.discussion-topic-tabs button,
.discussion-admin-filters button {
  background: var(--local-light);
  color: var(--local-primary-dark);
}

.discussion-topic-tabs button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.discussion-topic-tabs button.is-active,
.discussion-admin-filters button.is-active {
  background: var(--local-primary);
  color: #fff;
}

.discussion-post-list,
.discussion-admin-list {
  display: grid;
  gap: 14px;
}

.discussion-post-card,
.discussion-admin-card {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.discussion-post-meta,
.discussion-post-actions,
.discussion-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.discussion-post-meta span,
.discussion-post-meta strong,
.discussion-admin-comments span {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(46, 125, 50, 0.12);
  color: var(--local-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.discussion-post-meta small,
.discussion-post-author,
.discussion-admin-card small {
  color: var(--local-muted);
  font-weight: 800;
}

.discussion-post-card h3,
.discussion-admin-card h4 {
  margin: 0;
  color: var(--local-dark);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.discussion-post-actions strong {
  min-width: 38px;
  text-align: center;
  color: var(--local-dark);
  font-size: 1.25rem;
}

.discussion-comments {
  border-top: 1px solid rgba(21, 95, 45, 0.12);
  padding-top: 12px;
}

.discussion-comments summary {
  color: var(--local-primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.discussion-comment-list,
.discussion-comment-form,
.discussion-admin-comments {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.discussion-comment-list article {
  padding: 12px;
  border-radius: 8px;
  background: var(--local-light);
}

.discussion-admin-toolbar {
  display: grid;
  gap: 14px;
}

.discussion-admin-topic-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.discussion-admin-comments {
  padding: 12px;
  border-radius: 8px;
  background: var(--local-light);
}

.discussion-admin-comments article {
  display: grid;
  gap: 8px;
  padding: 12px;
  box-shadow: none;
}

.discussion-admin-quick-review {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}

.discussion-admin-quick-review > h4,
.discussion-admin-subhead {
  margin: 0;
  color: var(--local-primary-light);
  font-size: 1.15rem;
}

.discussion-admin-comment-card {
  border-color: rgba(185, 123, 0, 0.28);
  background: #fffaf0;
}

.executive-profile-card,
.agreement-local .agreement-download-panel,
.agreement-local .agreement-steward-panel,
.agreement-local .agreement-toolbar,
.agreement-local .agreement-card,
.agreement-local .agreement-faq,
.agreement-local .agreement-search-panel,
.agreement-local .private-question-panel,
.health-safety-priority,
.health-safety-card,
.health-safety-resource-list a,
.new-member-term-grid article,
.new-member-benefits-note,
.new-member-process-card,
.toolkit-note,
.toolkit-card,
.toolkit-table-card,
.toolkit-faq-grid article,
.toolkit-hub-section,
.toolkit-topic-card,
.toolkit-download-grid div,
.site-map-card,
.minutes-local-card {
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(17, 39, 22, 0.09);
}

.agreement-local .rights-strip,
.agreement-local .support-panel,
.health-safety-strip,
.health-safety-contact,
.local-contact,
.executive-contact {
  border-radius: 8px;
}

.health-safety-card,
.health-safety-resource-list a,
.agreement-local .agreement-card,
.executive-profile-card,
.toolkit-hub-section,
.toolkit-topic-card,
.new-member-term-grid article,
.site-map-card,
.minutes-local-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.health-safety-card:hover,
.health-safety-resource-list a:hover,
.agreement-local .agreement-card:hover,
.executive-profile-card:hover,
.toolkit-hub-section:hover,
.toolkit-topic-card:hover,
.new-member-term-grid article:hover,
.site-map-card:hover,
.minutes-local-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 95, 45, 0.22);
  box-shadow: 0 22px 48px rgba(17, 39, 22, 0.14);
}

.health-safety-card span,
.health-safety-steps span,
.toolkit-card span,
.toolkit-faq-grid article > span,
.homepage-priority-tags span,
.executive-stewards-list li {
  border-radius: 8px;
}

.toolkit-reference-links a,
.toolkit-link-list a,
.toolkit-faq-grid a,
.site-map-card a,
.site-map-card button,
.section-link,
.new-member-action-button,
.member-update-card button:not(.scholarship-photo-button),
.member-update-card a,
.contact-modal-form button,
.events-admin-form button,
.admin-logout,
.secondary-admin-button,
.discussion-form button,
.discussion-comment-form button,
.discussion-admin-toolbar button,
.discussion-post-actions button,
.discussion-admin-actions button,
.discussion-admin-comments button,
.discussion-topic-tabs button,
.agreement-local .agreement-download-link,
.agreement-local .filter-button,
.agreement-local .agreement-mini-search button,
.agreement-local .private-question-form button,
.agreement-local .support-contact-button,
.health-safety-card a,
.health-safety-card button,
.local-btn {
  border-radius: 8px;
}

.toolkit-reference-links a,
.toolkit-link-list a,
.toolkit-faq-grid a,
.site-map-card a,
.site-map-card button,
.section-link,
.new-member-action-button,
.member-update-card button:not(.scholarship-photo-button),
.member-update-card a,
.contact-modal-form button,
.events-admin-form button,
.admin-logout,
.secondary-admin-button,
.discussion-form button,
.discussion-comment-form button,
.discussion-admin-toolbar button,
.discussion-post-actions button,
.discussion-admin-actions button,
.discussion-admin-comments button,
.discussion-topic-tabs button,
.agreement-local .agreement-download-link,
.agreement-local .filter-button,
.agreement-local .agreement-mini-search button,
.agreement-local .private-question-form button,
.agreement-local .support-contact-button,
.health-safety-card a,
.health-safety-card button {
  box-shadow:
    4px 4px 0 rgba(8, 43, 20, 0.34),
    10px 10px 24px rgba(17, 39, 22, 0.14);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.toolkit-reference-links a:hover,
.toolkit-link-list a:hover,
.toolkit-faq-grid a:hover,
.site-map-card a:hover,
.site-map-card button:hover,
.section-link:hover,
.new-member-action-button:hover,
.member-update-card button:not(.scholarship-photo-button):hover,
.member-update-card a:hover,
.contact-modal-form button:hover,
.events-admin-form button:hover,
.admin-logout:hover,
.secondary-admin-button:hover,
.discussion-form button:hover,
.discussion-comment-form button:hover,
.discussion-admin-toolbar button:hover,
.discussion-post-actions button:hover,
.discussion-admin-actions button:hover,
.discussion-admin-comments button:hover,
.discussion-topic-tabs button:hover,
.agreement-local .agreement-download-link:hover,
.agreement-local .filter-button:hover,
.agreement-local .agreement-mini-search button:hover,
.agreement-local .private-question-form button:hover,
.agreement-local .support-contact-button:hover,
.health-safety-card a:hover,
.health-safety-card button:hover {
  transform: translateY(-3px);
  box-shadow:
    7px 7px 0 rgba(8, 43, 20, 0.3),
    14px 14px 32px rgba(17, 39, 22, 0.18);
}

.toolkit-reference-links a:active,
.toolkit-link-list a:active,
.toolkit-faq-grid a:active,
.site-map-card a:active,
.site-map-card button:active,
.section-link:active,
.new-member-action-button:active,
.member-update-card button:not(.scholarship-photo-button):active,
.member-update-card a:active,
.contact-modal-form button:active,
.events-admin-form button:active,
.admin-logout:active,
.secondary-admin-button:active,
.discussion-form button:active,
.discussion-comment-form button:active,
.discussion-admin-toolbar button:active,
.discussion-post-actions button:active,
.discussion-admin-actions button:active,
.discussion-admin-comments button:active,
.discussion-topic-tabs button:active,
.agreement-local .agreement-download-link:active,
.agreement-local .filter-button:active,
.agreement-local .agreement-mini-search button:active,
.agreement-local .private-question-form button:active,
.agreement-local .support-contact-button:active,
.health-safety-card a:active,
.health-safety-card button:active {
  transform: translateY(2px);
  box-shadow:
    1px 1px 0 rgba(8, 43, 20, 0.34),
    5px 5px 16px rgba(17, 39, 22, 0.12);
}

.discussion-local .discussion-form button,
.discussion-local .discussion-comment-form button,
.discussion-local .discussion-post-actions button,
.discussion-local .discussion-topic-tabs button {
  box-shadow:
    5px 5px 0 rgba(8, 43, 20, 0.38),
    11px 11px 24px rgba(17, 39, 22, 0.16);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.discussion-local .discussion-form button:hover,
.discussion-local .discussion-comment-form button:hover,
.discussion-local .discussion-post-actions button:hover,
.discussion-local .discussion-topic-tabs button:hover {
  transform: translateY(-3px);
  box-shadow:
    8px 8px 0 rgba(8, 43, 20, 0.32),
    15px 15px 32px rgba(17, 39, 22, 0.2);
}

.discussion-local .discussion-form button:active,
.discussion-local .discussion-comment-form button:active,
.discussion-local .discussion-post-actions button:active,
.discussion-local .discussion-topic-tabs button:active {
  transform: translateY(2px);
  box-shadow:
    2px 2px 0 rgba(8, 43, 20, 0.36),
    6px 6px 16px rgba(17, 39, 22, 0.14);
}

.ask-local-root {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  color: var(--local-dark);
  font-family: var(--local-heading-font);
}

.ask-local-launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    5px 5px 0 rgba(8, 43, 20, 0.38),
    12px 12px 28px rgba(17, 39, 22, 0.2);
}

.ask-local-launch span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--local-primary-dark);
  font-weight: 900;
}

.ask-local-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: grid;
  grid-template-rows: auto auto minmax(170px, 1fr) auto;
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 110px));
  border: 1px solid rgba(21, 95, 45, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.ask-local-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--local-primary-dark), var(--local-primary));
  color: #fff;
}

.ask-local-head strong,
.ask-local-head span {
  display: block;
}

.ask-local-head span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.ask-local-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ask-local-warning {
  margin: 0;
  padding: 9px 16px;
  background: #fff7df;
  color: #5f5234;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.ask-local-warning span {
  display: block;
}

.ask-local-warning span + span {
  margin-top: 8px;
}

.ask-local-messages {
  display: grid;
  gap: 9px;
  padding: 12px;
  overflow-y: auto;
  background: #f8fbf7;
}

.ask-local-message {
  max-width: 94%;
  padding: 10px;
  border-radius: 8px;
  line-height: 1.32;
}

.ask-local-message-user {
  justify-self: end;
  background: var(--local-primary);
  color: #fff;
}

.ask-local-message-assistant {
  justify-self: start;
  background: #fff;
  border: 1px solid rgba(21, 95, 45, 0.12);
  box-shadow: 0 10px 24px rgba(17, 39, 22, 0.08);
}

.ask-local-message-intro {
  justify-self: center;
  width: min(100%, 360px);
  max-width: 100%;
  background: #eef7ed;
  border: 1px solid rgba(46, 125, 50, 0.26);
  border-left: 5px solid var(--local-primary);
  box-shadow: none;
}

.ask-local-message-intro h3 {
  color: #1f5f2c;
}

.ask-local-message p,
.ask-local-message ul {
  margin: 0;
}

.ask-local-source-note {
  margin-bottom: 7px !important;
  color: #55705b;
  font-size: 0.78rem;
  font-weight: 900;
}

.ask-local-message p + h3,
.ask-local-message h3 + p,
.ask-local-message h3 + ul {
  margin-top: 4px;
}

.ask-local-message h3 {
  margin: 0;
  color: var(--local-primary-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ask-local-message li {
  margin-top: 3px;
}

.ask-local-message a {
  color: var(--local-primary-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.ask-local-form {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(21, 95, 45, 0.1);
  background: #fff;
}

.ask-local-form label {
  display: grid;
  gap: 6px;
  color: var(--local-muted);
  font-weight: 900;
}

.ask-local-form textarea {
  width: 100%;
  min-height: 74px;
  padding: 10px 11px;
  border: 1px solid rgba(21, 95, 45, 0.18);
  border-radius: 8px;
  color: var(--local-dark);
  font: inherit;
  resize: vertical;
}

.ask-local-form button {
  justify-self: center;
  min-width: 150px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    4px 4px 0 rgba(8, 43, 20, 0.34),
    10px 10px 24px rgba(17, 39, 22, 0.14);
}

.local-live-updates {
  padding: 0;
  background: #222;
}

.live-update-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.live-update-close {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(8, 43, 20, 0.22);
}

.live-update-close:hover,
.live-update-close:focus-visible {
  background: #2e7d32;
  outline: 3px solid #f9a825;
  outline-offset: 3px;
}

.live-update-viewport {
  position: relative;
  min-height: 36px;
  perspective: 1200px;
}

.live-update-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 7px 48px 7px 14px;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.18), rgba(0, 0, 0, 0.38)),
    #2e7d32;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: rotateX(90deg) translateY(26px);
  transform-origin: center bottom;
  box-shadow: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.live-update-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: rotateX(0deg) translateY(0);
}

.live-update-card:focus-visible {
  outline: 4px solid #f9a825;
  outline-offset: 4px;
}

.live-update-card.priority-yellow {
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.22), rgba(0, 0, 0, 0.46)),
    #f9a825;
}

.live-update-card.priority-red {
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.18), rgba(0, 0, 0, 0.42)),
    #b71c1c;
}

.live-update-priority {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 4px;
  background: #fff;
  color: #222;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-update-card h2 {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(0.82rem, 1.9vw, 0.95rem);
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-update-card p {
  display: none;
}

.live-update-link-text {
  flex: 0 0 auto;
  margin-left: 4px;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.live-ticker-admin-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.live-ticker-admin-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.live-ticker-admin-item span,
.live-ticker-admin-item small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.live-ticker-admin-item strong {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .live-update-card {
    transition: none;
    transform: none;
  }
}

@media (max-width: 640px) {
  .ask-local-root {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
  }

  .ask-local-root.is-open {
    inset: 0;
    display: grid;
    place-items: start center;
    padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    background: rgba(16, 21, 19, 0.42);
    overflow-y: auto;
    z-index: 2500;
  }

  .ask-local-launch {
    margin-left: auto;
    min-height: 44px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .ask-local-launch span {
    width: 24px;
    height: 24px;
  }

  .ask-local-root.is-open .ask-local-launch {
    display: none;
  }

  .ask-local-panel {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: min(calc(100vw - 20px - env(safe-area-inset-left) - env(safe-area-inset-right)), 390px);
    max-height: calc(100dvh - 20px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    min-height: 0;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    overflow: hidden;
    border-radius: 18px;
  }

  .ask-local-head {
    padding: 14px 16px;
  }

  .ask-local-head span {
    font-size: 0.78rem;
  }

  .ask-local-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
  }

  .ask-local-warning {
    padding: 9px 12px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .ask-local-messages {
    gap: 8px;
    min-height: 0;
    padding: 10px 12px;
  }

  .ask-local-message {
    max-width: 100%;
    padding: 9px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .ask-local-form {
    gap: 7px;
    padding: 10px 12px 12px;
  }

  .ask-local-form label {
    gap: 4px;
    font-size: 0.82rem;
  }

  .ask-local-form textarea {
    min-height: 54px;
    max-height: 90px;
    padding: 8px 9px;
    font-size: 16px;
    line-height: 1.35;
  }

  .ask-local-form button {
    min-width: 128px;
    min-height: 40px;
    font-size: 16px;
  }

  .local-live-updates {
    padding: 0;
  }

  .live-update-viewport {
    min-height: 38px;
  }

  .live-update-card {
    gap: 8px;
    padding: 8px 42px 8px 10px;
  }

  .live-update-link-text {
    font-size: 0.8rem;
  }
}

.lamont-local .admin-dashboard {
  padding: 72px 5vw;
  background:
    radial-gradient(circle at top left, rgba(102, 187, 106, 0.22), transparent 34%),
    linear-gradient(135deg, #101513, #18231c);
  color: #fff;
}

.lamont-local .admin-dashboard-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lamont-local .admin-dashboard-header {
  align-items: center;
  margin-bottom: 28px;
}

.lamont-local .admin-dashboard-header .eyebrow {
  color: var(--local-primary-light) !important;
}

.lamont-local .admin-dashboard-header h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.lamont-local .admin-dashboard-header p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.lamont-local .admin-dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.lamont-local .admin-section {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.lamont-local .admin-section h3 {
  margin: 0 0 18px;
  color: var(--local-primary-light);
  font-size: 1.5rem;
}

.admin-discussion-moderation details {
  display: grid;
  gap: 16px;
}

.admin-discussion-moderation summary {
  cursor: pointer;
  color: var(--local-primary-light);
  font-size: 1.5rem;
  font-weight: 900;
}

.admin-discussion-moderation summary::marker {
  color: #fff;
}

.admin-discussion-moderation .admin-helper-text,
.admin-discussion-moderation .discussion-admin-toolbar,
.admin-discussion-moderation .discussion-admin-list {
  margin-top: 16px;
}

.lamont-local .events-admin-form label,
.lamont-local .admin-event-editor label {
  color: #fff;
}

.lamont-local .events-admin-form span,
.lamont-local .admin-event-editor span {
  color: rgba(255, 255, 255, 0.82);
}

.lamont-local .events-admin-form input,
.lamont-local .events-admin-form select,
.lamont-local .events-admin-form textarea,
.lamont-local .admin-event-editor input,
.lamont-local .admin-event-editor textarea {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--local-dark);
}

.lamont-local .events-admin-form textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-help {
  margin: 18px 0 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-help summary {
  cursor: pointer;
  color: var(--local-primary-light);
  font-size: 1rem;
  font-weight: 900;
}

.admin-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.admin-help article {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.admin-help h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
}

.admin-help p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.admin-event-note-field {
  grid-column: 1 / -1;
}

.admin-event-note-field textarea {
  width: 100%;
  min-height: 160px;
}

.lamont-local .admin-event-editor,
.lamont-local .minutes-admin-item,
.lamont-local .banner-admin-preview figure {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.lamont-local .admin-event-editor h4 {
  margin: 0;
  color: #fff;
}

.lamont-local .minutes-admin-item strong,
.lamont-local .minutes-admin-item small,
.lamont-local .banner-admin-preview figcaption {
  color: rgba(255, 255, 255, 0.82);
}

.lamont-local .banner-admin-preview figcaption button {
  background: rgba(102, 187, 106, 0.18);
  color: var(--local-primary-light);
}

.lamont-local .middle-banner-caption-editor textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--local-dark);
}

.lamont-local .minutes-admin-item span {
  background: rgba(102, 187, 106, 0.18);
  color: var(--local-primary-light);
}

.lamont-local .events-admin-form button,
.lamont-local .admin-login-form button,
.lamont-local .admin-logout {
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font-weight: 900;
}

.lamont-local .events-admin-form button:hover,
.lamont-local .admin-login-form button:hover,
.lamont-local .admin-logout:hover {
  background: var(--local-primary-dark);
}

.lamont-local .events-admin-form .secondary-admin-button {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lamont-local .banner-admin-actions button,
.lamont-local .banner-admin-actions .secondary-admin-button {
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lamont-local .banner-admin-actions button:hover,
.lamont-local .banner-admin-actions .secondary-admin-button:hover {
  background: var(--local-primary-dark);
}

.lamont-local .site-import-label {
  display: inline-flex;
  align-items: center;
}

.admin-helper-text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.55;
}

.site-transfer-actions {
  align-items: center;
  justify-content: flex-start;
}

.site-import-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  cursor: pointer;
}

.site-import-label input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.treasurer-local .minutes-hero-local {
  min-height: 360px;
}

.treasurer-login {
  padding-top: 44px;
  padding-bottom: 76px;
}

.treasurer-login-card {
  max-width: 520px;
  margin: 0 auto;
  border-radius: 22px;
}

.treasurer-dashboard .admin-dashboard-inner {
  max-width: 1240px;
}

.treasurer-grid {
  display: grid;
  gap: 22px;
}

.treasurer-dashboard .admin-section h3 {
  margin-bottom: 28px;
}

.toolkit-dashboard .admin-dashboard-inner {
  max-width: 1280px;
}

.steward-corner-dashboard {
  display: block;
  padding: 72px 5vw;
  background:
    radial-gradient(circle at top right, rgba(166, 206, 57, 0.14), transparent 28%),
    linear-gradient(180deg, var(--local-light) 0%, #fff 100%);
  color: var(--local-text);
  opacity: 1 !important;
  transform: none !important;
}

.steward-corner-dashboard,
.steward-corner-dashboard .admin-dashboard-inner {
  opacity: 1 !important;
  transform: none !important;
}

.steward-corner-dashboard .admin-dashboard-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.steward-corner-dashboard .admin-dashboard-header {
  align-items: center;
  margin-bottom: 28px;
}

.steward-corner-dashboard .admin-dashboard-header .eyebrow {
  color: var(--local-primary-dark) !important;
}

.steward-corner-dashboard .admin-dashboard-header h2 {
  margin: 0 0 8px;
  color: var(--local-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.steward-corner-dashboard .admin-dashboard-header p:last-child {
  margin: 0;
  color: var(--local-muted);
  font-weight: 700;
}

.toolkit-note,
.toolkit-card,
.toolkit-table-card,
.toolkit-faq-grid article {
  border: 1px solid rgba(21, 95, 45, 0.12);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  color: var(--local-text);
}

.toolkit-note {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: 22px;
}

.toolkit-note strong {
  color: var(--local-primary-dark);
  font-size: 1.12rem;
  line-height: 1.35;
}

.toolkit-note span,
.toolkit-card p,
.toolkit-faq-grid p,
.toolkit-table span {
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.55;
}

.toolkit-grid,
.toolkit-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.toolkit-card,
.toolkit-faq-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
}

.toolkit-card span,
.toolkit-faq-grid article > span {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  color: var(--local-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolkit-card h3,
.toolkit-table-card h3,
.toolkit-faq-grid h3 {
  margin: 0;
  color: var(--local-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.toolkit-card p,
.toolkit-faq-grid p {
  margin: 0;
}

.toolkit-link-list {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.toolkit-link-list a,
.toolkit-faq-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 12px;
  background: var(--local-primary);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.toolkit-link-list a:hover,
.toolkit-faq-grid a:hover {
  background: var(--local-primary-dark);
  color: #fff;
}

.toolkit-table-card {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
}

.toolkit-table-card .eyebrow {
  margin: 0;
  color: var(--local-primary-dark) !important;
}

.toolkit-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.toolkit-table div {
  min-height: 86px;
  padding: 14px;
  border-radius: 14px;
  background: var(--local-light);
}

.toolkit-table strong {
  display: block;
  margin-bottom: 5px;
  color: var(--local-primary-dark);
}

.toolkit-faq-grid {
  margin-top: 22px;
}

.toolkit-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.toolkit-quick-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(21, 95, 45, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--local-primary-dark);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.toolkit-quick-nav a:hover {
  background: var(--local-primary);
  color: #fff;
}

.toolkit-hub-section {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  scroll-margin-top: 110px;
}

.toolkit-section-head {
  max-width: 920px;
}

.toolkit-section-head .eyebrow {
  margin: 0 0 8px;
  color: var(--local-primary-dark) !important;
}

.toolkit-section-head h3 {
  margin: 0 0 10px;
  color: var(--local-dark);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.08;
}

.toolkit-section-head p,
.toolkit-topic-card li,
.toolkit-download-grid span {
  color: var(--local-muted);
  font-weight: 700;
  line-height: 1.55;
}

.toolkit-section-head p {
  margin: 0;
}

.toolkit-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.toolkit-topic-card {
  padding: 18px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 18px;
  background: var(--local-light);
}

.toolkit-topic-card h4 {
  margin: 0 0 12px;
  color: var(--local-primary-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.toolkit-topic-card ul,
.toolkit-topic-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.toolkit-number-list {
  counter-reset: toolkit-step;
}

.toolkit-reference-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.toolkit-reference-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 12px;
  background: var(--local-primary);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.toolkit-reference-links a:hover {
  background: var(--local-primary-dark);
}

.toolkit-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.toolkit-download-grid div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(21, 95, 45, 0.12);
  border-radius: 16px;
  background: var(--local-light);
}

.toolkit-download-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--local-primary-dark);
}

.treasurer-section-wide {
  grid-column: 1 / -1;
}

.secretary-section-wide {
  grid-column: 1 / -1;
}

.secretary-upload-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.secretary-document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.secretary-document-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
}

.secretary-document-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.secretary-document-select input {
  width: 18px;
  height: 18px;
  accent-color: var(--local-primary-light);
}

.secretary-document-select span {
  font-size: 0.88rem;
}

.secretary-document-card .secretary-document-type {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(102, 187, 106, 0.18);
  color: var(--local-primary-light);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secretary-document-card h4 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.secretary-document-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.secretary-document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.secretary-document-actions a,
.secretary-document-actions button {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.secretary-document-actions button {
  background: rgba(255, 255, 255, 0.16);
}

.secretary-report-actions {
  margin-top: 14px;
}

.treasurer-help {
  margin: 18px 0 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.treasurer-help summary {
  cursor: pointer;
  color: var(--local-primary-light);
  font-size: 1rem;
  font-weight: 900;
}

.treasurer-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.treasurer-help article {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.treasurer-help h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
}

.treasurer-help p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.treasurer-form,
.treasurer-ledger-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.treasurer-ledger-form {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: end;
}

.treasurer-form-full {
  grid-column: 1 / -1;
}

.treasurer-notes-field textarea {
  width: 100%;
  min-height: 210px;
}

.treasurer-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.treasurer-form button,
.treasurer-ledger-form button {
  align-self: end;
  min-height: 48px;
}

.treasurer-dashboard .banner-admin-actions {
  justify-content: space-between;
}

.treasurer-record-actions button,
.treasurer-record-actions .secondary-admin-button {
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.treasurer-record-actions button:hover,
.treasurer-record-actions .secondary-admin-button:hover {
  background: var(--local-primary-dark);
}

.lamont-local .admin-dashboard .banner-admin-actions button,
.lamont-local .admin-dashboard .banner-admin-actions .secondary-admin-button,
.lamont-local .admin-dashboard .site-transfer-actions button,
.lamont-local .admin-dashboard .site-transfer-actions .site-import-label {
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.lamont-local .admin-dashboard .banner-admin-actions button:hover,
.lamont-local .admin-dashboard .banner-admin-actions .secondary-admin-button:hover,
.lamont-local .admin-dashboard .site-transfer-actions button:hover,
.lamont-local .admin-dashboard .site-transfer-actions .site-import-label:hover {
  background: var(--local-primary-dark);
}

.lamont-local .admin-dashboard .admin-help,
.lamont-local .admin-dashboard .treasurer-help {
  margin: 18px 0 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lamont-local .admin-dashboard .admin-help-grid,
.lamont-local .admin-dashboard .treasurer-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.lamont-local .admin-dashboard .admin-help article,
.lamont-local .admin-dashboard .treasurer-help article {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.clear-records-confirmation {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.clear-records-confirmation[hidden] {
  display: none;
}

.clear-records-confirmation button {
  min-height: 38px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.clear-records-confirmation button:last-child {
  background: rgba(255, 255, 255, 0.16);
}

.treasurer-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.treasurer-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #fff;
}

.treasurer-table th,
.treasurer-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.treasurer-table th {
  color: var(--local-primary-light);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.treasurer-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
}

.treasurer-sort-button::after {
  content: "";
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0.75;
}

.treasurer-sort-button.is-active[data-direction="asc"]::after {
  content: "asc";
}

.treasurer-sort-button.is-active[data-direction="desc"]::after {
  content: "desc";
}

.treasurer-table td {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.treasurer-table tr:last-child td {
  border-bottom: 0;
}

.treasurer-opening-balance-row td {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

.treasurer-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.treasurer-row-actions button {
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--local-primary);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.treasurer-row-actions button:last-child {
  background: rgba(255, 255, 255, 0.16);
}

.receipt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.receipt-link {
  display: inline-flex;
  color: var(--local-primary-light);
  font-weight: 900;
}

.financial-statement {
  margin-top: 22px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--local-dark);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.statement-title {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.statement-title strong {
  color: var(--local-primary-dark);
  font-family: Barlow, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.statement-title span {
  font-size: 1.15rem;
  font-weight: 900;
}

.statement-title small {
  color: var(--local-text-muted);
  font-weight: 800;
}

.financial-statement table {
  width: 100%;
  border-collapse: collapse;
}

.financial-statement th,
.financial-statement td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(21, 74, 115, 0.12);
  text-align: left;
}

.financial-statement td:nth-child(2),
.financial-statement td:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.statement-section th {
  padding-top: 18px;
  color: var(--local-primary-dark);
  background: rgba(166, 206, 57, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.statement-total td,
.statement-difference td {
  font-weight: 900;
  color: var(--local-dark);
}

.statement-difference td {
  border-bottom: 0;
}

.lamont-local .form-status {
  color: var(--local-primary-light);
}

.lamont-local .empty-state {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.76);
}

.lamont-local .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.lamont-local .reveal.visible,
.lamont-local .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lamont-local .admin-login-section.reveal,
.lamont-local .admin-dashboard:not([hidden]) .admin-dashboard-inner {
  opacity: 1;
  transform: translateY(0);
}

.lamont-local .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.lamont-local .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.executive-page {
  background: #f5f7f2;
}

.executive-hero {
  position: relative;
  min-height: 54vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: end;
  padding: 130px 5vw 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 78% 18%, rgba(102, 187, 106, 0.34), transparent 28%),
    linear-gradient(135deg, #101513 0%, #18351f 54%, #123858 100%);
}

.executive-hero-heading {
  width: min(860px, 100%);
  position: relative;
  z-index: 2;
}

.executive-hero-heading h1 {
  margin: 0 0 14px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.executive-hero-heading p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
}

.executive-intro,
.executive-full-photo,
.executive-profiles,
.executive-contact {
  width: min(1180px, calc(100% - 10vw));
  margin-inline: auto;
}

.executive-full-photo {
  width: min(708px, calc(100% - 10vw));
  margin-top: 52px;
}

.executive-photo-frame {
  position: relative;
  overflow: visible;
  border: 14px solid #fff;
  border-radius: 28px;
  background: #101513;
  box-shadow:
    0 22px 54px rgba(17, 39, 22, 0.16),
    0 0 0 1px rgba(21, 95, 45, 0.12);
}

.executive-building-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.executive-video {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.executive-name-tag {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 142px;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--local-ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.executive-name-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.executive-name-tag strong {
  font-family: "Barlow", sans-serif;
  font-size: 1.45rem;
  line-height: 0.95;
  color: var(--local-primary-dark);
}

.executive-name-tag span {
  font-size: 0.92rem;
  font-weight: 900;
  color: #34453a;
}

.executive-name-tag small {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--local-muted);
}

.executive-name-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 84px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(21, 95, 45, 0.22);
}

.executive-name-tag::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--local-primary-light);
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.tag-left::after {
  left: 100%;
}

.tag-left::before {
  left: calc(100% + 78px);
}

.tag-right::after {
  right: 100%;
}

.tag-right::before {
  right: calc(100% + 78px);
}

.tag-teena {
  left: -26%;
  top: 50%;
}

.tag-john {
  left: -2%;
  top: 68%;
}

.tag-john::after {
  width: 110px;
}

.tag-john::before {
  left: calc(100% + 104px);
}

.tag-joelle {
  right: 14%;
  top: 39%;
}

.tag-barry {
  right: -15%;
  top: 50%;
}

.tag-barry::after {
  width: 64px;
}

.tag-barry::before {
  right: calc(100% + 58px);
}

.tag-ryan {
  left: 8%;
  top: 57%;
}

.tag-ryan::after {
  width: 60px;
}

.tag-ryan::before {
  left: calc(100% + 54px);
}

.tag-absent::before,
.tag-absent::after {
  display: none;
}

.tag-renee {
  right: 2%;
  bottom: 3%;
}

.executive-intro {
  padding: 62px 0 24px;
}

.executive-intro h2 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  color: var(--local-ink);
}

.executive-intro p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--local-muted);
  font-size: 1.08rem;
}

.executive-profiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 28px;
}

.executive-profile-card {
  scroll-margin-top: 120px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid #dce6dc;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 39, 22, 0.1);
}

.executive-profile-card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--local-primary-dark);
}

.executive-profile-card p {
  margin: 0 0 14px;
  color: #36443b;
  line-height: 1.7;
}

.executive-profile-card p:last-child {
  margin-bottom: 0;
}

.executive-profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 38%;
  box-shadow: 0 16px 34px rgba(17, 39, 22, 0.14);
}

.executive-profile-feature {
  grid-column: span 3;
  display: grid;
  gap: 2px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(255, 255, 255, 0.96)),
    #fff;
}

.executive-profile-feature .executive-profile-photo {
  width: min(100%, 320px);
  justify-self: start;
}

.executive-profile-feature h3 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.executive-stewards-card {
  grid-column: span 3;
}

.executive-stewards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.executive-stewards-list li {
  padding: 9px 14px;
  border-radius: 999px;
  background: #edf5ed;
  color: var(--local-primary-dark);
  font-weight: 900;
}

.executive-contact {
  margin-top: 26px;
  margin-bottom: 70px;
}

@keyframes localHeroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .local-hero-line {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .local-photo-track.is-cycling {
    animation: none;
  }
}

@media (max-width: 900px) {
  .local-header {
    align-items: center;
    flex-wrap: wrap;
  }

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

  #local-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-height: calc(100dvh - 118px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    margin-top: 12px;
    padding: 14px;
    gap: 8px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 244, 0.98));
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  }

  .local-header.nav-open #local-nav {
    display: flex;
  }

  #local-nav a,
  .local-nav-button,
  .local-search-button {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 1rem;
    text-align: left;
  }

  #local-nav a:hover,
  #local-nav a[aria-current="page"],
  .local-nav-button:hover,
  .local-search-button:hover {
    background: rgba(46, 125, 50, 0.1);
  }

  #local-nav > a[aria-current="page"]::after {
    left: 12px;
    top: 50%;
    bottom: auto;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid var(--local-primary);
    border-right: 0;
    filter: none;
    transform: translateY(-50%);
  }

  .local-search-button {
    justify-content: flex-start;
    order: 0;
  }

  .local-login-menu {
    width: 100%;
    display: grid;
  }

  .local-login-toggle {
    justify-content: space-between;
  }

  .local-login-dropdown {
    position: static;
    min-width: 0;
    margin-top: 4px;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(21, 74, 115, 0.05);
  }

  .local-login-dropdown a,
  .local-login-dropdown button {
    min-height: 42px;
    padding-left: 18px;
  }

  .local-hero {
    min-height: 58vh;
    padding: 110px 5vw 42px;
    align-items: flex-end;
  }

  .local-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22));
  }

  .local-hero-slide {
    object-position: center top;
  }

  .local-hero-title {
    max-width: 520px;
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .local-hero-copy {
    max-width: 520px;
    font-size: 1.08rem;
  }

  .local-intro,
  .local-two-column,
  .homepage-glance,
  .local-cards,
  .local-focus-list {
    grid-template-columns: 1fr;
  }

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

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

  .scholarship-feature-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-photo-card {
    flex-basis: min(82vw, 520px);
  }

  .local-photo-track.is-cycling .local-photo-card {
    flex-basis: min(82vw, 520px);
  }

  .local-contact {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .lamont-local .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-grid,
  .toolkit-faq-grid,
  .toolkit-topic-grid,
  .toolkit-download-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-table {
    grid-template-columns: 1fr;
  }

  .toolkit-hub-section {
    padding: 20px;
  }

  .treasurer-form,
  .treasurer-ledger-form,
  .treasurer-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .lamont-local .admin-dashboard .admin-help-grid,
  .lamont-local .admin-dashboard .treasurer-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agreement-local .agreement-cards,
  .agreement-local .rights-strip,
  .agreement-local .rights-strip-points,
  .agreement-local .agreement-content-grid,
  .agreement-local .support-panel,
  .agreement-local .agreement-download-panel,
  .agreement-local .agreement-steward-panel {
    grid-template-columns: 1fr;
  }

  .agreement-local .agreement-steward-actions {
    justify-items: start;
  }

  .health-safety-priority,
  .health-safety-strip,
  .health-safety-contact,
  .discussion-layout {
    grid-template-columns: 1fr;
  }

  .health-safety-grid {
    grid-template-columns: 1fr;
  }

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

  .executive-profile-feature {
    grid-column: span 2;
  }

  .executive-stewards-card {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .local-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .local-brand-mark {
    width: 58px;
    height: 58px;
  }

  .local-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  #local-nav {
    max-height: calc(100dvh - 86px);
    margin-top: 8px;
    padding: 10px;
    gap: 6px;
    border-radius: 16px;
  }

  #local-nav a,
  .local-nav-button,
  .local-search-button {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.96rem;
  }

  .local-login-dropdown a,
  .local-login-dropdown button {
    min-height: 38px;
    padding: 8px 10px 8px 16px;
  }

  .local-hero {
    min-height: 48vh;
    padding: 94px 24px 30px;
  }

  .local-hero-overlay {
    max-width: 100%;
  }

  .local-hero-title {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    line-height: 0.95;
  }

  .local-hero-copy {
    font-size: 1rem;
    line-height: 1.35;
  }

  .local-hero-arrow {
    top: auto;
    bottom: 18px;
    width: 34px;
    height: 42px;
    font-size: 1.7rem;
    opacity: 0.68;
  }

  .local-hero-prev {
    left: auto;
    right: 66px;
  }

  .local-hero-next {
    right: 24px;
  }

  .local-section {
    padding: 52px 5vw;
  }

  .homepage-glance {
    padding-top: 30px;
  }

  .homepage-glance-head,
  .homepage-glance-card {
    padding: 20px;
  }

  .homepage-glance-grid,
  .homepage-card-board,
  .homepage-resource-links {
    grid-template-columns: 1fr;
  }

  .local-photo-card {
    flex-basis: 100%;
  }

  .local-photo-feature {
    width: min(360px, calc(100% - 12vw));
  }

  .local-photo-track {
    gap: 0;
    width: 100%;
  }

  .local-photo-track.is-cycling .local-photo-card {
    flex-basis: 100%;
  }

  .local-photo-track.is-cycling {
    width: 100%;
    animation: none;
  }

  .local-photo-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .local-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .local-alert {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-footer {
    min-height: 132px;
    padding: 26px 18px 56px;
    gap: 6px;
  }

  .local-footer strong,
  .local-footer > span {
    max-width: 100%;
    padding: 0 6px;
  }

  .local-footer-map {
    left: 18px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .local-footer-social {
    right: 18px;
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .local-footer-social:hover {
    transform: translateY(-1px);
  }

  .local-event.event-row {
    grid-template-columns: 1fr;
  }

  .minutes-hero-local {
    min-height: 48vh;
    padding-top: 110px;
  }

  .minutes-local-grid {
    grid-template-columns: 1fr;
  }

  .agreement-local .agreement-hero {
    min-height: auto;
    padding-top: 110px;
  }

  .agreement-local .agreement-toolbar,
  .agreement-local .agreement-download-panel,
  .agreement-local .agreement-steward-panel,
  .agreement-local .agreement-section-intro,
  .agreement-local .agreement-cards,
  .agreement-local .rights-strip,
  .agreement-local .agreement-content-grid,
  .agreement-local .support-panel {
    width: min(100% - 10vw, 1180px);
  }

  .health-safety-priority,
  .health-safety-section,
  .health-safety-strip,
  .health-safety-contact {
    width: min(100% - 10vw, 1180px);
  }

  .health-safety-resource-list,
  .health-safety-steps {
    grid-template-columns: 1fr;
  }

  .executive-hero {
    min-height: 48vh;
    padding-top: 110px;
  }

  .executive-hero-heading {
    margin-bottom: 22px;
  }

  .executive-photo-frame {
    border-width: 8px;
    border-radius: 20px;
  }

  .executive-name-tag {
    min-width: 112px;
    padding: 9px 11px;
  }

  .executive-name-tag strong {
    font-size: 1.15rem;
  }

  .executive-name-tag span {
    font-size: 0.78rem;
  }

  .executive-name-tag::after {
    width: 42px;
  }

  .tag-left::before {
    left: calc(100% + 36px);
  }

  .tag-right::before {
    right: calc(100% + 36px);
  }

  .tag-teena {
    left: -22%;
    top: 51%;
  }

  .tag-john {
    left: -6%;
    top: 66%;
  }

  .tag-john::after {
    width: 48px;
  }

  .tag-john::before {
    left: calc(100% + 42px);
  }

  .tag-joelle {
    right: 14%;
    top: 38%;
  }

  .tag-barry {
    right: -10%;
    top: 46%;
  }

  .tag-barry::after {
    width: 30px;
  }

  .tag-barry::before {
    right: calc(100% + 24px);
  }

  .tag-ryan {
    left: 6%;
    top: 56%;
  }

  .tag-ryan::after {
    width: 28px;
  }

  .tag-ryan::before {
    left: calc(100% + 22px);
  }

  .tag-renee {
    right: 2%;
    bottom: 2%;
  }

  .executive-profiles {
    grid-template-columns: 1fr;
  }

  .executive-profile-feature {
    grid-column: span 1;
  }

  .executive-stewards-card {
    grid-column: span 1;
  }

  .lamont-local .admin-dashboard {
    max-width: 100%;
    overflow-x: hidden;
    padding: 38px 12px;
  }

  .lamont-local .admin-dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .lamont-local .admin-dashboard-inner,
  .lamont-local .admin-section,
  .treasurer-help,
  .financial-statement {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .lamont-local .admin-section {
    padding: 16px;
    border-radius: 14px;
  }

  .treasurer-login.local-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .treasurer-login-card {
    width: 100%;
    padding: 22px;
    box-sizing: border-box;
  }

  .treasurer-form,
  .treasurer-ledger-form,
  .treasurer-form-row,
  .secretary-upload-form {
    grid-template-columns: 1fr;
  }

  .treasurer-form label,
  .treasurer-ledger-form label,
  .treasurer-form input,
  .treasurer-form select,
  .treasurer-form textarea,
  .treasurer-ledger-form input,
  .treasurer-ledger-form select {
    min-width: 0;
    max-width: 100%;
  }

  .treasurer-record-actions {
    justify-content: flex-start;
  }

  .treasurer-record-actions button,
  .treasurer-record-actions .secondary-admin-button,
  .lamont-local .admin-dashboard .banner-admin-actions button,
  .lamont-local .admin-dashboard .banner-admin-actions .secondary-admin-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .treasurer-table-wrap {
    max-width: 100%;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .treasurer-table {
    min-width: 620px;
  }

  .treasurer-table th,
  .treasurer-table td {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .receipt-link {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .secretary-document-grid {
    grid-template-columns: 1fr;
  }

  .secretary-document-actions a,
  .secretary-document-actions button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .new-member-card-strip {
    align-items: stretch;
  }

  .new-member-card-strip .local-btn,
  .new-member-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .new-member-bargaining,
  .new-member-rights-list,
  .new-member-term-grid,
  .site-map-grid,
  .discussion-board-head {
    grid-template-columns: 1fr;
  }

  .discussion-board-head {
    display: grid;
    align-items: start;
  }

  .discussion-notice,
  .discussion-layout {
    width: min(100% - 24px, 1180px);
  }

  .discussion-form,
  .discussion-board,
  .discussion-post-card,
  .discussion-admin-card {
    padding: 18px;
  }

  .knowledge-link-list {
    grid-template-columns: 1fr;
  }

  .new-member-bargaining {
    padding: 18px;
  }

  .new-member-process-card {
    margin-top: 0;
  }

  .treasurer-help-grid {
    grid-template-columns: 1fr;
  }

  .admin-help-grid {
    grid-template-columns: 1fr;
  }

  .lamont-local .admin-dashboard .admin-help-grid,
  .lamont-local .admin-dashboard .treasurer-help-grid {
    grid-template-columns: 1fr;
  }

  .financial-statement {
    padding: 18px;
  }
}

@media (prefers-color-scheme: dark) and (max-width: 0px) {
  .lamont-local {
    --local-primary: #6f9f78;
    --local-primary-dark: #dbe8dc;
    --local-primary-light: #b8cfbb;
    --local-secondary: #9fb8d6;
    --local-dark: #f3f7f2;
    --local-text: #eef5ee;
    --local-muted: #cbd6cb;
    --local-light: #172119;
    --local-white: #111812;
    background: #0d130f;
    color: var(--local-text);
  }

  .local-header {
    background: rgba(13, 19, 15, 0.94);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }

  .local-brand-name {
    background: linear-gradient(90deg, #f1f6f1 0%, #c1d4c4 55%, #d9dfc2 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .local-menu-toggle,
  #local-nav,
  .local-login-dropdown,
  .site-search-panel,
  .contact-modal-panel,
  .modal-card,
  .admin-section,
  .treasurer-login-card,
  .executive-profile-card,
  .health-safety-card,
  .health-safety-priority,
  .health-safety-resource-list a,
  .new-member-bargaining,
  .new-member-rights-list article,
  .new-member-rights-list a,
  .new-member-term-grid article,
  .new-member-benefits-note,
  .homepage-glance-head,
  .homepage-glance-card,
  .homepage-resource-links a,
  .homepage-modern-card,
  .discussion-form,
  .discussion-board,
  .discussion-post-card,
  .discussion-admin-card,
  .discussion-admin-comments article,
  .discussion-notice,
  .agreement-local .agreement-download-panel,
  .agreement-local .agreement-toolbar,
  .agreement-local .agreement-card,
  .agreement-local .agreement-faq,
  .agreement-local .agreement-search-panel,
  .agreement-local .private-question-panel,
  .secretary-document-card,
  .support-panel {
    background: #172119;
    border-color: rgba(155, 224, 157, 0.22);
    color: var(--local-text);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  }

  #local-nav {
    background: linear-gradient(180deg, rgba(23, 33, 25, 0.98), rgba(15, 23, 17, 0.98));
  }

  #local-nav a,
  .local-nav-button,
  .local-search-button,
  .local-login-dropdown a,
  .local-login-dropdown button {
    color: var(--local-text);
  }

  #local-nav a:hover,
  #local-nav a[aria-current="page"],
  .local-nav-button:hover,
  .local-search-button:hover,
  .local-login-dropdown a:hover,
  .local-login-dropdown button:hover,
  .local-login-dropdown a[aria-current="page"] {
    background: rgba(111, 159, 120, 0.2);
    color: #f1f6f1;
  }

  .local-menu-toggle {
    background: #1b281d;
  }

  .local-menu-toggle span,
  .local-search-button span,
  .local-search-button span::before {
    border-color: #f1f6f1;
    background: #f1f6f1;
  }

  .local-hero::after,
  .executive-hero::after,
  .health-safety-hero::after,
  .agreement-local .agreement-hero::after,
  .new-member-hero::after {
    background: linear-gradient(180deg, rgba(5, 8, 6, 0.16), rgba(5, 8, 6, 0.78));
  }

  .local-section,
  .local-live-updates,
  .executive-page,
  .health-safety-page,
  .new-member-page,
  .agreement-local .agreement-page,
  .minutes-local,
  .toolkit-dashboard,
  .steward-corner-dashboard {
    background: #0d130f;
    color: var(--local-text);
  }

  .local-card,
  .local-quote-card,
  .local-event,
  .minutes-note,
  .minutes-section,
  .agreement-local .agreement-section-intro,
  .agreement-local .agreement-steward-panel,
  .agreement-local .agreement-cards,
  .agreement-local .agreement-content-grid,
  .health-safety-section,
  .executive-intro,
  .admin-dashboard-inner,
  .treasurer-help,
  .lamont-local .admin-dashboard .admin-help,
  .lamont-local .admin-dashboard .treasurer-help,
  .treasurer-table-wrap,
  .financial-statement {
    background: #121a14;
    border-color: rgba(155, 224, 157, 0.2);
    color: var(--local-text);
  }

  .local-card h3,
  .local-quote-card h3,
  .executive-profile-card h3,
  .executive-intro h2,
  .health-safety-card h3,
  .health-safety-priority h2,
  .homepage-glance-head h2,
  .homepage-glance-card h3,
  .homepage-board-head h2,
  .homepage-modern-card h3,
  .discussion-form h2,
  .discussion-board h2,
  .discussion-post-card h3,
  .discussion-admin-card h4,
  .discussion-notice strong,
  .new-member-bargaining-copy h2,
  .new-member-rights-list strong,
  .new-member-term-grid strong,
  .agreement-local .agreement-card h2,
  .agreement-local .agreement-faq h2,
  .agreement-local .agreement-search-panel h2,
  .agreement-local .private-question-panel h2,
  .agreement-local .support-panel h2,
  .admin-section h3,
  .treasurer-dashboard .admin-section h3,
  .treasurer-help h3,
  .secretary-document-card h4 {
    color: #eef5ee;
  }

  .local-card p,
  .local-focus-list div,
  .executive-profile-card p,
  .executive-intro p,
  .health-safety-card p,
  .health-safety-priority p,
  .health-safety-resource-list span,
  .homepage-glance-head p:last-child,
  .homepage-glance-card p,
  .homepage-modern-card p,
  .homepage-modern-card li,
  .discussion-form p,
  .discussion-post-card p,
  .discussion-empty,
  .discussion-notice span,
  .new-member-bargaining-copy p,
  .new-member-steps,
  .new-member-rights-list span,
  .new-member-term-grid span,
  .new-member-benefits-note span,
  .agreement-local .agreement-card p,
  .agreement-local .agreement-card li,
  .agreement-local .agreement-search-panel p,
  .agreement-local .private-question-copy,
  .agreement-local .faq-answer p,
  .contact-modal-panel p,
  .admin-dashboard-header p,
  .admin-section p,
  .treasurer-help p,
  .secretary-document-card p {
    color: #c8d4c8;
  }

  input,
  select,
  textarea,
  .agreement-local .agreement-search input,
  .agreement-local .agreement-mini-search input,
  .agreement-local .private-question-form input,
  .agreement-local .private-question-form select,
  .agreement-local .private-question-form textarea,
  .contact-modal-form input,
  .contact-modal-form select,
  .contact-modal-form textarea {
    background: #0f1711;
    border-color: rgba(155, 224, 157, 0.28);
    color: var(--local-text);
  }

  input::placeholder,
  textarea::placeholder {
    color: #8fa08f;
  }

  select option {
    background: #0f1711;
    color: var(--local-text);
  }

  .contact-modal-shell {
    background:
      radial-gradient(circle at 18% 18%, rgba(111, 159, 120, 0.18), transparent 28%),
      radial-gradient(circle at 88% 12%, rgba(159, 184, 214, 0.12), transparent 26%),
      linear-gradient(135deg, #111a13 0%, #172419 55%, #142031 100%);
  }

  .contact-modal-close,
  .modal-close,
  .site-search-close {
    background: #243025;
    color: #f1f6f1;
  }

  .treasurer-table {
    background: #121a14;
    color: var(--local-text);
  }

  .treasurer-table th {
    background: #1e2d21;
    color: #f1f6f1;
  }

  .treasurer-table td {
    border-color: rgba(155, 224, 157, 0.16);
  }

  .treasurer-opening-balance-row td {
    background: rgba(111, 159, 120, 0.18);
  }

  .local-footer,
  .health-safety-contact,
  .local-contact,
  .executive-contact,
  .agreement-local .support-panel {
    background: linear-gradient(135deg, #163b1e, #0f2b16);
    color: #fff;
  }

  .local-footer a,
  .local-footer strong,
  .local-footer span,
  .health-safety-contact h2,
  .health-safety-contact p,
  .local-contact h2,
  .local-contact p,
  .agreement-local .support-panel h2,
  .agreement-local .support-panel p,
  .agreement-local .support-panel a,
  .agreement-local .support-panel span {
    color: #fff;
  }

  .new-member-process-card {
    background: #121a14;
    border-color: rgba(155, 224, 157, 0.22);
  }

}
