.mk-main {
  background: var(--creme);
}

.mk-hero {
  padding: 150px 0 78px;
  background: linear-gradient(145deg, #3a6648 0%, #5a9470 50%, #7aab8c 100%);
  color: var(--blanc);
}

.mk-hero h1 {
  color: var(--blanc);
  margin-bottom: 20px;
}

.mk-hero em {
  color: rgba(255, 255, 255, 0.88);
}

.mk-sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 740px;
}

.mk-pill-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mk-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 12px;
}

.mk-section {
  padding: 72px 0;
}

.mk-alt {
  background: #f1ede5;
}

.mk-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mk-card {
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.mk-card h3 {
  color: var(--vert-fonce);
  margin-bottom: 12px;
}

.mk-card h4 {
  color: var(--terracotta);
  margin-bottom: 6px;
}

.mk-mt {
  margin-top: 18px;
}

.mk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mk-list li {
  position: relative;
  padding-left: 16px;
}

.mk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vert);
}

blockquote {
  border-left: 4px solid var(--vert);
  background: #f8f5ef;
  padding: 14px 16px;
  border-radius: 0 12px 12px 0;
  color: var(--texte);
  margin: 12px 0 20px;
}

.mk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.mk-table th,
.mk-table td {
  text-align: left;
  border-bottom: 1px solid #ece7de;
  padding: 10px 0;
}

.mk-table th {
  width: 34%;
  color: var(--vert-fonce);
}

.palette {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.swatch {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #faf7f2;
  border: 1px solid #ece7de;
  border-radius: 12px;
  padding: 10px;
}

.swatch::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--sw);
  flex-shrink: 0;
}

.swatch span {
  font-size: 0.84rem;
}

.type-sample {
  margin-top: 12px;
  background: #f8f5ef;
  border-radius: 12px;
  padding: 14px;
}

.sample-title {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--vert-fonce);
}

.sample-body {
  font-size: 0.92rem;
}

.mk-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pillars {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pillar-card {
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.pillar-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.tag {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  border: 1px solid #eecfbe;
  background: var(--terracotta-clair);
  border-radius: 999px;
  padding: 5px 8px;
}

.template-block {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f8f5ef;
  border-left: 4px solid var(--vert-clair);
}

.highlight {
  background: linear-gradient(180deg, #fff 0%, #f5e8df 100%);
  border-left: 5px solid var(--terracotta);
}

@media (max-width: 960px) {
  .mk-grid-2,
  .pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mk-hero {
    padding-top: 120px;
  }

  .palette {
    grid-template-columns: 1fr;
  }
}
