/* ============================================================================
   HIP-HOP PEDAGOGY PROJECT — DESIGN SYSTEM
   ============================================================================
   Palette and type are pulled from the existing project logo and icon set
   (see /assets/images). This is a restrained, editorial system: one bold
   display face for headlines (nodding to flyer/poster culture), one highly
   readable body face, generous spacing, and a warm neutral background so
   the coral accent stays high-impact instead of overwhelming the page.

   COLOR CONTRAST NOTE: --coral is the vibrant brand red used for large
   display text, icons, borders, and badges. It does NOT meet WCAG AA for
   small text on light backgrounds, so body copy and links use --coral-deep
   instead, and solid buttons use --coral-dark with white text. Both were
   checked against WCAG AA (4.5:1 for normal text, 3:1 for large text/UI).
   ============================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  /* Brand palette, sampled from the existing HHPP logo and icon artwork */
  --cream: #eae7dc;
  --cream-light: #f6f4ee;
  --white: #ffffff;
  --ink: #41130e;
  --ink-soft: #6b3a30;
  --coral: #e85144;
  --coral-deep: #ae3c33;
  --coral-dark: #c43f34;
  --coral-tint: #fbe4e0;
  --grey: #8a8986;
  --charcoal: #262626;

  /* Semantic roles */
  --color-bg: var(--cream);
  --color-surface: var(--white);
  --color-text: var(--ink);
  --color-text-muted: var(--ink-soft);
  --color-accent: var(--coral);
  --color-accent-text: var(--coral-deep);
  --color-button-bg: var(--coral-dark);
  --color-border: rgba(65, 19, 14, 0.14);

  /* Type */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* Layout */
  --container-max: 72rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(65, 19, 14, 0.06), 0 8px 24px rgba(65, 19, 14, 0.08);
  --focus-ring: 0 0 0 3px rgba(65, 19, 14, 0.95), 0 0 0 6px rgba(232, 81, 68, 0.55);
}

/* ---------------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.75rem); }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3rem); }
h3 { font-size: clamp(1.35rem, 1.4vw + 1rem, 1.75rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.06em; }

p {
  margin: 0 0 var(--space-2);
  max-width: 62ch;
}

a {
  color: var(--color-accent-text);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

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

ul, ol {
  padding-left: 1.25em;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin: 0 0 var(--space-1);
  display: inline-block;
}

.section-intro {
  max-width: 42rem;
  margin-bottom: var(--space-4);
}

.section-intro p:last-child { margin-bottom: 0; }

/* Respect reduced-motion preferences everywhere */
@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;
  }
}

/* Visible, high-contrast focus states for every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

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

section {
  padding-block: var(--space-6);
  scroll-margin-top: 5.5rem;
}

.section-alt {
  background: var(--cream-light);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--coral); }
.section-dark a { color: var(--cream); }
.section-dark a:hover { color: var(--coral); }

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

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  line-height: 1.1;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-button-bg);
  color: var(--white);
}
.btn-primary:hover { background: var(--coral-deep); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.section-dark .btn-outline { color: var(--cream); }
.section-dark .btn-outline:hover { background: var(--cream); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--color-accent-text);
  padding: 0.85em 0.25em;
}
.btn-ghost:hover { color: var(--coral-dark); }

.btn-block { width: 100%; }

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-small {
  padding: 0.55em 1.1em;
  font-size: 0.875rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* ---------------------------------------------------------------------------
   Header & navigation
   --------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234, 231, 220, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: var(--space-2);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 2.5rem;
  width: auto;
}

.site-logo .site-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translate(4px, -5px); }

.primary-nav {
  display: flex;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.primary-nav a:hover { color: var(--coral-dark); }

.primary-nav .btn { font-size: 0.9rem; padding: 0.6em 1.2em; }

@media (max-width: 61.99rem) {
  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--color-border);
    display: none;
  }

  .primary-nav.is-open { display: block; }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-2) var(--space-3) var(--space-4);
  }

  .primary-nav li { width: 100%; }

  .primary-nav a,
  .primary-nav .btn {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
  }

  .primary-nav .btn { margin-top: var(--space-1); width: fit-content; }
}

/* ---------------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------------- */
.hero {
  padding-block: var(--space-7) var(--space-6);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: block;
}

.hero-copy {
  max-width: none;
}

.hero-eq {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: var(--space-3);
  height: 28px;
}

.hero-eq span {
  display: block;
  width: 6px;
  background: var(--coral);
  border-radius: 2px;
}

.hero h1 {
  max-width: 62rem;
  font-size: clamp(3rem, 6vw + 1rem, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: var(--space-3);
}

.hero h1 .accent { color: var(--coral-deep); }

.hero-lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

/* ---------------------------------------------------------------------------
   Pedagogy quote
   --------------------------------------------------------------------------- */
.pedagogy-quote {
  max-width: 50rem;
  margin: 0 auto;
  padding-left: var(--space-4);
  border-left: 4px solid var(--coral-deep);
}

.pedagogy-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.35rem, 1.6vw + 1rem, 2.1rem);
  line-height: 1.32;
  color: var(--ink);
  max-width: none;
  margin: 0;
}

/* ---------------------------------------------------------------------------
   About
   --------------------------------------------------------------------------- */
