.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
}

.profile-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-panel img {
  width: 156px;
  height: 156px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
}

.profile-name {
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 800;
}

.summary p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--text);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.filter.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

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

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-card.featured {
  background: var(--panel-strong);
  border-color: #b9d8d5;
}

.project-card.is-hidden {
  display: none;
}

.project-card p,
.project-card li,
.stack-list p {
  color: var(--text);
}

.project-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding-left: 18px;
}

.project-card a,
.link-row {
  margin-top: auto;
  font-weight: 800;
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.case-study-list {
  display: grid;
  gap: 18px;
}

.case-study {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-study--featured {
  background: var(--panel-strong);
  border-color: #b9d8d5;
}

.case-study > p {
  max-width: 900px;
  color: var(--text);
}

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

.case-study-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-study h4 {
  margin-bottom: 8px;
}

.case-study p {
  color: var(--text);
}

.case-study a {
  width: fit-content;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--accent-dark);
  background: #e8f5f3;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.muted {
  color: var(--muted);
  font-weight: 700;
}

.link-row {
  display: flex;
  gap: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.stack-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
