:root {
  --pink: #C8478A;
  --border: #EDD5E5;
  --ink: #2A1A22;
  --ink-muted: #7A5568;
  --radius: 10px;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: var(--ink);
  margin: 0;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
}

.hero {
  text-align: center;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.card img {
  width: 100%;
  display: block;
}

.card-content {
  padding: 10px;
}

button {
  background: var(--pink);
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
}

.hidden {
  display: none;
}

.modal-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}