/* ==========================================================================
   ESCVSEC — Design system
   Fusion of two references:
   - Eindhoven Design District: editorial brutalism, massive tracked display
     type, pill buttons, white/newsprint-gray alternation, single red accent.
   - Planhat: cinematic monochrome, hairline borders, tight negative tracking,
     warm neutral undertones, uppercase eyebrow labels with chevrons.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --ink: #000000;
  --paper: #ffffff;
  --newsprint: #e8e8e8;
  --card-warm: #f5f5f3;
  --mockup-warm: #f0eeea;
  --graphite: #575551;
  --stone: #958d7e;
  --pewter: #bfbfbf;
  --signal-red: #c81e1e;
  --hero-bg: #0a0a09;
  --hero-line: rgba(255, 255, 255, 0.14);

  /* Fonts */
  --font-display: 'Inter Tight', 'HelveticaNow', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Type scale */
  --text-eyebrow: 11px;
  --text-caption: 13px;
  --text-body-sm: 15px;
  --text-body: 17px;
  --text-body-lg: 19px;
  --text-subheading: 24px;
  --text-heading-sm: 32px;
  --text-heading: 44px;
  --text-heading-lg: 60px;
  --text-display: clamp(56px, 10vw, 140px);

  /* Spacing */
  --sp-4: 4px; --sp-8: 8px; --sp-12: 12px; --sp-16: 16px; --sp-20: 20px;
  --sp-24: 24px; --sp-32: 32px; --sp-40: 40px; --sp-48: 48px; --sp-64: 64px;
  --sp-80: 80px; --sp-96: 96px; --sp-120: 120px;

  /* Radius */
  --radius-pill: 500px;
  --radius-card: 4px;

  --page-max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 92px; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--ink);
  z-index: 200;
  transition: width 0.12s linear;
}

