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

body {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 20%, #1e1245 0%, #0d0a1e 70%);
  font-family: 'Georgia', serif;
  color: #e0d8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 2rem;
  width: 100%;
  max-width: 800px;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.site-title {
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  line-height: 1.2;
}

.hero-quote {
  max-width: 520px;
  border-left: 2px solid rgba(201, 168, 76, 0.4);
  padding-left: 1.5rem;
  text-align: left;
}

.hero-quote p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c8bedd;
  font-style: italic;
}

.hero-quote cite,
.footer-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #9b8eb0;
  font-style: normal;
}

/* Projects */
.projects {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 200px;
  padding: 2rem 1.5rem;
  background: linear-gradient(150deg, #1b1042 0%, #2a186a 50%, #1b1042 100%);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.project-card:hover {
  border-color: #c9a84c;
  transform: translateY(-3px);
}

.project-icon {
  font-size: 1.8rem;
  color: rgba(201, 168, 76, 0.6);
}

.project-title {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
}

.project-desc {
  font-size: 0.75rem;
  color: #9b8eb0;
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-quote {
  max-width: 400px;
}

.footer-quote p {
  font-size: 0.95rem;
  font-style: italic;
  color: #c8bedd;
  line-height: 1.6;
}

.copyright {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #6b5f80;
}

/* Mobile */
@media (max-width: 480px) {
  .site-title {
    font-size: 2.4rem;
  }

  .projects {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 100%;
    max-width: 280px;
  }
}
