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

:root {
  --bg: #FEFAF6;
  --green: #284F3F;
  --text: #4b4b4b;
  --placeholder: #ddd6cf;
  --placeholder-border: #c9c1b8;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  padding: 2vw 3vw 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
}

.site-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
    text-decoration: none;
}

.projects-link {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  color: var(--green);
  text-decoration: none;
  font-weight: 400;
}

.projects-link:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  background: var(--green);
  color: #ffffff;

  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-bottom: -2vw;
}

.site-footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) 3vw;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.9rem;
}

.site-footer-email,
.site-footer-linkedin {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-footer-email {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.site-footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1;
}

.site-footer-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.site-footer-credit {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-email {
    text-transform: uppercase;
    }

.site-footer-email:hover,
.site-footer-linkedin:hover {
  opacity: 0.82;
}

@media (max-width: 900px) {
  .site-footer-inner {
    padding: 1.25rem 0;
  }

  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .site-footer-email {
    font-size: 1.2rem;
  }

  .site-footer-linkedin {
    font-size: 1rem;
  }

  .site-footer-credit {
    font-size: 0.76rem;
  }
}