/* ---------- Motion: scroll reveal (respects reduced-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal,
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1),
      transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
  }
  .reveal.is-visible,
  .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * { transition-delay: calc(var(--i, 0) * 55ms); }

  .hero-animate > * {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
  }
  .hero-animate > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-animate > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-animate > *:nth-child(3) { animation-delay: 0.25s; }
  .hero-animate > *:nth-child(4) { animation-delay: 0.35s; }
  .hero-animate > *:nth-child(5) { animation-delay: 0.45s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--sp-32);
}

section { position: relative; }

/* ---------- Eyebrow label (Planhat uppercase tracking + Eindhoven red) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-red);
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--signal-red);
}
.eyebrow.on-dark { color: #ffffff; }
.eyebrow.on-dark::before { background: #ffffff; }
.eyebrow.muted { color: var(--graphite); }
.eyebrow.muted::before { background: var(--graphite); }

/* ---------- Headline scale ---------- */
.h-display {
  font-size: var(--text-display);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.h-1 {
  font-size: var(--text-heading-lg);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.h-2 {
  font-size: var(--text-heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.h-3 {
  font-size: var(--text-heading-sm);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.h-4 {
  font-size: var(--text-subheading);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.lede {
  font-size: var(--text-body-lg);
  line-height: 1.5;
  color: var(--graphite);
  max-width: 640px;
}

/* ---------- Buttons: pill shape (Eindhoven) + tracked uppercase label (Planhat) --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 12px; height: 12px; flex: none; }
.btn { transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-filled { background: var(--ink); color: var(--paper); }
.btn-filled:hover { background: var(--paper); color: var(--ink); }

.btn-light { border-color: #ffffff; color: #ffffff; }
.btn-light:hover { background: #ffffff; color: var(--ink); }

.btn-filled-light { background: #ffffff; color: var(--ink); border-color: #ffffff; }
.btn-filled-light:hover { background: transparent; color: #ffffff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink);
  transition: box-shadow 0.25s ease;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.25s ease;
}
.nav--scrolled .wrap { height: 60px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.nav-logo span { display: block; color: var(--graphite); font-weight: 400; font-size: 12px; transition: opacity 0.25s ease, margin 0.25s ease; }
.nav--scrolled .nav-logo span { opacity: 0; margin-top: -14px; }
.nav-links {
  display: flex;
  gap: var(--sp-32);
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--signal-red); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--ink); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: var(--sp-16); }
.nav-menu-btn {
  display: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: none;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

/* ---------- Hero: cinematic dark (Planhat) + blueprint grid + rotated word (Eindhoven) --------- */
.hero {
  background: var(--hero-bg);
  color: #ffffff;
  padding: var(--sp-96) 0 var(--sp-80);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 20%, #000 40%, transparent 90%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-40);
  align-items: start;
}
.hero-credential {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--sp-24);
  max-width: 480px;
  line-height: 1.5;
}
.hero-title {
  margin-top: var(--sp-20);
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 900px;
}
.hero-title em { font-style: normal; color: var(--stone); }
.hero-sub {
  margin-top: var(--sp-24);
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.55;
}
.hero-actions {
  margin-top: var(--sp-40);
  display: flex;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
.hero-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 58px);
  letter-spacing: -0.02em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.16);
  justify-self: end;
  white-space: nowrap;
  user-select: none;
}

/* ---------- Stat band ---------- */
.stats {
  background: var(--newsprint);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat {
  padding: var(--sp-32) var(--sp-24);
  border-left: 1px solid var(--pewter);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: var(--sp-8);
  font-size: 11px;
  color: var(--graphite);
  letter-spacing: 0.01em;
}

/* ---------- Section scaffolding ---------- */
.section { padding: var(--sp-96) 0; }
.section.on-newsprint { background: var(--newsprint); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-64);
  margin-bottom: var(--sp-64);
  align-items: end;
}
.section-head .h-2 { margin-top: var(--sp-16); }
.section-head .lede { margin-top: 0; }

/* ---------- About / Organization ---------- */
.about-body p { margin-bottom: var(--sp-20); color: var(--ink); }
.about-body p:last-child { margin-bottom: 0; }
.about-body { max-width: 720px; font-size: var(--text-body); line-height: 1.65; }
.about-meta {
  margin-top: var(--sp-40);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.about-meta > div { padding: var(--sp-20) var(--sp-24) var(--sp-20) 0; border-right: 1px solid var(--pewter); }
.about-meta > div:last-child { border-right: none; }
.about-meta .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--graphite); }
.about-meta .value { margin-top: var(--sp-8); font-family: var(--font-display); font-size: 19px; font-weight: 500; }

/* ---------- Qualification / Activity lists ---------- */
.q-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.q-card {
  background: var(--paper);
  padding: var(--sp-24);
  display: flex;
  gap: var(--sp-16);
  transition: background 0.2s ease;
}
.q-card:hover { background: var(--card-warm); }
.q-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.q-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--stone);
  letter-spacing: -0.02em;
  flex: none;
  min-width: 28px;
}
.q-text { font-size: var(--text-body-sm); line-height: 1.55; }

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--sp-64);
}
.activity-item {
  padding: var(--sp-20) 0;
  border-top: 1px solid var(--pewter);
  display: flex;
  gap: var(--sp-16);
  font-size: var(--text-body-sm);
  line-height: 1.55;
}
.activity-item .dot {
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal-red);
  margin-top: 8px;
}

/* ---------- Services (numbered pledges) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-20);
}
.service-card {
  background: var(--card-warm);
  border-radius: var(--radius-card);
  padding: var(--sp-32) var(--sp-24);
  border: 1px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.service-num {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--stone);
}
.service-text {
  margin-top: var(--sp-16);
  font-size: var(--text-body-sm);
  line-height: 1.6;
  color: var(--ink);
}
.pull-quote {
  margin-top: var(--sp-64);
  border-top: 1px solid var(--ink);
  padding-top: var(--sp-40);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 880px;
}

/* ---------- Fieldwork: magnetic-hover photo gallery ---------- */
.sectors { position: relative; overflow: visible; }
.sectors-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px 4px 20px;
  scrollbar-width: none;
}
.sectors-row::-webkit-scrollbar { display: none; }
.sector-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
  position: relative;
  z-index: 2;
}
.sector-item.is-open { z-index: 4; }
.sector-bar {
  appearance: none;
  font: inherit;
  margin: 0;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0;
  background-color: var(--newsprint);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  will-change: width, height;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.sector-bar.is-sizing { transition: width 0.35s cubic-bezier(0.16, 0.8, 0.24, 1), height 0.35s cubic-bezier(0.16, 0.8, 0.24, 1), filter 0.35s ease, opacity 0.35s ease; }
.sector-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sector-bar.is-open::after { opacity: 1; }
.sector-open-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  pointer-events: none;
}
.sector-bar.is-open .sector-open-label { opacity: 1; transform: translateY(0); }
.sector-label {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
  white-space: normal;
}
@media (prefers-reduced-motion: reduce) {
  .sector-bar, .sector-bar.is-sizing { transition: none; }
}

