.home {
  padding-top: var(--space-6);
}

.home__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 12vw, 4.5rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
  line-height: 0.95;
}

.home__lead {
  font-size: var(--text-md);
  color: var(--text);
  max-inline-size: 40ch;
  margin-bottom: var(--space-16);
}

.home__subtitle {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.matieres {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.matieres__item {
  display: block;
}

.matieres__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5, 1.25rem);
  min-height: 64px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-out-expo),
              background var(--dur-fast) var(--ease-out-expo),
              transform var(--dur-fast) var(--ease-out-expo);
}
@media (hover: hover) and (pointer: fine) {
  .matieres__link:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
  }
}
.matieres__link:active {
  transform: scale(0.99);
}

.matieres__item--disabled .matieres__link {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
  background: transparent;
  border-style: dashed;
}

.matieres__titre {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--text-strong);
  flex: 1;
}

.matieres__item--disabled .matieres__titre {
  color: var(--text-muted);
}

.matieres__status {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.matieres__item--disabled .matieres__status {
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--text-muted);
}