.about-copy {
  max-width: 46rem;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
   Founder
   --------------------------------------------------------------------------- */
.founder-wrap {
  display: flex;
  align-items: stretch;
  max-width: 54rem;
  margin: 0 auto;
  background: var(--cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.founder-photo {
  flex: 0 0 16rem;
  margin: 0;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.founder-content {
  flex: 1;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 0;
}

.founder-title {
  color: var(--coral-deep);
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0.2em 0 var(--space-2);
}

.founder-bio {
  font-size: 0.92rem;
  text-align: left;
  margin: 0;
}

@media (max-width: 34rem) {
  .founder-wrap {
    flex-direction: column;
  }

  .founder-photo {
    flex: 0 0 auto;
    width: 100%;
    height: 14rem;
  }

  .founder-photo img {
    min-height: 0;
  }

  .founder-content {
    padding: var(--space-3);
  }
}

/* ---------------------------------------------------------------------------
   Communities
   --------------------------------------------------------------------------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.community-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.community-card h3 {
  text-transform: none;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.community-card p { max-width: none; }

.community-card ul {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 var(--space-3);
  display: grid;
  gap: 0.55em;
}

.community-card ul li {
  padding-left: 1.6em;
  position: relative;
  font-size: 0.97rem;
}

.community-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55em;
  height: 0.55em;
  background: var(--coral);
  border-radius: 2px;
}

.community-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 55rem) {
  .community-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Upcoming Gatherings
   --------------------------------------------------------------------------- */
.gatherings-tabs {
  display: inline-flex;
  gap: 0.25rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.3rem;
  margin-bottom: var(--space-4);
}

.gatherings-tabs button {
  border: none;
  background: transparent;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.gatherings-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--cream);
}

.filter-pill {
  display: inline-flex;
  border: none;
  background: transparent;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gatherings-tabs input:focus-visible + label .filter-pill {
  box-shadow: var(--focus-ring);
}

.gatherings-tabs input:checked + label .filter-pill {
  background: var(--ink);
  color: var(--cream);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: var(--space-3);
}

.event-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  box-shadow: var(--shadow-card);
}

.event-card .event-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--coral-tint);
  color: var(--coral-deep);
  border-radius: 999px;
  padding: 0.35em 0.8em;
}

.event-card .event-date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0;
}

.event-card .event-time {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}

.event-card .btn { margin-top: auto; }

.event-card.is-closed { opacity: 0.75; }

.gatherings-note {
  margin-top: var(--space-3);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------------------
   What Participants Can Expect
   --------------------------------------------------------------------------- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4) var(--space-5);
}

.expect-col h3 {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.expect-col h3 .dot {
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.expect-col ul {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  display: grid;
  gap: 0.6em;
}

.expect-col ul li {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  font-size: 0.96rem;
}

@media (max-width: 55rem) {
  .expect-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Forms (Register + Mailing list)
   --------------------------------------------------------------------------- */
.form-shell {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  max-width: 44rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

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

.form-field {
  margin-bottom: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.form-field label,
.form-fieldset legend {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.form-field .hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.7em 0.85em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--cream-light);
  color: var(--ink);
  width: 100%;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-2);
}

.form-fieldset legend { margin-bottom: 0.5em; padding: 0; }

.radio-group,
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: var(--cream-light);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0.55em 1.1em;
  font-size: 0.92rem;
  cursor: pointer;
}

.radio-option input { margin: 0; }

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  background: var(--coral-tint);
  border: 1px solid rgba(174, 60, 51, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin: var(--space-3) 0;
}

.consent-field input[type="checkbox"] {
  margin-top: 0.3em;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.consent-field label {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--cream-light);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  margin-top: var(--space-2);
}

.form-error {
  color: var(--coral-deep);
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--coral-deep);
}

.form-field.has-error .form-error,
.form-fieldset.has-error .form-error {
  display: block;
}

.form-fieldset.has-error {
  outline: 2px solid var(--coral-deep);
  outline-offset: 0.4rem;
  border-radius: var(--radius-sm);
}

/* #ml-optin-error is shown/hidden directly via the `hidden` attribute
   (rather than a wrapping .has-error parent, since it sits next to a
   single required checkbox and not a labeled field). Override the base
   .form-error{display:none} once the hidden attribute is removed. */
#ml-optin-error:not([hidden]) {
  display: block;
}

.form-status {
  font-size: 0.9rem;
  padding: 0.8em 1em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
  display: none;
}

.form-status.is-visible { display: block; }
.form-status.is-error { background: var(--coral-tint); color: var(--coral-deep); }

.confirmation-panel {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  max-width: 44rem;
}

.confirmation-panel .check-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-2);
}

.confirmation-meta {
  background: var(--cream-light);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin: var(--space-2) 0;
}

.confirmation-meta dt {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.8em;
}

.confirmation-meta dt:first-child { margin-top: 0; }
.confirmation-meta dd { margin: 0.1em 0 0; }

@media (max-width: 40rem) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Contact & footer
   --------------------------------------------------------------------------- */
.site-footer {
  padding-block: var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.footer-logo {
  height: 2.75rem;
  width: auto;
  margin-bottom: var(--space-2);
  filter: brightness(0) invert(1);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6em;
}

.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(234, 231, 220, 0.2);
  font-size: 0.85rem;
  color: rgba(234, 231, 220, 0.75);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
}

@media (max-width: 45rem) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* ---------------------------------------------------------------------------
   Misc utility
   --------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.max-prose { max-width: 46rem; }
[hidden] { display: none !important; }

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-2) 0;
}

.badge-list li {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
