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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accent-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f08243, #ee6c21);
}

main {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 560px;
  width: 100%;
}

.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

p.sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f08243, #ee6c21);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #ee6c21;
}

.contact-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 17px;
  height: 17px;
  fill: #ee6c21;
}

footer {
  position: fixed;
  bottom: 1.25rem;
  font-size: 0.75rem;
  color: #bbb;
}
