.workshop-demo {
  --bg: #f7f8fa;
  --surface-soft: #eef1f5;
  --ink: #18212b;
  --muted: #596474;
  --primary: #334155;
  --primary-dark: #0f172a;
  --accent: #f97316;
  --line: #d7dde7;
  --shadow: 0 22px 60px rgb(15 23 42 / 13%);
}

.workshop-demo .site-header {
  background: rgb(247 248 250 / 90%);
  border-bottom-color: rgb(215 221 231 / 76%);
}

.workshop-demo .button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111827;
}

.workshop-demo .button.primary:hover {
  background: #ea580c;
  border-color: #ea580c;
}

.workshop-demo .button.secondary {
  color: var(--primary-dark);
}

.workshop-demo .hero-photo-card::after {
  background: linear-gradient(180deg, transparent 42%, rgb(15 23 42 / 70%));
}

.workshop-demo .section-soft {
  background: var(--surface-soft);
}

.urgent-strip {
  max-width: 1180px;
  margin: -24px auto 0;
  padding: 0 clamp(20px, 4vw, 56px) 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.urgent-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  background: var(--primary-dark);
  color: white;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 16px 32px rgb(15 23 42 / 16%);
}

.urgent-strip a:nth-child(2) {
  background: #128c7e;
}

.urgent-strip a:nth-child(3) {
  background: var(--accent);
  color: #111827;
}

.workshop-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.workshop-highlights span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 10px 12px;
  color: var(--primary-dark);
  font-weight: 900;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.zone-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 12px 36px rgb(15 23 42 / 8%);
}

.zone-card h3 {
  margin: 0 0 8px;
}

.zone-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .urgent-strip,
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .urgent-strip {
    margin-top: 0;
  }
}
