/* Basic reset for the demo */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               sans-serif;
  color: #fff;
}

/* Header wrapper */
.site-header {
  display: flex;
  justify-content: center;
  background: #111111;       /* light, flat background */
  padding: 1.5rem 0;
}

/* 80% width band, centered */
.header-inner {
  width: 80%;
  max-width: 1100px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Logo section */
.header-logo img {
  display: block;
  max-width: 130px;          /* adjust as needed */
  height: auto;
}

/* Text section */
.header-text {
  flex: 1;
}

/* Lines above and below text */
.header-line {
  border: none;
  border-top: 2px solid #ccc;
  margin: 0 0 0.75rem 0;
}

.header-text .header-line:last-of-type {
  margin: 0.75rem 0 0 0;
}

/* Typography */
.header-title {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.header-subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.header-comment {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: #aaa;
}

/* Responsive: stack logo above text on smaller screens */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-logo img {
    max-width: 110px;
  }

  .header-text {
    width: 100%;
  }
}
