:root {
  --parkland-green: #155f1e;
  --parkland-green-dark: #0d4514;
  --parkland-green-soft: #ecf7ef;
  --parkland-gold: #f9ab1d;
  --parkland-gold-soft: #fff3cc;
  --ink: #18212f;
  --muted: #5f6977;
  --line: #dfe4ea;
  --panel: #ffffff;
  --danger: #b42318;
  --success: #1a7f37;
  --warning: #a15c00;
  --shadow: 0 16px 40px rgba(21, 95, 30, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #f5f7f9;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--parkland-gold);
  padding: 0.75rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.site-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  color: #fff;
  background: var(--parkland-green);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 260px;
}
.brand img {
  width: 78px;
  height: 62px;
  object-fit: contain;
  border-radius: 0;
}
.brand strong {
  display: block;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
}
.brand span {
  display: block;
  color: rgba(255,255,255,0.78);
  margin-top: 0.18rem;
}
.nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav button, .nav a {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.nav button[aria-current="page"] {
  border-bottom-color: var(--parkland-gold);
}
.nav button:hover, .nav button:focus-visible, .nav a:hover, .nav a:focus-visible {
  background: rgba(255,255,255,0.08);
  }
.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(58, 139, 56, 0.42), transparent 32%), linear-gradient(145deg, #0c4214, #176222 54%, #0e4716);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 44px 44px;
  opacity: 0.25;
}
.hero-inner { position: relative; padding: 4rem 1.5rem; }
.hero-logo {
  width: min(190px, 40vw);
  height: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.26));
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.hero p {
  margin: 1.2rem 0 0;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  color: rgba(255,255,255,0.76);
}
.action-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.84rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  background: var(--parkland-green);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 8px 16px rgba(21, 95, 30, 0.20);
}
.btn:hover, .btn:focus-visible { filter: brightness(1.06); outline: 3px solid rgba(249, 171, 29, 0.42); }
.btn.secondary { background: #fff; color: var(--parkland-green); }
.btn.gold { background: var(--parkland-gold); color: #111; }
.btn.ghost { background: transparent; color: var(--parkland-green); border: 1px solid var(--line); box-shadow: none; }
.btn.danger { background: var(--danger); }
.notice-band {
  display: grid;
  gap: 0;
  text-align: center;
}
.notice-band .urgent {
  background: var(--parkland-gold);
  color: #111;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem;
}
.notice-band .info {
  background: #fff7c6;
  border-top: 1px solid #efd77c;
  border-bottom: 1px solid #efd77c;
  padding: 1rem 4vw;
  color: #27313f;
}
.container {
  width: min(1220px, 94vw);
  margin: 0 auto;
}
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  padding: 3.8rem 0;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}
.home-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.home-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.home-card .icon {
  font-size: 2.35rem;
  margin-bottom: 1rem;
}
.home-card h2 { margin: 0; font-size: 1.35rem; }
.home-card p { color: var(--muted); margin: 0.65rem 0 0; line-height: 1.45; }
.page {
  display: none;
  padding: 2.5rem 0 4rem;
}
.page.active { display: block; }
.page-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.page-header h1 { margin: 0 0 0.35rem; font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { margin: 0; color: var(--muted); max-width: 68ch; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.panel { padding: 1.5rem; }
.panel h2, .panel h3 { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.78rem;
  border: 1px solid #cfd6df;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 104px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(249, 171, 29, 0.35);
  border-color: var(--parkland-green);
}
.help { color: var(--muted); font-size: 0.92rem; }
.required:after { content: " *"; color: var(--danger); }
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 800px; }
th, td { padding: 0.9rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f2f6f3; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.045em; }
tr:hover td { background: #fbfcfb; }
.toolbar { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: end; margin-bottom: 1rem; }
.toolbar .field { min-width: 210px; }
.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 900;
  background: #eef2ff;
  color: #3730a3;
}
.status.active, .status.approved { background: #dcfce7; color: #166534; }
.status.pending { background: #fef3c7; color: #92400e; }
.status.rejected, .status.revoked { background: #fee2e2; color: #991b1b; }
.status.expired { background: #e5e7eb; color: #374151; }
.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.metric { padding: 1.2rem; }
.metric strong { display: block; font-size: 2rem; }
.metric span { color: var(--muted); font-weight: 700; }
.auth-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer {
  background: #0d3012;
  color: rgba(255,255,255,0.82);
  padding: 2rem 3vw;
  font-size: 0.92rem;
}
.footer strong { color: #fff; }
.toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: min(480px, 88vw);
  padding: 1rem;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}
.toast.visible { display: block; }
@media (max-width: 960px) {
  .topbar { height: auto; align-items: flex-start; flex-direction: column; padding-top: 0.8rem; padding-bottom: 0.6rem; }
  .brand { min-width: 0; }
  .nav { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .home-grid, .grid-3, .admin-summary { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .home-grid, .grid-3, .admin-summary, .form-grid { grid-template-columns: 1fr; }
  .page-header { display: block; }
  .hero { min-height: 430px; }
}
@media print {
  .topbar, .notice-band, .toolbar, .footer, .btn, .toast { display: none !important; }
  .page { display: block !important; padding: 0; }
  body { background: #fff; }
  .card { box-shadow: none; }
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-title-row h2 { margin: 0 0 0.25rem; }
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  background: var(--parkland-gold-soft);
  color: #4b3200;
  border: 1px solid #f0cf73;
  font-weight: 900;
  font-size: 0.82rem;
}
.report-panel { margin-top: 1.25rem; }
.reports-toolbar {
  align-items: end;
  padding: 1rem;
  border-radius: 16px;
  background: #f8faf8;
  border: 1px solid var(--line);
}
.reports-toolbar .field { min-width: 170px; }
.export-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0.9rem 0 1rem;
}
.report-help,
.report-access {
  display: block;
  width: 100%;
  max-width: 100%;
  border-left: 5px solid var(--parkland-gold);
  background: #fffaf0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: #3b4250;
  margin-bottom: 1rem;
  line-height: 1.55;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.report-access {
  border-left-color: var(--parkland-green);
  background: var(--parkland-green-soft);
  color: #064512;
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 800;
}
.report-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.report-preview-header strong { display: block; font-size: 1.05rem; }
.report-preview table { min-width: 960px; table-layout: fixed; }
.report-preview th,
.report-preview td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.report-preview th:nth-child(1), .report-preview td:nth-child(1) { width: 16%; }
.report-preview th:nth-child(2), .report-preview td:nth-child(2) { width: 18%; }
.report-preview th:nth-child(3), .report-preview td:nth-child(3) { width: 20%; }
.report-preview th:nth-child(4), .report-preview td:nth-child(4) { width: 24%; }
@media (max-width: 620px) {
  .section-title-row { display: block; }
  .badge { margin-top: 0.5rem; }
  .reports-toolbar .field { min-width: 100%; }
  .export-row .btn { width: 100%; }
  .report-preview table { min-width: 720px; }
}

.notice.success { border-color: #b7dec0; background: #edf8ef; color: #0d4f1a; }
input[readonly] { background: #f3f7f4; color: #4b5563; }

.staff-only-link {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
  font-weight: 700;
  min-width: 7rem;
}

.staff-only-link:hover,
.staff-only-link:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

/* HOME_COMPACT_V158 */
#page-home .hero,
.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#page-home .hero h1,
.hero h1 {
  margin-bottom: 0.6rem;
}

#page-home .hero-actions,
.hero-actions {
  margin-top: 1.2rem;
}

#page-home .home-cards,
.home-cards,
#page-home .card-grid,
.card-grid {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

#page-home .card,
#page-home .feature-card {
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer p {
  margin-top: 0.2rem;
  margin-bottom: 0;
  line-height: 1.35;
}

.footer-requirements {
  max-width: 1100px;
  font-size: 0.9rem;
  opacity: 0.92;
}

/* HOME_FIT_NO_SCROLL_V159 */
#page-home {
  min-height: auto;
}

#page-home .hero,
.hero {
  padding-top: 1.85rem;
  padding-bottom: 2.15rem;
}

#page-home .hero img,
.hero img,
#page-home .hero-logo,
.hero-logo {
  max-height: 92px;
  margin-bottom: 1rem;
}

#page-home .hero h1,
.hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1.02;
  margin-top: 0;
  margin-bottom: 0.45rem;
}

#page-home .hero p,
.hero p {
  margin-top: 0.25rem;
  margin-bottom: 0.55rem;
}

#page-home .hero-actions,
.hero-actions {
  margin-top: 0.9rem;
}

#page-home .notice,
#page-home .banner,
#page-home .alert,
.home-notice {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

#page-home .home-cards,
.home-cards,
#page-home .card-grid,
.card-grid {
  margin-top: 1rem;
  margin-bottom: 1rem;
  gap: 1rem;
}

#page-home .card,
#page-home .feature-card {
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 0;
}

#page-home .card h2,
#page-home .card h3,
#page-home .feature-card h2,
#page-home .feature-card h3 {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

#page-home .card p,
#page-home .feature-card p {
  margin-top: 0.25rem;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.footer {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.footer strong {
  display: none;
}

.footer p,
.footer-requirements {
  margin: 0;
  max-width: none;
  font-size: 0.86rem;
  line-height: 1.25;
}










/* PHASE0_AUTH_VISIBILITY_FIX */
.hidden,
[hidden] {
  display: none !important;
}

body:not(.lobbyist-authenticated) #lobbyist-sign-out,
body:not(.lobbyist-authenticated) #sign-out,
body:not(.lobbyist-authenticated) [data-auth-action="sign-out"] {
  display: none !important;
}

/* HERO_LOGO_INTERIOR_SCALE_V177
   Keep the hero logo white box stable, but scale the Parkland mark larger inside it. */
.home-hero-logo-fixed,
.hero-logo {
  width: 230px;
  height: 118px;
  padding: 8px 14px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.home-hero-logo-fixed img,
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero .home-hero-logo-fixed,
.hero .hero-logo {
  max-width: 230px;
  max-height: 118px;
}


/* HERO_LOGO_CARD_SCALE_V177
   Scale only the center hero logo/card. Do not affect the navbar/header logo. */
.hero .home-hero-logo-fixed,
.hero .hero-logo,
#page-home .home-hero-logo-fixed,
#page-home .hero-logo {
  width: 230px;
  height: 118px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
}

.hero .home-hero-logo-fixed img,
.hero .hero-logo img,
#page-home .home-hero-logo-fixed img,
#page-home .hero-logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Direct image fallback for current deployed structure. */
.hero img[src*="parkland-logo-hero"],
#page-home img[src*="parkland-logo-hero"] {
  width: 200px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}



/* HERO_LOGO_FINAL_FORCE_V178
   Force only the center homepage hero logo image larger inside its existing white card.
   Do not affect the navbar/header logo. */
#page-home .hero img[src*="parkland-logo-hero"],
#page-home img.home-hero-logo-fixed,
#page-home img.hero-logo,
.hero img[src*="parkland-logo-hero"],
img[src*="parkland-logo-hero"] {
  width: 200px !important;
  height: auto !important;
  max-width: 200px !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

#page-home .hero .home-hero-logo-fixed,
#page-home .hero .hero-logo,
.hero .home-hero-logo-fixed,
.hero .hero-logo {
  width: 230px !important;
  height: 118px !important;
  padding: 16px 24px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
}


/* PARKLAND_MARKETING_PALETTE_V179
   City of Parkland marketing palette alignment. */
:root {
  --parkland-green: #154734;
  --parkland-gold: #CFB023;
  --parkland-brown: #744F28;
  --parkland-tan: #C39367;
  --parkland-blue: #1A658F;
  --parkland-teal: #58A291;
  --parkland-light-green: #6A9033;
  --parkland-muted-green: #637154;
  --parkland-coral: #C66E4E;
  --parkland-gray: #6C6463;

  --brand-primary: #154734;
  --brand-accent: #CFB023;
  --brand-secondary: #6A9033;
  --brand-info: #1A658F;
  --brand-warning: #C39367;
  --brand-danger: #C66E4E;
  --brand-muted: #6C6463;
}

/* Header / navigation */
.site-header,
header,
.navbar,
.topbar {
  background: var(--parkland-green) !important;
}

.nav a.active,
.nav-link.active,
.navbar a.active,
header a.active {
  border-color: var(--parkland-gold) !important;
  color: #fff !important;
}

/* Main hero and green sections */
.hero,
.home-hero,
.green-hero,
[class*="hero"] {
  background-color: var(--parkland-green);
}

/* Primary buttons */
.btn.primary,
button.primary,
.btn.green,
button.green,
#admin-protected .btn:not(.ghost):not(.danger),
#admin-access-required .btn:not(.ghost):not(.danger) {
  background: var(--parkland-green) !important;
  border-color: var(--parkland-green) !important;
  color: #fff !important;
}

.btn.primary:hover,
button.primary:hover,
.btn.green:hover,
button.green:hover {
  background: #0f3728 !important;
  border-color: #0f3728 !important;
}

/* Gold call-to-action buttons and active underline */
.btn.accent,
.btn.gold,
.hero .btn:first-of-type,
.home-hero .btn:first-of-type,
button.accent {
  background: var(--parkland-gold) !important;
  border-color: var(--parkland-gold) !important;
  color: #111827 !important;
}

.nav a[aria-current="page"],
.nav .active,
.navbar .active {
  border-bottom-color: var(--parkland-gold) !important;
}

/* Ghost / secondary buttons */
.btn.ghost,
button.ghost {
  color: var(--parkland-green) !important;
  border-color: rgba(21, 71, 52, 0.22) !important;
  background: #fff !important;
}

.btn.ghost:hover,
button.ghost:hover {
  background: rgba(21, 71, 52, 0.06) !important;
  border-color: rgba(21, 71, 52, 0.38) !important;
}

/* Danger / purge controls */
.btn.danger,
button.danger,
.notice.danger .btn {
  background: var(--parkland-coral) !important;
  border-color: var(--parkland-coral) !important;
  color: #fff !important;
}

/* Notices */
.notice,
.callout {
  border-left-color: var(--parkland-green) !important;
}

.notice.success,
.callout.success {
  background: rgba(106, 144, 51, 0.12) !important;
  border-left-color: var(--parkland-light-green) !important;
}

.notice.warning,
.callout.warning {
  background: rgba(207, 176, 35, 0.14) !important;
  border-left-color: var(--parkland-gold) !important;
}

.notice.danger,
.callout.danger {
  background: rgba(198, 110, 78, 0.12) !important;
  border-left-color: var(--parkland-coral) !important;
}

/* Tables */
thead,
.table thead,
table thead {
  background: rgba(21, 71, 52, 0.06) !important;
}

th {
  color: #111827 !important;
}

/* Footer */
footer,
.site-footer,
.page-footer {
  background: #0f3728 !important;
  color: #fff !important;
}

/* Links */
a {
  color: var(--parkland-green);
}

a:hover {
  color: var(--parkland-blue);
}


/* HERO_BACKGROUND_BRAND_GREEN_V180
   Make the full home hero use the official Parkland green so the inner hero area does not appear as a dark rectangle. */
#page-home .hero,
#page-home .home-hero,
#page-home [class*="hero"],
.hero,
.home-hero {
  background-color: #154734 !important;
  background-image: none !important;
}

/* Preserve the white logo card in the hero. */
#page-home img[src*="parkland-logo-hero"],
.hero img[src*="parkland-logo-hero"] {
  background: #fff !important;
}


/* REGISTRATION_PROFILE_POPUP_V182 */
.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--parkland-green, #154734);
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.link-button:hover,
.link-button:focus {
  color: var(--parkland-blue, #1A658F);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.42);
}

.modal-card {
  width: min(920px, 96vw);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  padding: 1.4rem;
}

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

.modal-card th {
  width: 220px;
  text-align: left;
  vertical-align: top;
}


/* ADA_PUBLIC_P0P1_V190 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20000;
  transform: translateY(-160%);
  background: #ffffff;
  color: #154734;
  border: 3px solid #CFB023;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #CFB023 !important;
  outline-offset: 3px !important;
}

.nav a[aria-current="page"],
.nav button[aria-current="page"] {
  border-bottom-color: var(--parkland-gold) !important;
  font-weight: 900 !important;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.35rem;
}

.nav a:hover,
.nav a:focus-visible,
.nav button:hover,
.nav button:focus-visible {
  background: rgba(255,255,255,0.10);
}

input::placeholder,
textarea::placeholder {
  color: #4b5563;
  opacity: 1;
}

.help {
  color: #4b5563;
}

.status.approved,
.status.active {
  background: #0f5f2e !important;
  color: #ffffff !important;
}

.status.pending {
  background: #fff7d6 !important;
  color: #3f3100 !important;
}

.status.rejected,
.status.revoked,
.status.expired {
  background: #fee2e2 !important;
  color: #7f1d1d !important;
}

#main-content:focus {
  outline: none;
}


/* ADA_FORMS_V191 */
.form-fieldset {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  margin: 1rem 0;
}

.form-fieldset legend {
  font-weight: 800;
  color: var(--parkland-green, #154734);
  padding: 0 0.35rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox-field input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
}

[aria-invalid="true"] {
  border-color: #b91c1c !important;
  outline: 3px solid rgba(185, 28, 28, 0.26) !important;
}

.required::after {
  content: " *";
  color: #b91c1c;
  font-weight: 800;
}


/* LAYOUT_FIXES_V192 */
.home-grid .home-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-grid .home-card .btn,
.home-grid .home-card button {
  margin-top: auto;
}

.home-grid .home-card h2 + p,
.home-grid .home-card h2 + .help {
  min-height: 3.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#status-check-form.status-toolbar,
.status-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(240px, 0.9fr) auto minmax(220px, 1fr);
  align-items: end;
  gap: 0.9rem;
}

#status-check-form .field {
  min-width: 0;
}

#status-check-form .help {
  grid-column: 1 / 2;
  margin-top: 0.25rem;
}

#status-results {
  align-self: center;
  min-width: 16rem;
}

@media (max-width: 900px) {
  #status-check-form.status-toolbar,
  .status-toolbar {
    grid-template-columns: 1fr;
  }

  #status-check-form .help,
  #status-results {
    grid-column: auto;
  }
}



/* ADA_FINAL_V193 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20000;
  transform: translateY(-160%);
  background: #ffffff;
  color: #154734;
  border: 3px solid #F9A825;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #F9A825 !important;
  outline-offset: 2px !important;
  border-radius: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

nav a[aria-current="page"],
.nav a[aria-current="page"] {
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 0.35rem !important;
}

.form-error-summary {
  border: 2px solid #b91c1c;
  background: #fef2f2;
  color: #7f1d1d;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.form-error-summary.hidden {
  display: none;
}

.field-error {
  display: block;
  margin-top: 0.25rem;
  color: #b91c1c;
  font-size: 0.92rem;
  font-weight: 700;
}

[aria-invalid="true"] {
  border-color: #b91c1c !important;
  outline: 3px solid rgba(185, 28, 28, 0.26) !important;
}

.help,
small,
.text-gray-500 {
  color: #4B5563 !important;
}

input::placeholder,
textarea::placeholder {
  color: #4B5563;
  opacity: 1;
}

.status.approved,
.status.active,
.badge-approved {
  background: #15803D !important;
  color: #ffffff !important;
}

.notice,
.info-banner,
.banner {
  color: #3f3100;
}

.card-icon,
.card-icon span {
  line-height: 1;
}


/* ADA_REST_V195 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20000;
  transform: translateY(-160%);
  background: #ffffff;
  color: #154734;
  border: 3px solid #F9A825;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #F9A825 !important;
  outline-offset: 2px !important;
  border-radius: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

nav a.nav-link,
.nav a.nav-link,
.nav a[data-route] {
  color: inherit;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

nav a[aria-current="page"],
.nav a[aria-current="page"] {
  font-weight: 900 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 0.35rem !important;
}

.form-error-summary {
  border: 2px solid #b91c1c;
  background: #fef2f2;
  color: #7f1d1d;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.form-error-summary.hidden {
  display: none;
}

.field-error {
  display: block;
  margin-top: 0.25rem;
  color: #b91c1c;
  font-size: 0.92rem;
  font-weight: 700;
}

[aria-invalid="true"] {
  border-color: #b91c1c !important;
  outline: 3px solid rgba(185, 28, 28, 0.26) !important;
}

.help,
small,
.text-gray-500 {
  color: #4B5563 !important;
}

input::placeholder,
textarea::placeholder {
  color: #4B5563;
  opacity: 1;
}

.status.approved,
.status.active,
.badge-approved {
  background: #15803D !important;
  color: #ffffff !important;
}

/* ADA_NAV_SKIP_V195 */
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20000;
  transform: translateY(-160%);
  background: #ffffff;
  color: #154734;
  border: 3px solid #F9A825;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

.nav a,
nav a.nav-link {
  color: inherit;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.nav a[aria-current="page"],
nav a.nav-link[aria-current="page"] {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.35rem;
}

.nav a:focus-visible,
nav a.nav-link:focus-visible {
  outline: 3px solid #F9A825;
  outline-offset: 2px;
}

#main-content:focus {
  outline: none;
}


/* WAVE_ROUTE_ANCHORS_V200 */
.route-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}


/* WAVE_HOME_CONTRAST_V201 */
.hero,
.hero h1,
.hero h2,
.hero p,
.hero .subtitle,
.hero .lead {
  color: #ffffff;
}

.hero .subtitle,
.hero .lead,
.hero p {
  font-weight: 600;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.55);
}

.hero .btn,
.hero a.btn,
.hero button.btn {
  font-weight: 800;
}

.hero .btn.primary,
.hero a.btn.primary,
.hero button.btn.primary,
.hero .btn-warning,
.hero .gold-button,
.hero .cta-primary {
  background: #CFB023;
  color: #111827;
}

.hero .btn.ghost,
.hero a.btn.ghost,
.hero button.btn.ghost,
.hero .cta-secondary {
  background: #ffffff;
  color: #154734;
  border: 2px solid #ffffff;
}

.hero .btn.primary:hover,
.hero a.btn.primary:hover,
.hero button.btn.primary:hover,
.hero .btn-warning:hover,
.hero .gold-button:hover,
.hero .cta-primary:hover {
  background: #B89A1F;
  color: #111827;
}

.hero .btn.ghost:hover,
.hero a.btn.ghost:hover,
.hero button.btn.ghost:hover,
.hero .cta-secondary:hover {
  background: #f8fafc;
  color: #154734;
}


/* REGISTER_LAYOUT_RESTORE_V202 */
#page-register .grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: 1.5rem;
}

#page-register .grid-2 > aside.card.panel {
  position: sticky;
  top: 1rem;
}

@media (max-width: 760px) {
  #page-register .grid-2 {
    grid-template-columns: 1fr;
  }

  #page-register .grid-2 > aside.card.panel {
    position: static;
  }
}



/* REGISTER_WIDE_LAYOUT_V204 */
@media (min-width: 1100px) {
  #page-register > .container {
    max-width: 1320px !important;
  }

  #page-register .container > .grid-2 {
    display: grid !important;
    grid-template-columns: minmax(0, 760px) minmax(320px, 400px) !important;
    justify-content: center !important;
    align-items: start !important;
    gap: 1.75rem !important;
  }

  #page-register .container > .grid-2 > #registration-form {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  #page-register .container > .grid-2 > aside.card.panel {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    position: static !important;
  }
}

@media (max-width: 1099px) {
  #page-register .container > .grid-2 {
    grid-template-columns: 1fr !important;
  }

  #page-register .container > .grid-2 > #registration-form,
  #page-register .container > .grid-2 > aside.card.panel {
    grid-column: auto !important;
  }
}

