:root {
  --text: #1f2937;
  --muted: #6b7280;

  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

body {
  background: linear-gradient(180deg, #fff7ed, #fdf2f8);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2.5rem 1.5rem;
}

/* HEADER */
.header {
  margin-bottom: 3rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

/* CONTENT */
.content h1 {
  font-size: 2.4rem;
  /* background: linear-gradient(90deg, var(--purple), var(--blue)); */
  /* -webkit-text-fill-color: transparent; */
}

.subtitle {
  margin-top: 0.6rem;
  color: var(--muted);
  max-width: 520px;
}

/* CONTACT LIST */
.contact-list {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  background: white;
  padding: 1.4rem;
  border-radius: 16px;
  border: 2px solid #f1f5f9;
  min-width: 240px;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item a {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* NOTE */
.note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* FOOTER */
.footer {
  margin-top: 5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
