/*
  BRUMDATA design system
  Brand colours: lime #AFD132, charcoal #2B2B2B, near-black #171717,
  soft white #EAEAEA, plus pure black/white where required.
  Lime is a controlled accent for CTAs, highlights and active states;
  text placed on lime is always dark (near-black), never white.
*/

:root {
  --lime: #AFD132;
  --charcoal: #2B2B2B;
  --near-black: #171717;
  --soft-white: #EAEAEA;
  --white: #FFFFFF;
  --black: #000000;

  /* A single darker-lime token for text/icons on light surfaces, where
     full-strength lime (#AFD132) fails 4.5:1. Meets 4.5:1 against both
     #FFFFFF and #EAEAEA. Every previous hardcoded dark-lime hex value
     (#6f8a1a) now shares this one token instead. */
  --dark-lime: #596F0D;

  --surface-light: var(--white);
  --surface-light-alt: var(--soft-white);
  --surface-dark: var(--near-black);
  --surface-dark-alt: var(--charcoal);

  --text-on-light: var(--near-black);
  --text-on-light-muted: #4a4a4a;
  --text-on-dark: var(--soft-white);
  --text-on-dark-muted: #b8b8b8;
  --text-on-lime: var(--near-black);

  --border-light: #dcdcdc;
  --border-dark: #3a3a3a;

  --focus-ring: 3px solid var(--lime);

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container-width: 1180px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
  }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--surface-light);
}

img { max-width: 100%; display: block; }
svg { display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: inherit;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 var(--space-2); }

/* Default: every inline content link (FAQ answers, About/Team prose links,
   contact details, Privacy/Terms references, etc.) gets a visible
   underline so it reads as clickable text. Nav, buttons, tags, card-as-link
   components, social icons and footer link groups all have their own
   affordance instead and opt back out to no-underline immediately below. */
a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover {
  text-decoration-thickness: 2px;
}

.main-nav a,
.mobile-nav a,
.footer-grid a,
.footer-social a,
.footer-bottom a,
.socials a,
.btn,
.tag,
.project-card,
.brand-logo,
.skip-link {
  text-decoration: none;
}

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

button { font-family: inherit; }

/* Accessible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--lime);
  color: var(--text-on-lime);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-5) 0;
}
.section--tight { padding: var(--space-4) 0; }

.surface-light { background: var(--surface-light); color: var(--text-on-light); }
.surface-light-alt { background: var(--surface-light-alt); color: var(--text-on-light); }
.surface-dark { background: var(--surface-dark); color: var(--text-on-dark); }
.surface-dark-alt { background: var(--surface-dark-alt); color: var(--text-on-dark); }

.surface-dark a, .surface-dark-alt a { color: var(--text-on-dark); }

/* Fix: a primary link-button (an <a class="btn btn-primary">) sitting on a
   dark surface was inheriting the rule above via higher specificity
   (.surface-dark a is class+element; .btn-primary is class-only), which
   silently overrode its dark text with the surface's light text colour -
   putting near-white text on a lime background. This selector is
   unambiguously more specific (two classes) than the rule above (one
   class + one element), so it always wins regardless of source order. */
.surface-dark .btn-primary,
.surface-dark-alt .btn-primary {
  color: var(--text-on-lime);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--space-1);
}
.surface-light .eyebrow,
.surface-light-alt .eyebrow {
  color: var(--dark-lime); /* darker lime shade for AA contrast on light surfaces */
}

.section-head {
  max-width: 42rem;
  margin-bottom: var(--space-4);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-muted { color: var(--text-on-light-muted); }
.surface-dark .text-muted, .surface-dark-alt .text-muted { color: var(--text-on-dark-muted); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--lime);
  color: var(--text-on-lime);
  border-color: var(--lime);
}
.btn-primary:hover { background: #9dbb2b; border-color: #9dbb2b; }

.btn-outline-dark {
  background: transparent;
  color: var(--near-black);
  border-color: var(--near-black);
}
.btn-outline-dark:hover { background: var(--near-black); color: var(--soft-white); }

.btn-outline-light {
  background: transparent;
  color: var(--soft-white);
  border-color: var(--soft-white);
}
.btn-outline-light:hover { background: var(--soft-white); color: var(--near-black); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-light);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-logo img {
  height: 34px;
  width: auto;
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.1rem;
  position: relative;
  color: var(--text-on-light);
}
.main-nav a[aria-current="page"] {
  color: var(--dark-lime);
}
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.main-nav a:hover { color: var(--dark-lime); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--near-black);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--near-black);
  position: relative;
}
.nav-toggle .bar::before, .nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--near-black);
}
.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }

.mobile-nav {
  display: none;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { padding: var(--space-2) var(--space-3) var(--space-3); display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a[aria-current="page"] { color: var(--dark-lime); }
.mobile-nav .btn { margin-top: var(--space-2); width: 100%; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

@media (max-width: 899px) {
  .site-header .container { min-height: 60px; }
  .brand-logo img { height: 26px; }
  .header-actions .btn {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }
}

/* Hero */
.hero {
  padding: var(--space-6) 0 var(--space-5);
}
.hero-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero h1 { color: var(--soft-white); }
.hero-lede {
  font-size: 1.15rem;
  color: var(--text-on-dark-muted);
  max-width: 34rem;
}
.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .card-grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  height: 100%;
  transition: border-color var(--transition-base), transform var(--transition-base);
}
.card:hover { border-color: var(--lime); transform: translateY(-2px); }
.card .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--near-black);
  color: var(--lime);
  margin-bottom: var(--space-2);
  font-weight: 800;
}