/* ---------- Portfolio (client grid) ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin-bottom: var(--sp-40);
}
.filter-pill {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.filter-pill:hover:not(.active) { background: var(--card-warm); }
.filter-pill:active { transform: scale(0.96); }
.filter-pill.active { background: var(--ink); color: var(--paper); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  transition: opacity 0.18s ease;
}
.portfolio-grid.is-transitioning { opacity: 0.3; }
.portfolio-cell {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: var(--sp-20) var(--sp-20);
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  transition: background 0.2s ease;
}
.portfolio-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.portfolio-cell:hover { background: var(--card-warm); }
.portfolio-cell:hover::before { transform: scaleY(1); transform-origin: top; }
.portfolio-cell:hover .portfolio-name { transform: translateX(4px); }
.portfolio-cell.is-hidden { display: none; }
.portfolio-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: transform 0.2s ease;
}
.portfolio-tag {
  margin-top: var(--sp-12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
}
.portfolio-count {
  margin-top: var(--sp-24);
  font-size: 13px;
  color: var(--graphite);
}

/* ---------- Membership ---------- */
.membership-list {
  border-top: 1px solid var(--ink);
  max-width: 880px;
}
.membership-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--sp-16);
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--pewter);
  font-size: var(--text-body-sm);
  line-height: 1.55;
  transition: padding-left 0.25s ease;
}
.membership-item:hover { padding-left: var(--sp-12); }
.membership-item .glyph { color: var(--signal-red); font-size: 18px; font-family: var(--font-display); }

/* ---------- Contact / footer (dark, bookends hero) ---------- */
.contact {
  background: var(--hero-bg);
  color: #ffffff;
  padding: var(--sp-96) 0 var(--sp-48);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-64);
}
.contact-title { max-width: 620px; }
.contact-list { border-top: 1px solid var(--hero-line); }
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--sp-16);
  padding: var(--sp-20) 0;
  border-bottom: 1px solid var(--hero-line);
  font-size: 15px;
}
.contact-row .label { color: rgba(255, 255, 255, 0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; padding-top: 3px; }
.contact-row a { transition: color 0.2s ease; }
.contact-row a:hover { color: var(--stone); }
.footer-bottom {
  margin-top: var(--sp-64);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--hero-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.site-credit {
  margin-top: var(--sp-24);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--hero-line);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
}
.site-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.site-credit a:hover { color: #ffffff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wrap { padding: 0 var(--sp-20); }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--sp-8) var(--sp-20) var(--sp-20);
  }
  .nav-links a { width: 100%; padding: var(--sp-16) 0; border-bottom: 1px solid var(--newsprint); }
  .nav-links.nav-links--open { display: flex; }
  .nav-menu-btn { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-vertical { display: none; }
  .stats .wrap { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-left: 1px solid var(--pewter); }
  .stat:nth-child(2n+1) { border-left: none; }
  .section-head { grid-template-columns: 1fr; gap: var(--sp-24); }
  .about-meta { grid-template-columns: 1fr; }
  .about-meta > div { border-right: none; border-bottom: 1px solid var(--pewter); padding: var(--sp-16) 0; }
  .q-grid { grid-template-columns: 1fr; }
  .activity-list { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 110px 1fr; }
}

@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .membership-item { grid-template-columns: 24px 1fr; }
}
