:root {
  --ink: #111111;
  --muted: #6f665c;
  --line: #ded3c4;
  --white: #ffffff;
  --brand-bg: #f7f1e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--brand-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-footer {
  width: 100%;
  min-height: 96px;
  margin-top: clamp(42px, 6vw, 88px);
  padding: 24px clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--brand-bg);
  border-top: 1px solid var(--line);
}

.copyright {
  justify-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}

.social-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.social-links a:hover {
  border-color: var(--ink);
}

.social-links svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 36px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 26px 16px;
  }

  .copyright,
  .social-links {
    justify-self: center;
  }
}
