*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:     #875A7B;
  --color-teal:        #00A09D;
  --color-gray:        #8F8F8F;
  --color-light:       #E9ECEF;
  --color-comet:       #5C5B80;
  --color-horizon:     #5B899E;
  --color-mandy:       #E46F78;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  text-align: center;
}

.logo-wrap {
  width: min(320px, 80vw);
}

.logo-svg {
  width: 100%;
  height: auto;
}

.address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.address .company {
  font-weight: 500;
  color: var(--color-primary);
}

/* ── Project buttons (mobile-first) ─────────────────────── */
.projects {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  max-width: 360px;
}

.btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background-color: var(--color-comet);
}

.btn:active {
  transform: scale(0.98);
}

@media (min-width: 480px) {
  .projects {
    flex-direction: row;
    max-width: none;
    width: auto;
  }

  .btn {
    width: auto;
    min-width: 200px;
  }
}