@font-face{font-family:"Merriweather";src:url("/fonts/merriweather-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Merriweather";src:url("/fonts/merriweather-400-italic.woff2") format("woff2");font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:"Merriweather";src:url("/fonts/merriweather-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("/fonts/inter-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("/fonts/inter-500.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"Inter";src:url("/fonts/inter-600.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}

:root{
  --bg:#fff;
  --ink:#111;
  --muted:#5e5e5e;
  --line:#eee;
  --serif:"Merriweather",Georgia,serif;
  --sans:"Inter","Helvetica Neue",Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-size:18px;
  line-height:1.55;
  letter-spacing:-.02em;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
p,h1,h2,h3{overflow-wrap:break-word}
.skip{position:absolute;left:1rem;top:-4rem;background:#000;color:#fff;padding:.6rem .8rem;border-radius:8px}
.skip:focus{top:1rem}
:focus-visible{outline:2px solid #111;outline-offset:3px}

.bar{
  position:sticky;top:0;z-index:10;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.85rem 1.4rem;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.mark{
  font-family:var(--serif);
  font-size:1.05rem;
  text-decoration:none;
  font-weight:400;
}
nav{display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap;justify-content:flex-end}
nav a{font-size:.92rem;font-weight:500;text-decoration:none;color:#5e5e5e}
nav a:hover{color:#111}
nav a.here{color:#111;text-decoration:underline;text-underline-offset:4px}
.socials{display:flex;align-items:center;gap:.7rem}
.socials a{display:flex;opacity:.75}
.socials a:hover{opacity:1}
.socials svg{width:16px;height:16px;fill:#111}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:#111;color:#fff;text-decoration:none;
  font-size:.82rem;font-weight:500;
  padding:.45rem .85rem;border-radius:8px;border:0;
  min-height:34px;
}
.btn:hover{background:#333;color:#fff}

.hero{
  max-width:720px;
  margin:0 auto;
  padding:5.5rem 1.4rem 2.5rem;
  text-align:center;
}
h1{
  margin:0;
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(2.4rem,5vw,3.4rem);
  line-height:1.2;
  letter-spacing:-.03em;
}
.intro{
  margin:1.1rem auto 0;
  max-width:540px;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.5;
}
.intro a{text-underline-offset:3px}
.intro a:hover{color:#111}

.page{
  max-width:640px;
  margin:0 auto;
  padding:1.5rem 1.4rem 5rem;
}
.page h2{
  margin:2.6rem 0 .7rem;
  font-family:var(--serif);
  font-weight:400;
  font-size:1.45rem;
  letter-spacing:-.02em;
}
.page p{margin:0 0 1rem;color:#333}
.page p a{text-underline-offset:3px}

.jobs{margin:1.1rem 0 0;padding:0;list-style:none}
.jobs li{padding:.85rem 0;border-top:1px solid var(--line)}
.jobs li:last-child{border-bottom:1px solid var(--line)}
.jobs h3{margin:0;font-size:1rem;font-weight:600}
.jobs .meta{margin:.15rem 0 .35rem;color:var(--muted);font-size:.88rem}
.jobs p{margin:0;color:#333;font-size:.98rem}
.jobs .child{
  margin-top:.85rem;
  padding:.75rem .9rem;
  background:#f7f7f7;
  border-radius:10px;
}
.jobs .child h3{font-size:.95rem}

.card{
  display:flex;gap:1.1rem;align-items:flex-start;
  margin:2.2rem 0 0;
  padding:1.15rem 1.2rem;
  border:1px solid var(--line);
  border-radius:12px;
  text-decoration:none;
}
.card img{width:56px;height:56px;border-radius:50%;background:#fff;flex-shrink:0}
.card h3{margin:0 0 .25rem;font-family:var(--serif);font-size:1.2rem;font-weight:400}
.card p{margin:0;color:var(--muted);font-size:.95rem}
.card:hover{border-color:#ccc}

.foot{
  max-width:640px;
  margin:0 auto;
  padding:2rem 1.4rem 3.5rem;
  display:flex;flex-direction:column;gap:.85rem;align-items:center;justify-content:center;
}
.form-wrap{max-width:420px;margin:0 auto;padding:2rem 1.4rem 5rem}
.form-wrap h1{text-align:center;margin-bottom:2.4rem}
.field{margin:0 0 1rem}
.field label{display:block;margin:0 0 .35rem;font-size:.88rem;font-weight:500}
.req{color:var(--muted);font-weight:400}
.field input,.field textarea{
  width:100%;
  border:0;
  border-radius:10px;
  background:#f3f3f3;
  padding:.85rem 1rem;
  font:inherit;
  color:var(--ink);
}
.field textarea{min-height:120px;resize:vertical}
.field input::placeholder,.field textarea::placeholder{color:#9a9a9a}
.form-wrap .btn{
  width:100%;
  min-height:44px;
  margin-top:.4rem;
  font-size:.95rem;
  border-radius:10px;
  cursor:pointer;
}
.form-wrap .btn:disabled{opacity:.6;cursor:wait}
.form-status{margin:1rem 0 0;text-align:center;color:var(--muted);font-size:.95rem}
.hp{position:absolute;left:-9999px;opacity:0;height:0;width:0;overflow:hidden}

.foot a{opacity:.7}
.foot a:hover{opacity:1}
.foot svg{width:18px;height:18px;fill:#111}

.not-found{min-height:70vh;display:grid;place-content:center;text-align:center;padding:4rem 1.4rem}
.not-found h1{font-size:2.4rem}
.not-found p{margin-top:1rem;color:var(--muted)}

@media(max-width:720px){
  .bar{padding:.75rem 1rem}
  nav a:not(.btn){display:none}
  .hero{padding-top:3.4rem}
  h1{font-size:2.15rem}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
