/* Evergreen Oak static landing page */

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #444;
  --accent: #1f9900;
  --max: 900px;
  --pad: clamp(18px, 5vw, 50px);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.1px;
  line-height: 1.4;
}

a{ color: inherit; text-decoration: underline; text-underline-offset: .1em; }
a:hover{ text-decoration: none; }

.skip-link{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus{
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #eee;
  color: #111;
  border-radius: 8px;
  z-index: 1000;
}

.wrap{
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header{
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo{
  display: block;
  width: 42px;
  height: 40px;
}

.site-title{
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-size: clamp(24px, 3vw, 42px);
}
.site-title a{
  color: var(--accent);
  text-decoration: none;
}
.site-title a:hover{ text-decoration: underline; }

.content{
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1px;
  padding-bottom: 1px;
}

.page-title{
  margin: 0 0 50px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 1.125;
}

p{ margin: 0 0 18px; }

ul{
  margin: 0 0 18px;
  padding-left: 22px;
}
li{ margin-top: 0.5rem; }

.site-footer{
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mail{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.mail:hover{ text-decoration: underline; }

.mail-icon{
  width: 20px;
  height: 20px;
  display: inline-block;
}
.mail-icon svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-sep{
  opacity: 0.7;
}

@media (max-width: 520px){
  body{ font-size: 16px; }
  .content{ padding-top: 36px; }
  .page-title{ margin-bottom: 36px; }
}