/* Project cards */
.project-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-dark-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  height: 100%;
}
.project-card-cover {
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--near-black);
}
.project-card-body {
  padding: var(--space-3);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(175, 209, 50, 0.15);
  color: var(--lime);
  border: 1px solid rgba(175, 209, 50, 0.4);
}
.tag--status {
  background: rgba(234, 234, 234, 0.1);
  color: var(--text-on-dark);
  border-color: var(--border-dark);
}

/* Filter controls (Projects overview) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-4);
}
.filter-chip {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.filter-chip[aria-pressed="true"] {
  background: var(--lime);
  color: var(--text-on-lime);
  border-color: var(--lime);
}

/* Process steps */
.process-steps {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 780px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  position: relative;
  padding-top: var(--space-2);
  border-top: 3px solid var(--lime);
}
.process-step .step-number {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--dark-lime);
  letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
  padding: var(--space-5) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-4);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-grid h2, .footer-grid h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-2);
}
.footer-grid ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { font-weight: 600; }
.footer-grid a:hover { color: var(--lime); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-2);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
}
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}
.footer-bottom ul { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* Forms */
.form-field { margin-bottom: var(--space-2); }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--text-on-light);
}
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 1px;
  border-color: var(--lime);
}
.errorlist {
  color: #b3261e;
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
  padding: 0;
}
.errorlist li { list-style: disc; margin-left: 1rem; }

/* Breadcrumb / page banner */
.page-banner {
  padding: var(--space-4) 0 var(--space-3);
}
.breadcrumb {
  display: flex;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}
.breadcrumb a { text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; }
.breadcrumb li { display: inline-flex; }

/* Accordion (FAQ) */
.accordion-item {
  border-bottom: 1px solid var(--border-light);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-2) 0;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}
.accordion-panel {
  padding: 0 0 var(--space-2);
  color: var(--text-on-light-muted);
}
.accordion-item[data-open="false"] .accordion-panel { display: none; }
.accordion-trigger .chevron { transition: transform var(--transition-fast); }
.accordion-item[data-open="true"] .chevron { transform: rotate(180deg); }

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
.team-card {
  text-align: left;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.team-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-2);
}
.team-card .role { color: var(--text-on-light-muted); font-weight: 600; }
.team-card .socials { display: flex; gap: 0.6rem; margin-top: var(--space-1); }
.team-card .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 700;
}
.team-card .socials a:hover { border-color: var(--lime); background: var(--lime); color: var(--text-on-lime); }

/* Contact info cards */
.contact-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.contact-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }

.layout-split {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .layout-split { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Utility badges */
.badge-internal {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--near-black);
  color: var(--lime);
}

.note-box {
  border-left: 4px solid var(--lime);
  background: var(--surface-light-alt);
  padding: var(--space-2) var(--space-3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
}
.surface-dark .note-box, .surface-dark-alt .note-box {
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/*
  Services page additions (Task 1B refinement).
  Additive only - nothing above this point was edited, so pages that don't
  use these classes (including the approved homepage) render identically.
*/
.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card--roomy {
  padding: var(--space-4);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.service-card-head h2 {
  margin-bottom: 0;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-lime);
  margin-bottom: 0.35rem;
}

/* A lime-tinted chip readable on light surfaces: dark text, never lime-on-white. */
.tag--accent-light {
  background: rgba(175, 209, 50, 0.16);
  color: var(--charcoal);
  border: 1px solid rgba(175, 209, 50, 0.55);
}
.tag--accent-light:hover {
  background: rgba(175, 209, 50, 0.3);
}
a.tag--accent-light {
  text-decoration: none;
  cursor: pointer;
}

.quick-links {
  justify-content: center;
}

/*
  Projects section additions (Task 1B refinement).
  Additive only - nothing above this point was edited, so pages that don't
  use these classes (including the approved homepage and Services page)
  render identically.
*/
.filter-chip--on-light {
  border-color: var(--border-light);
  color: var(--text-on-light);
}
.filter-chip--on-light[aria-pressed="true"] {
  background: var(--lime);
  color: var(--text-on-lime);
  border-color: var(--lime);
}

.project-card-title {
  font-size: 1.2rem;
}

.detail-field {
  margin-bottom: var(--space-3);
}
.detail-field:last-child {
  margin-bottom: 0;
}

.no-results-message {
  color: var(--text-on-dark-muted);
  text-align: center;
  padding: var(--space-3) 0;
}

/*
  About/Team additions (Task 1B refinement).
  Additive only - nothing above this point was edited, so pages that don't
  use these classes (including the approved homepage, Services and
  Projects pages) render identically.
*/

/* Professional fallback for a missing team photo: initials on a lime
   circle with dark text, matching the "dark text on lime" brand rule
   rather than leaving a broken image or an empty box. */
.avatar-fallback {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--text-on-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

/* Compact founder listing for the Team page - deliberately smaller and
   plainer than the About page's full founder cards. */
.people-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 32rem;
}
.people-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-light);
}
.people-row img,
.people-row .avatar-fallback {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 1rem;
}
.people-row .person-name {
  font-weight: 700;
}
.people-row .person-title {
  color: var(--text-on-light-muted);
  font-size: 0.9rem;
}
.people-row .socials {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}
.people-row .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 700;
}
.people-row .socials a:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--text-on-lime);
}

/*
  Training/Registration form additions (Task 1B refinement).
  Additive only - nothing above this point was edited, so pages that don't
  use these classes (including the approved homepage, Services, Projects,
  About and Team pages) render identically.
*/
.form-grid {
  display: grid;
  gap: 0 var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.required-note {
  font-size: 0.85rem;
  color: var(--text-on-light-muted);
  margin-bottom: var(--space-3);
}

.form-field.has-error label {
  color: #b3261e;
}
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: #b3261e;
}
