:root {
  --color-bg: #231f20;
  --color-text: #f2f2f2;
  --color-tagline: #6cb24d;
  --color-row-alt: #2c2728;
  --color-row: #231f20;
  --color-border: #3a3536;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.site-tagline {
  color: var(--color-tagline);
  font-size: 1.05rem;
  margin: 0;
  white-space: nowrap;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}

.logo-img {
  max-width: 100%;
  width: 645px;
  height: auto;
  display: block;
}

.contact-table {
  width: 100%;
  max-width: 645px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.05rem;
}

.contact-table th,
.contact-table td {
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 400;
}

.contact-table th {
  font-family: var(--font-body);
  font-weight: 700;
  width: 42%;
}

.contact-table tr:nth-child(odd) th,
.contact-table tr:nth-child(odd) td {
  background-color: var(--color-row-alt);
}

.contact-table tr:nth-child(even) th,
.contact-table tr:nth-child(even) td {
  background-color: var(--color-row);
}

.contact-table a {
  color: var(--color-tagline);
  text-decoration: underline;
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-tagline {
    white-space: normal;
  }

  .contact-table th,
  .contact-table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
  }
}
