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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f2f2f2;
}

/* ── Header ── */
.site-header {
  background: #212121;
  padding: 16px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.site-header-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.site-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-title {
  color: #f5a623;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* ── Layout ── */
.main-wrapper {
  min-height: 100vh;
  padding: 0 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 8px;
  }

  .main-wrapper {
    padding: 0 6px;
  }

  .site-logo img {
    width: 40px;
    height: 40px;
  }

  .site-title {
    font-size: 1.25rem;
  }
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background: #14162a;
  color: #c9c9d4;
}

.site-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand strong {
  color: #fff;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.footer-brand span {
  font-size: 14px;
  line-height: 1.5;
  color: #a9a9b8;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.footer-social a {
  color: #ffb400;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 13px;
  color: #7d7d8c;
  border-top: 1px solid #2a2c44;
  padding-top: 14px;
}
