.header {
  text-align: center;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.logo {
  width: 40px;
  height: auto;
}

.header-description {
  margin: 8px auto 0;
  max-width: 600px;
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.5;
}

.grid {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 54, 51, 0.15);
}

.tile-title {
  color: rgb(153, 54, 51);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.tile-subtitle {
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
}

.footer {
  max-width: 640px;
  margin: 32px auto 24px;
  padding: 16px 18px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-description {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tile {
    height: 130px;
  }
}
